commit c16a9d449b8e1086cee5b609b21916d2c7875447 Author: Christian Date: Sat Sep 12 17:13:16 2020 +0200 initial commit diff --git a/.ddev/config.yaml b/.ddev/config.yaml new file mode 100644 index 0000000..0ce1d65 --- /dev/null +++ b/.ddev/config.yaml @@ -0,0 +1,164 @@ +name: wordpress-gruener-salon +type: wordpress +docroot: web +php_version: "7.3" +webserver_type: nginx-fpm +router_http_port: "80" +router_https_port: "443" +xdebug_enabled: false +additional_hostnames: [] +additional_fqdns: [] +provider: default +use_dns_when_possible: true + + +# This config.yaml was created with ddev version v1.14.2 +# webimage: drud/ddev-webserver:v1.14.2 +# dbimage: drud/ddev-dbserver-mariadb-10.2:v1.14.1 +# dbaimage: phpmyadmin/phpmyadmin:5 +# However we do not recommend explicitly wiring these images into the +# config.yaml as they may break future versions of ddev. +# You can update this config.yaml using 'ddev config'. + +# Key features of ddev's config.yaml: + +# name: # Name of the project, automatically provides +# http://projectname.ddev.site and https://projectname.ddev.site + +# type: # drupal6/7/8, backdrop, typo3, wordpress, php + +# docroot: # Relative path to the directory containing index.php. + +# php_version: "7.3" # PHP version to use, "5.6", "7.0", "7.1", "7.2", "7.3", "7.4" + +# You can explicitly specify the webimage, dbimage, dbaimage lines but this +# is not recommended, as the images are often closely tied to ddev's' behavior, +# so this can break upgrades. + +# webimage: # nginx/php docker image. +# dbimage: # mariadb docker image. +# dbaimage: + +# mariadb_version and mysql_version +# ddev can use many versions of mariadb and mysql +# However these directives are mutually exclusive +# mariadb_version: 10.2 +# mysql_version: 8.0 + +# router_http_port: # Port to be used for http (defaults to port 80) +# router_https_port: # Port for https (defaults to 443) + +# xdebug_enabled: false # Set to true to enable xdebug and "ddev start" or "ddev restart" +# Note that for most people the commands +# "ddev exec enable_xdebug" and "ddev exec disable_xdebug" work better, +# as leaving xdebug enabled all the time is a big performance hit. + +# webserver_type: nginx-fpm # Can be set to apache-fpm or apache-cgi as well + +# timezone: Europe/Berlin +# This is the timezone used in the containers and by PHP; +# it can be set to any valid timezone, +# see https://en.wikipedia.org/wiki/List_of_tz_database_time_zones +# For example Europe/Dublin or MST7MDT + +# additional_hostnames: +# - somename +# - someothername +# would provide http and https URLs for "somename.ddev.site" +# and "someothername.ddev.site". + +# additional_fqdns: +# - example.com +# - sub1.example.com +# would provide http and https URLs for "example.com" and "sub1.example.com" +# Please take care with this because it can cause great confusion. + +# upload_dir: custom/upload/dir +# would set the destination path for ddev import-files to custom/upload/dir. + +# working_dir: +# web: /var/www/html +# db: /home +# would set the default working directory for the web and db services. +# These values specify the destination directory for ddev ssh and the +# directory in which commands passed into ddev exec are run. + +# omit_containers: ["db", dba", "ddev-ssh-agent"] +# Currently only these containers are supported. Some containers can also be +# omitted globally in the ~/.ddev/global_config.yaml. Note that if you omit +# the "db" container, several standard features of ddev that access the +# database container will be unusable. + +# nfs_mount_enabled: false +# Great performance improvement but requires host configuration first. +# See https://ddev.readthedocs.io/en/stable/users/performance/#using-nfs-to-mount-the-project-into-the-container + +# host_https_port: "59002" +# The host port binding for https can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_webserver_port: "59001" +# The host port binding for the ddev-webserver can be explicitly specified. It is +# dynamic unless otherwise specified. +# This is not used by most people, most people use the *router* instead +# of the localhost port. + +# host_db_port: "59002" +# The host port binding for the ddev-dbserver can be explicitly specified. It is dynamic +# unless explicitly specified. + +# phpmyadmin_port: "8036" +# phpmyadmin_https_port: "8037" +# The PHPMyAdmin ports can be changed from the default 8036 and 8037 + +# mailhog_port: "8025" +# mailhog_https_port: "8026" +# The MailHog ports can be changed from the default 8025 and 8026 + +# webimage_extra_packages: [php-yaml, php7.3-ldap] +# Extra Debian packages that are needed in the webimage can be added here + +# dbimage_extra_packages: [telnet,netcat] +# Extra Debian packages that are needed in the dbimage can be added here + +# use_dns_when_possible: true +# If the host has internet access and the domain configured can +# successfully be looked up, DNS will be used for hostname resolution +# instead of editing /etc/hosts +# Defaults to true + +# project_tld: ddev.site +# The top-level domain used for project URLs +# The default "ddev.site" allows DNS lookup via a wildcard +# If you prefer you can change this to "ddev.local" to preserve +# pre-v1.9 behavior. + +# ngrok_args: --subdomain mysite --auth username:pass +# Provide extra flags to the "ngrok http" command, see +# https://ngrok.com/docs#http or run "ngrok http -h" + +# disable_settings_management: false +# If true, ddev will not create CMS-specific settings files like +# Drupal's settings.php/settings.ddev.php or TYPO3's AdditionalSettings.php +# In this case the user must provide all such settings. + +# no_project_mount: false +# (Experimental) If true, ddev will not mount the project into the web container; +# the user is responsible for mounting it manually or via a script. +# This is to enable experimentation with alternate file mounting strategies. +# For advanced users only! + +# provider: default # Currently either "default" or "pantheon" +# +# Many ddev commands can be extended to run tasks before or after the +# ddev command is executed, for example "post-start", "post-import-db", +# "pre-composer", "post-composer" +# See https://ddev.readthedocs.io/en/stable/users/extending-commands/ for more +# information on the commands that can be extended and the tasks you can define +# for them. Example: +#hooks: +# Un-comment to emit the WP CLI version after ddev start. +# post-start: +# - exec: wp cli version diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..5dcb5e5 --- /dev/null +++ b/.env.example @@ -0,0 +1,26 @@ +DB_NAME='database_name' +DB_USER='database_user' +DB_PASSWORD='database_password' + +# Optionally, you can use a data source name (DSN) +# When using a DSN, you can remove the DB_NAME, DB_USER, DB_PASSWORD, and DB_HOST variables +# DATABASE_URL='mysql://database_user:database_password@database_host:database_port/database_name' + +# Optional variables +# DB_HOST='localhost' +# DB_PREFIX='wp_' + +WP_ENV='development' +WP_HOME='http://example.com' +WP_SITEURL="${WP_HOME}/wp" +WP_DEBUG_LOG=/path/to/debug.log + +# Generate your keys here: https://roots.io/salts.html +AUTH_KEY='generateme' +SECURE_AUTH_KEY='generateme' +LOGGED_IN_KEY='generateme' +NONCE_KEY='generateme' +AUTH_SALT='generateme' +SECURE_AUTH_SALT='generateme' +LOGGED_IN_SALT='generateme' +NONCE_SALT='generateme' diff --git a/.github/workflows/issues.yml b/.github/workflows/issues.yml new file mode 100644 index 0000000..f2b2474 --- /dev/null +++ b/.github/workflows/issues.yml @@ -0,0 +1,14 @@ +name: Issue closer +on: [issues] +jobs: + autoclose: + runs-on: ubuntu-latest + steps: + - name: Autoclose issues that did not follow issue template + uses: roots/issue-closer@v1.1 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + issue-close-message: "Hi @${issue.user.login}, +It looks like the issue template is missing from this issue. Please take a look at the [Contribution Guidelines](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md), which will tell you **exactly** what your ticket has to contain in order to be processable. +Please **do not** use the issue tracker for personal support requests. Use [Roots Discourse](https://discourse.roots.io/) to ask the Roots community for help, or [hire someone from the community](https://discourse.roots.io/c/jobs)." + issue-pattern: ".*guidelines for Contributing.*" diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2ab6940 --- /dev/null +++ b/.gitignore @@ -0,0 +1,25 @@ +# Application +web/app/plugins/* +!web/app/plugins/.gitkeep +web/app/mu-plugins/*/ +web/app/upgrade +web/app/uploads/* +!web/app/uploads/.gitkeep + +# WordPress +web/wp +web/.htaccess + +# Logs +*.log + +# Dotenv +.env +.env.* +!.env.example + +# Composer +/vendor + +# WP-CLI +wp-cli.local.yml diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..397637a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,403 @@ +### 1.14.2: 2020-09-04 + +* chore(deps): Bump roots/wordpress from 5.5 to 5.5.1 ([#545](https://github.com/roots/bedrock/pull/545)) + +### 1.14.1: 2020-08-11 + +* chore(deps): Bump roots/wordpress from 5.4.1 to 5.5 ([#542](https://github.com/roots/bedrock/pull/542)) +* chore(deps-dev): Bump squizlabs/php_codesniffer from 3.5.5 to 3.5.6 ([#541](https://github.com/roots/bedrock/pull/541)) +* chore(deps): Bump vlucas/phpdotenv from 4.1.5 to 4.1.8 ([#536](https://github.com/roots/bedrock/pull/536)) +* chore(deps): Bump oscarotero/env from 2.0.0 to 2.1.0 ([#531](https://github.com/roots/bedrock/pull/531)) +* CircleCI: Use offical CircleCI PHP orb and next-gen docker images ([#520](https://github.com/roots/bedrock/pull/520)) + +### 1.14.0: 2020-08-11 + +* Upgrade `oscarotero/env` to `^2.0` ([#530](https://github.com/roots/bedrock/pull/530)) +* chore(deps): Bump vlucas/phpdotenv from 4.1.4 to 4.1.5 ([#518](https://github.com/roots/bedrock/pull/518)) +* Use Bedrock Autoloader package ([#519](https://github.com/roots/bedrock/pull/519)) + +### 1.13.5: 2020-05-11 + +* chore(deps): Bump roots/wordpress from 5.4 to 5.4.1 ([#517](https://github.com/roots/bedrock/pull/517)) + +### 1.13.4: 2020-04-24 + +* fix(mu-plugins): Bump bedrock-autoloader version ([#512](https://github.com/roots/bedrock/pull/512)) +* fix(mu-plugins): A more sane fix for #510 ([#512](https://github.com/roots/bedrock/pull/512)) + +### 1.13.3: 2020-04-24 + +* enhance(ci): Add CircleCI workflow for PHP 7.4 ([#510](https://github.com/roots/bedrock/pull/511)) +* fix(mu-plugins): Fix invalid array access notice on 7.4 ([#510](https://github.com/roots/bedrock/pull/510)) +* enhance(composer): Add `only` option to wpackagist.org repository ([#508](https://github.com/roots/bedrock/pull/508)) + +### 1.13.2: 2020-04-01 + +* chore(deps): Bump WordPress to 5.4 ([#502](https://github.com/roots/bedrock/pull/502)) +* chore(deps): Bump vlucas/phpdotenv ([#501](https://github.com/roots/bedrock/pull/502)) +* enhance(config): Add `WP_DEBUG_LOG` ([#499](https://github.com/roots/bedrock/pull/499)) + +### 1.13.1: 2020-02-19 + +* fix(env): Makes .env.example compatible with breaking changes from vlucas/phpdotenv 4.x ([#493](https://github.com/roots/bedrock/pull/493)) + +### 1.13.0: 2020-02-17 + +* Update to WordPress 5.3.2 ([#489](https://github.com/roots/bedrock/pull/489)) +* chore(deps): Bump vlucas/phpdotenv from 4.0.1 to 4.1.0 ([#487](https://github.com/roots/bedrock/pull/487)) +* chore(deps): Bump vlucas/phpdotenv from 3.6.0 to 4.0.1 ([#485](https://github.com/roots/bedrock/pull/485)) +* chore(deps): Bump composer/installers from 1.7.0 to 1.8.0 ([#492](https://github.com/roots/bedrock/pull/492)) +* chore(deps-dev): Bump squizlabs/php_codesniffer from 3.4.2 to 3.5.4 ([#490](https://github.com/roots/bedrock/pull/490)) +* Clean up docblocks & commenting ([#459](https://github.com/roots/bedrock/pull/459)) + +### 1.12.8: 2019-09-05 + +* Update to WordPress 5.2.3 ([#466](https://github.com/roots/bedrock/pull/466)) +* Remove `phpcs.xml` from `.gitattributes` ([#464](https://github.com/roots/bedrock/pull/464)) +* `ini_set()` fixes ([#463](https://github.com/roots/bedrock/pull/463)) +* Editorconfig updates ([#457](https://github.com/roots/bedrock/pull/457)) +* Bump `composer/installers` ([#462](https://github.com/roots/bedrock/pull/462)) +* Better default composer options ([#456](https://github.com/roots/bedrock/pull/456)) +* Ignore `.log` files ([#440](https://github.com/roots/bedrock/pull/440)) +* Change to CircleCI ([82945d8](https://github.com/roots/bedrock/commit/82945d803d10cb072b7e786e0a81094ccb2d067b), [#460](https://github.com/roots/bedrock/pull/460)) + +### 1.12.7: 2019-06-19 + +* Update to WordPress 5.2.2 ([#444](https://github.com/roots/bedrock/pull/444)) +* Bump `oscarotero/env` ([#443](https://github.com/roots/bedrock/pull/443)) +* Bump `vlucas/phpdotenv` ([#442](https://github.com/roots/bedrock/pull/442)) +* Bump `squizlabs/php_codesniffer` ([#441](https://github.com/roots/bedrock/pull/441)) +* Remove unnecessary static variables ([#437](https://github.com/roots/bedrock/pull/437)) + +### 1.12.6: 2019-05-21 + +* Update to WordPress 5.2.1 ([#436](https://github.com/roots/bedrock/pull/436)) + +### 1.12.5: 2019-05-14 + +* Disable WordPress' built-in fatal error handler on development ([#432](https://github.com/roots/bedrock/pull/434)) + +### 1.12.4: 2019-05-07 + +* Update to WordPress 5.2 ([#432](https://github.com/roots/bedrock/pull/432)) +* Configure WP-CLI `wp server` webroot ([#427](https://github.com/roots/bedrock/pull/427)) +* Fix issue with `bedrock_autoloader` option ([#386](https://github.com/roots/bedrock/pull/386)) + +### 1.12.3: 2019-03-13 + +* Update to WordPress 5.1.1 ([#426](https://github.com/roots/bedrock/pull/426)) + +### 1.12.2: 2019-02-21 + +* Update to WordPress 5.1 ([#420](https://github.com/roots/bedrock/pull/420)) + +### 1.12.1: 2019-02-14 + +* Update `vlucas/phpdotenv` ([#417](https://github.com/roots/bedrock/pull/417)) +* Make DSN implementation more uniform ([#415](https://github.com/roots/bedrock/pull/415)) + +### 1.12.0: 2019-02-07 + +* Support database DSN ([#414](https://github.com/roots/bedrock/pull/414)) +* Detect HTTPS if WordPress is behind a reverse proxy ([#413](https://github.com/roots/bedrock/pull/413)) +* Update `vlucas/phpdotenv` to `^3` ([#412](https://github.com/roots/bedrock/pull/412)) + +### 1.11.1: 2019-01-09 + +* Update to WordPress 5.0.3 ([#408](https://github.com/roots/bedrock/pull/408)) + +### 1.11.0: 2018-12-19 + +* Bump PHP requirement to >= 7.1 ([#405](https://github.com/roots/bedrock/pull/405)) + +### 1.10.2: 2018-12-19 + +* Update to WordPress 5.0.2 ([#406](https://github.com/roots/bedrock/pull/406)) + +### 1.10.1: 2018-12-12 + +* Update to WordPress 5.0.1 ([#403](https://github.com/roots/bedrock/pull/403)) + +### 1.10.0: 2018-12-09 + +* Update to WordPress 5.0, switch from `johnpbloch/wordpress` to `roots/wordpress` package ([#395](https://github.com/roots/bedrock/pull/395)) + +### 1.9.0: 2018-09-17 + +* Fix error display in development environments ([c457082](https://github.com/roots/bedrock/commit/c457082cf4b153400d3e34f4f68a30eea4cc7c38)) +* --prefer-dist on roave/security-advisories ([#381](https://github.com/roots/bedrock/pull/381)) +* New Bedrock Configuration Model ([#380](https://github.com/roots/bedrock/pull/380)) +* Remove vendor/.gitkeep ([#379](https://github.com/roots/bedrock/pull/379)) +* Composer 1.7.0 lockfile ([#378](https://github.com/roots/bedrock/pull/378)) +* Adds roave/security-advisories to composer dev deps ([#376](https://github.com/roots/bedrock/pull/376)) + +### 1.8.12: 2018-08-03 + +* Update to WordPress 4.9.8 + +### 1.8.11: 2018-07-09 + +* Update to WordPress 4.9.7 + +### 1.8.10: 2018-05-18 + +* Update to WordPress 4.9.6 + +### 1.8.9: 2018-04-04 + +* Update to WordPress 4.9.5 + +### 1.8.8: 2018-02-06 + +* Update to WordPress 4.9.4 + +### 1.8.7: 2018-02-05 + +* Update to WordPress 4.9.3 + +### 1.8.6: 2018-01-16 + +* Update to WordPress 4.9.2 + +### 1.8.5: 2017-11-29 + +* Update to WordPress 4.9.1 + +### 1.8.4: 2017-11-16 + +* Update to WordPress 4.9.0 + +### 1.8.3: 2017-10-31 + +* Update to WordPress 4.8.3 + +### 1.8.2: 2017-09-19 + +* Update to WordPress 4.8.2 + +### 1.8.1: 2017-08-02 + +* Update to WordPress 4.8.1 + +### 1.8.0: 2017-06-08 + +* Update to WordPress 4.8.0 + +### 1.7.9: 2017-05-16 + +* Update to WordPress 4.7.5 + +### 1.7.8: 2017-05-03 + +* Update `johnpbloch/wordpress` to 4.7.4.1 (see https://github.com/johnpbloch/wordpress/issues/32) + +### 1.7.7: 2017-04-20 + +* Update to WordPress 4.7.4 + +### 1.7.6: 2017-03-06 + +* Update to WordPress 4.7.3 + +### 1.7.5: 2017-01-26 + +* Update to WordPress 4.7.2 + +### 1.7.4: 2017-01-11 + +* Update to WordPress 4.7.1 +* Add Optional variables to `.env.example` +* Remove unnecessary gitignore rules ([#286](https://github.com/roots/bedrock/pull/286)) + +### 1.7.3: 2016-12-06 + +* Update to WordPress 4.7 +* Default `WP_ENV` to `production` instead of `development` ([#277](https://github.com/roots/bedrock/pull/277)) + +### 1.7.2: 2016-09-07 + +* Update to WordPress 4.6.1 + +### 1.7.1: 2016-08-16 + +* Update to WordPress 4.6 + +### 1.7.0: 2016-07-10 + +* Bump PHP requirement to >= 5.6 (5.5 is no longer supported) + +### 1.6.4: 2016-06-21 + +* Update to WordPress 4.5.3 + +### 1.6.3: 2016-05-06 + +* Update to WordPress 4.5.2 + +### 1.6.2: 2016-04-26 + +* Update to WordPress 4.5.1 + +### 1.6.1: 2016-04-12 + +* Update to WordPress 4.5 +* Update coding standards (PSR-2) ([#244](https://github.com/roots/bedrock/pull/244)) + +### 1.6.0: 2016-03-03 + +* Add wp-password-bcrypt for more secure passwords ([#243](https://github.com/roots/bedrock/pull/243)) + +### 1.5.4: 2016-02-29 + +* Use HTTPS for wpackagist.org + +### 1.5.3: 2016-02-03 + +* Update to WordPress 4.4.2 + +### 1.5.2: 2016-02-01 + +* Bump `composer/installers` dependency to 1.0.23 to fix deprecation notice + +### 1.5.1: 2016-01-27 + +* Use [oscarotero/env](https://github.com/oscarotero/env) instead of `getenv` ([#229](https://github.com/roots/bedrock/pull/233)) + +### 1.5.0: 2016-01-17 + +* Fix `DISABLE_WP_CRON` setting via ENV variable ([#229](https://github.com/roots/bedrock/pull/229)) +* Set default `DB_CHARSET` to `utf8mb4` + +### 1.4.7: 2016-01-07 + +* Update to WordPress 4.4.1 + +### 1.4.6: 2015-12-09 + +* Update to WordPress 4.4 + +### 1.4.5: 2015-09-16 + +* Update to WordPress 4.3.1 +* Bump minimum required PHP version to 5.5 ([#201](https://github.com/roots/bedrock/pull/201)) + +### 1.4.4: 2015-08-18 + +* Update to WordPress 4.3 + +### 1.4.3: 2015-08-04 + +* Update to WordPress 4.2.4 + +### 1.4.2: 2015-07-24 + +* Update to WordPress 4.2.3 + +### 1.4.1: 2015-06-30 + +* Dotenv 2.0.1 update + +### 1.4.0: 2015-06-07 + +* Removed .env generation script + +### 1.3.7: 2015-05-07 + +* Update to WordPress 4.2.2 + +### 1.3.6: 2015-04-27 + +* Update to WordPress 4.2.1 + +### 1.3.5: 2015-04-23 + +* Update to WordPress 4.2 +* Update to WordPress 4.1.2 +* Don't register theme directory if `WP_DEFAULT_THEME` is defined +* Move Capistrano configs to https://github.com/roots/bedrock-capistrano + +### 1.3.4: 2015-02-18 + +* WordPress 4.1.1 fix + +### 1.3.3: 2015-02-18 + +* Update to WordPress 4.1.1 +* mu-plugins autoloader Multisite fix +* Coding standards update + TravisCI integration + +### 1.3.2: 2014-12-18 + +* Update to WordPress 4.1 +* Remove WPLANG constant + +### 1.3.1: 2014-11-28 + +* Add Capistrano task to fix/update WP theme paths after deploys + +### 1.3.0: 2014-11-20 + +* Update to WordPress 4.0.1 +* Use johnpbloch/wordpress package instead of custom repository +* Update default deploy.rb +* Require PHP >= 5.4 in composer.json +* Better PSR-1 adherence +* Update phpdotenv dependency to 1.0.9 +* Fix Composer installer path plugin order +* Add bedrock-autoloader mu-plugin + +### 1.2.7: 2014-09-04 + +* Update to WordPress 4.0 + +### 1.2.6: 2014-08-06 + +* Update to WordPress 3.9.2 +* Minor deploy fix +* Doc updates + +### 1.2.5: 2014-07-16 + +* Update to WordPress 3.9.1 +* Doc updates +* Add `DB_PREFIX` constant +* Update Gem versions +* Disallow indexing in non-production environments + +### 1.2.4: 2014-04-17 + +* Fixes issue with 3.9 update (`composer.lock` wasn't updated) + +### 1.2.3: 2014-04-16 + +* Update to WordPress 3.9 + +### 1.2.2: 2014-04-14 + +* Update to WordPress 3.8.3 +* Only run `Dotenv::load` if `.env` file exists + +### 1.2.1: 2014-04-08 + +* Update to WordPress 3.8.2 + +### 1.2.0: 2014-04-07 + +* WP package now has `wordpress` vendor name: `wordpress/wordpress` +* Remove wp-cli and add `wp-cli.yml` config + +### 1.1.1: 2014-03-11 + +* Update phpdotenv to 1.0.6 +* Update wp-cli to v0.14.1 +* Update README to refence new WordPress Packagist namespaces +* Fix uploads path in `linked_dirs` for Capistrano deploys + +### 1.1.0: 2014-03-01 + +* Update to Capistrano 3.1.0: `deploy:restart` is no longer run by default +* Better webroot structure: introduces the `/web` directory as the document/web root for web server vhosts + +### 1.0.0: 2013-12-18 + +* Initial release diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..ee859d0 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,19 @@ +Copyright (c) Roots + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies +of the Software, and to permit persons to whom the Software is furnished to do +so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..1c224a6 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +# Wordpress Development Grüner Salon e.V. diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..9cdec0d --- /dev/null +++ b/composer.json @@ -0,0 +1,67 @@ +{ + "name": "chrosey/gruener-salon-wordpress", + "type": "project", + "license": "MIT", + "description": "WordPress boilerplate with modern development tools, easier configuration, and an improved folder structure", + "homepage": "https://roots.io/bedrock/", + "authors": [{ + "name": "Scott Walkinshaw", + "email": "scott.walkinshaw@gmail.com", + "homepage": "https://github.com/swalkinshaw" + }, + { + "name": "Ben Word", + "email": "ben@benword.com", + "homepage": "https://github.com/retlehs" + } + ], + "keywords": [ + "bedrock", "composer", "roots", "wordpress", "wp", "wp-config" + ], + "support": { + "issues": "https://github.com/roots/bedrock/issues", + "forum": "https://discourse.roots.io/category/bedrock" + }, + "repositories": [{ + "type": "composer", + "url": "https://wpackagist.org", + "only": ["wpackagist-plugin/*", "wpackagist-theme/*"] + }], + "require": { + "php": ">=7.1", + "composer/installers": "^1.8", + "vlucas/phpdotenv": "^4.1.8", + "oscarotero/env": "^2.1", + "roots/bedrock-autoloader": "^1.0", + "roots/wordpress": "5.5.1", + "roots/wp-config": "1.0.0", + "roots/wp-password-bcrypt": "1.0.0" + }, + "require-dev": { + "squizlabs/php_codesniffer": "^3.5.6", + "roave/security-advisories": "dev-master" + }, + "config": { + "optimize-autoloader": true, + "preferred-install": "dist", + "sort-packages": true + }, + "minimum-stability": "dev", + "prefer-stable": true, + "extra": { + "installer-paths": { + "web/app/mu-plugins/{$name}/": ["type:wordpress-muplugin"], + "web/app/plugins/{$name}/": ["type:wordpress-plugin"], + "web/app/themes/{$name}/": ["type:wordpress-theme"] + }, + "wordpress-install-dir": "web/wp" + }, + "scripts": { + "post-root-package-install": [ + "php -r \"copy('.env.example', '.env');\"" + ], + "test": [ + "phpcs" + ] + } +} \ No newline at end of file diff --git a/composer.lock b/composer.lock new file mode 100644 index 0000000..9e8012c --- /dev/null +++ b/composer.lock @@ -0,0 +1,1040 @@ +{ + "_readme": [ + "This file locks the dependencies of your project to a known state", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", + "This file is @generated automatically" + ], + "content-hash": "df2368e01f90a4d1443715fe9d2f4f06", + "packages": [ + { + "name": "composer/installers", + "version": "v1.9.0", + "source": { + "type": "git", + "url": "https://github.com/composer/installers.git", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/installers/zipball/b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "reference": "b93bcf0fa1fccb0b7d176b0967d969691cd74cca", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0 || ^2.0" + }, + "replace": { + "roundcube/plugin-installer": "*", + "shama/baton": "*" + }, + "require-dev": { + "composer/composer": "1.6.* || 2.0.*@dev", + "composer/semver": "1.0.* || 2.0.*@dev", + "phpunit/phpunit": "^4.8.36", + "sebastian/comparator": "^1.2.4", + "symfony/process": "^2.3" + }, + "type": "composer-plugin", + "extra": { + "class": "Composer\\Installers\\Plugin", + "branch-alias": { + "dev-master": "1.0-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Installers\\": "src/Composer/Installers" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle Robinson Young", + "email": "kyle@dontkry.com", + "homepage": "https://github.com/shama" + } + ], + "description": "A multi-framework Composer library installer", + "homepage": "https://composer.github.io/installers/", + "keywords": [ + "Craft", + "Dolibarr", + "Eliasis", + "Hurad", + "ImageCMS", + "Kanboard", + "Lan Management System", + "MODX Evo", + "MantisBT", + "Mautic", + "Maya", + "OXID", + "Plentymarkets", + "Porto", + "RadPHP", + "SMF", + "Thelia", + "Whmcs", + "WolfCMS", + "agl", + "aimeos", + "annotatecms", + "attogram", + "bitrix", + "cakephp", + "chef", + "cockpit", + "codeigniter", + "concrete5", + "croogo", + "dokuwiki", + "drupal", + "eZ Platform", + "elgg", + "expressionengine", + "fuelphp", + "grav", + "installer", + "itop", + "joomla", + "known", + "kohana", + "laravel", + "lavalite", + "lithium", + "magento", + "majima", + "mako", + "mediawiki", + "modulework", + "modx", + "moodle", + "osclass", + "phpbb", + "piwik", + "ppi", + "puppet", + "pxcms", + "reindex", + "roundcube", + "shopware", + "silverstripe", + "sydes", + "sylius", + "symfony", + "typo3", + "wordpress", + "yawik", + "zend", + "zikula" + ], + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-04-07T06:57:05+00:00" + }, + { + "name": "oscarotero/env", + "version": "v2.1.0", + "source": { + "type": "git", + "url": "https://github.com/oscarotero/env.git", + "reference": "0da22cadc6924155fa9bbea2cdda2e84ab7cbdd3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/oscarotero/env/zipball/0da22cadc6924155fa9bbea2cdda2e84ab7cbdd3", + "reference": "0da22cadc6924155fa9bbea2cdda2e84ab7cbdd3", + "shasum": "" + }, + "require": { + "ext-ctype": "*", + "php": ">=7.1" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.16", + "phpunit/phpunit": "^7.0" + }, + "type": "library", + "autoload": { + "psr-4": { + "Env\\": "src/" + }, + "files": [ + "src/env_function.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Oscar Otero", + "email": "oom@oscarotero.com", + "homepage": "http://oscarotero.com", + "role": "Developer" + } + ], + "description": "Simple library to consume environment variables", + "homepage": "https://github.com/oscarotero/env", + "keywords": [ + "env" + ], + "time": "2020-06-11T10:59:27+00:00" + }, + { + "name": "phpoption/phpoption", + "version": "1.7.5", + "source": { + "type": "git", + "url": "https://github.com/schmittjoh/php-option.git", + "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525", + "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.7-dev" + } + }, + "autoload": { + "psr-4": { + "PhpOption\\": "src/PhpOption/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "Apache-2.0" + ], + "authors": [ + { + "name": "Johannes M. Schmitt", + "email": "schmittjoh@gmail.com" + }, + { + "name": "Graham Campbell", + "email": "graham@alt-three.com" + } + ], + "description": "Option Type for PHP", + "keywords": [ + "language", + "option", + "php", + "type" + ], + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption", + "type": "tidelift" + } + ], + "time": "2020-07-20T17:29:33+00:00" + }, + { + "name": "roots/bedrock-autoloader", + "version": "1.0.3", + "source": { + "type": "git", + "url": "https://github.com/roots/bedrock-autoloader.git", + "reference": "885f2a5c425d82dfd811ef4f13ab8f5bcc89cd70" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/roots/bedrock-autoloader/zipball/885f2a5c425d82dfd811ef4f13ab8f5bcc89cd70", + "reference": "885f2a5c425d82dfd811ef4f13ab8f5bcc89cd70", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "autoload": { + "psr-4": { + "Roots\\Bedrock\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nick Fox", + "email": "nick@foxaii.com", + "homepage": "https://github.com/foxaii" + }, + { + "name": "Scott Walkinshaw", + "email": "scott.walkinshaw@gmail.com", + "homepage": "https://github.com/swalkinshaw" + }, + { + "name": "Austin Pray", + "email": "austin@austinpray.com", + "homepage": "https://github.com/austinpray" + } + ], + "description": "An autoloader that enables standard plugins to be required just like must-use plugins", + "keywords": [ + "autoloader", + "bedrock", + "mu-plugin", + "must-use", + "plugin", + "wordpress" + ], + "funding": [ + { + "url": "https://github.com/roots", + "type": "github" + }, + { + "url": "https://www.patreon.com/rootsdev", + "type": "patreon" + } + ], + "time": "2020-05-18T04:43:20+00:00" + }, + { + "name": "roots/wordpress", + "version": "5.5.1", + "source": { + "type": "git", + "url": "https://github.com/WordPress/WordPress.git", + "reference": "5.5.1" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/WordPress/WordPress/zipball/5.5.1" + }, + "require": { + "php": ">=5.3.2", + "roots/wordpress-core-installer": ">=1.0.0" + }, + "type": "wordpress-core", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "WordPress Community", + "homepage": "https://wordpress.org/about/" + } + ], + "description": "WordPress is web software you can use to create a beautiful website or blog.", + "homepage": "https://wordpress.org/", + "keywords": [ + "blog", + "cms", + "wordpress" + ], + "funding": [ + { + "url": "https://github.com/roots", + "type": "github" + }, + { + "url": "https://www.patreon.com/rootsdev", + "type": "patreon" + } + ], + "time": "2020-09-01T18:56:09+00:00" + }, + { + "name": "roots/wordpress-core-installer", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://github.com/roots/wordpress-core-installer.git", + "reference": "83744b1ba5bbdb5bb225f47e24da61a6cf6c5b80" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/roots/wordpress-core-installer/zipball/83744b1ba5bbdb5bb225f47e24da61a6cf6c5b80", + "reference": "83744b1ba5bbdb5bb225f47e24da61a6cf6c5b80", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.0" + }, + "conflict": { + "composer/installers": "<1.0.6" + }, + "replace": { + "johnpbloch/wordpress-core-installer": "*" + }, + "require-dev": { + "composer/composer": "^1.0", + "phpunit/phpunit": ">=4.8.35" + }, + "type": "composer-plugin", + "extra": { + "class": "Roots\\Composer\\WordPressCorePlugin" + }, + "autoload": { + "psr-4": { + "Roots\\Composer\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "GPL-2.0-or-later" + ], + "authors": [ + { + "name": "John P. Bloch", + "email": "me@johnpbloch.com" + }, + { + "name": "Roots", + "email": "team@roots.io" + } + ], + "description": "A custom installer to handle deploying WordPress with composer", + "keywords": [ + "wordpress" + ], + "time": "2018-12-10T00:22:15+00:00" + }, + { + "name": "roots/wp-config", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/roots/wp-config.git", + "reference": "37c38230796119fb487fa03346ab0706ce6d4962" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/roots/wp-config/zipball/37c38230796119fb487fa03346ab0706ce6d4962", + "reference": "37c38230796119fb487fa03346ab0706ce6d4962", + "shasum": "" + }, + "require": { + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5.7", + "roave/security-advisories": "dev-master", + "squizlabs/php_codesniffer": "^3.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "Roots\\WPConfig\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Austin Pray", + "email": "austin@austinpray.com" + } + ], + "description": "Collect configuration values and safely define() them", + "time": "2018-08-10T14:18:38+00:00" + }, + { + "name": "roots/wp-password-bcrypt", + "version": "1.0.0", + "source": { + "type": "git", + "url": "https://github.com/roots/wp-password-bcrypt.git", + "reference": "5cecd2e98ccc3193443cc5c5db9b3bc7abed5ffa" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/roots/wp-password-bcrypt/zipball/5cecd2e98ccc3193443cc5c5db9b3bc7abed5ffa", + "reference": "5cecd2e98ccc3193443cc5c5db9b3bc7abed5ffa", + "shasum": "" + }, + "require": { + "composer/installers": "~1.0", + "php": ">=5.5.0" + }, + "require-dev": { + "brain/monkey": "^1.3.1", + "mockery/mockery": "^0.9.4", + "phpunit/phpunit": "^4.8.23|^5.2.9", + "squizlabs/php_codesniffer": "^2.5.1" + }, + "type": "library", + "autoload": { + "files": [ + "wp-password-bcrypt.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Scott Walkinshaw", + "email": "scott.walkinshaw@gmail.com", + "homepage": "https://github.com/swalkinshaw" + }, + { + "name": "qwp6t", + "homepage": "https://github.com/qwp6t" + }, + { + "name": "Jan Pingel", + "email": "jpingel@bitpiston.com", + "homepage": "http://janpingel.com" + } + ], + "description": "WordPress plugin which replaces wp_hash_password and wp_check_password's phpass hasher with PHP 5.5's password_hash and password_verify using bcrypt.", + "homepage": "https://roots.io/plugins/wp-password-bcrypt", + "keywords": [ + "wordpress wp bcrypt password" + ], + "time": "2016-03-01T16:27:06+00:00" + }, + { + "name": "symfony/polyfill-ctype", + "version": "v1.18.1", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/1c302646f6efc070cd46856e600e5e0684d6b454", + "reference": "1c302646f6efc070cd46856e600e5e0684d6b454", + "shasum": "" + }, + "require": { + "php": ">=5.3.3" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.18-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-07-14T12:35:20+00:00" + }, + { + "name": "vlucas/phpdotenv", + "version": "v4.1.8", + "source": { + "type": "git", + "url": "https://github.com/vlucas/phpdotenv.git", + "reference": "572af79d913627a9d70374d27a6f5d689a35de32" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/572af79d913627a9d70374d27a6f5d689a35de32", + "reference": "572af79d913627a9d70374d27a6f5d689a35de32", + "shasum": "" + }, + "require": { + "php": "^5.5.9 || ^7.0 || ^8.0", + "phpoption/phpoption": "^1.7.3", + "symfony/polyfill-ctype": "^1.17" + }, + "require-dev": { + "bamarni/composer-bin-plugin": "^1.4.1", + "ext-filter": "*", + "ext-pcre": "*", + "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator.", + "ext-pcre": "Required to use most of the library." + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "4.1-dev" + } + }, + "autoload": { + "psr-4": { + "Dotenv\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "homepage": "https://gjcampbell.co.uk/" + }, + { + "name": "Vance Lucas", + "email": "vance@vancelucas.com", + "homepage": "https://vancelucas.com/" + } + ], + "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", + "keywords": [ + "dotenv", + "env", + "environment" + ], + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2020-07-14T19:22:52+00:00" + } + ], + "packages-dev": [ + { + "name": "roave/security-advisories", + "version": "dev-master", + "source": { + "type": "git", + "url": "https://github.com/Roave/SecurityAdvisories.git", + "reference": "efe42531c4f320f794e8f7db82afdd32ac8b893e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Roave/SecurityAdvisories/zipball/efe42531c4f320f794e8f7db82afdd32ac8b893e", + "reference": "efe42531c4f320f794e8f7db82afdd32ac8b893e", + "shasum": "" + }, + "conflict": { + "3f/pygmentize": "<1.2", + "adodb/adodb-php": "<5.20.12", + "alterphp/easyadmin-extension-bundle": ">=1.2,<1.2.11|>=1.3,<1.3.1", + "amphp/artax": "<1.0.6|>=2,<2.0.6", + "amphp/http": "<1.0.1", + "amphp/http-client": ">=4,<4.4", + "api-platform/core": ">=2.2,<2.2.10|>=2.3,<2.3.6", + "asymmetricrypt/asymmetricrypt": ">=0,<9.9.99", + "aws/aws-sdk-php": ">=3,<3.2.1", + "bagisto/bagisto": "<0.1.5", + "barrelstrength/sprout-base-email": "<1.2.7", + "barrelstrength/sprout-forms": "<3.9", + "baserproject/basercms": ">=4,<=4.3.6", + "bolt/bolt": "<3.7.1", + "brightlocal/phpwhois": "<=4.2.5", + "buddypress/buddypress": "<5.1.2", + "bugsnag/bugsnag-laravel": ">=2,<2.0.2", + "cakephp/cakephp": ">=1.3,<1.3.18|>=2,<2.4.99|>=2.5,<2.5.99|>=2.6,<2.6.12|>=2.7,<2.7.6|>=3,<3.5.18|>=3.6,<3.6.15|>=3.7,<3.7.7", + "cart2quote/module-quotation": ">=4.1.6,<=4.4.5|>=5,<5.4.4", + "cartalyst/sentry": "<=2.1.6", + "centreon/centreon": "<18.10.8|>=19,<19.4.5", + "cesnet/simplesamlphp-module-proxystatistics": "<3.1", + "codeigniter/framework": "<=3.0.6", + "composer/composer": "<=1-alpha.11", + "contao-components/mediaelement": ">=2.14.2,<2.21.1", + "contao/core": ">=2,<3.5.39", + "contao/core-bundle": ">=4,<4.4.46|>=4.5,<4.8.6", + "contao/listing-bundle": ">=4,<4.4.8", + "datadog/dd-trace": ">=0.30,<0.30.2", + "david-garcia/phpwhois": "<=4.3.1", + "doctrine/annotations": ">=1,<1.2.7", + "doctrine/cache": ">=1,<1.3.2|>=1.4,<1.4.2", + "doctrine/common": ">=2,<2.4.3|>=2.5,<2.5.1", + "doctrine/dbal": ">=2,<2.0.8|>=2.1,<2.1.2", + "doctrine/doctrine-bundle": "<1.5.2", + "doctrine/doctrine-module": "<=0.7.1", + "doctrine/mongodb-odm": ">=1,<1.0.2", + "doctrine/mongodb-odm-bundle": ">=2,<3.0.1", + "doctrine/orm": ">=2,<2.4.8|>=2.5,<2.5.1", + "dolibarr/dolibarr": "<11.0.4", + "dompdf/dompdf": ">=0.6,<0.6.2", + "drupal/core": ">=7,<7.72|>=8,<8.8.8|>=8.9,<8.9.1|>=9,<9.0.1", + "drupal/drupal": ">=7,<7.72|>=8,<8.8.8|>=8.9,<8.9.1|>=9,<9.0.1", + "endroid/qr-code-bundle": "<3.4.2", + "enshrined/svg-sanitize": "<0.13.1", + "erusev/parsedown": "<1.7.2", + "ezsystems/demobundle": ">=5.4,<5.4.6.1", + "ezsystems/ezdemo-ls-extension": ">=5.4,<5.4.2.1", + "ezsystems/ezfind-ls": ">=5.3,<5.3.6.1|>=5.4,<5.4.11.1|>=2017.12,<2017.12.0.1", + "ezsystems/ezplatform": ">=1.7,<1.7.9.1|>=1.13,<1.13.5.1|>=2.5,<2.5.4", + "ezsystems/ezplatform-admin-ui": ">=1.3,<1.3.5|>=1.4,<1.4.6", + "ezsystems/ezplatform-admin-ui-assets": ">=4,<4.2", + "ezsystems/ezplatform-kernel": ">=1,<1.0.2.1", + "ezsystems/ezplatform-user": ">=1,<1.0.1", + "ezsystems/ezpublish-kernel": ">=5.3,<5.3.12.1|>=5.4,<5.4.14.2|>=6,<6.7.9.1|>=6.8,<6.13.6.3|>=7,<7.2.4.1|>=7.3,<7.3.2.1|>=7.5,<7.5.7.1", + "ezsystems/ezpublish-legacy": ">=5.3,<5.3.12.6|>=5.4,<5.4.14.1|>=2011,<2017.12.7.2|>=2018.6,<2018.6.1.4|>=2018.9,<2018.9.1.3|>=2019.3,<2019.3.4.2", + "ezsystems/repository-forms": ">=2.3,<2.3.2.1", + "ezyang/htmlpurifier": "<4.1.1", + "firebase/php-jwt": "<2", + "fooman/tcpdf": "<6.2.22", + "fossar/tcpdf-parser": "<6.2.22", + "friendsofsymfony/oauth2-php": "<1.3", + "friendsofsymfony/rest-bundle": ">=1.2,<1.2.2", + "friendsofsymfony/user-bundle": ">=1.2,<1.3.5", + "friendsoftypo3/mediace": ">=7.6.2,<7.6.5", + "fuel/core": "<1.8.1", + "getgrav/grav": "<1.7-beta.8", + "gos/web-socket-bundle": "<1.10.4|>=2,<2.6.1|>=3,<3.3", + "gree/jose": "<=2.2", + "gregwar/rst": "<1.0.3", + "guzzlehttp/guzzle": ">=4-rc.2,<4.2.4|>=5,<5.3.1|>=6,<6.2.1", + "illuminate/auth": ">=4,<4.0.99|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.10", + "illuminate/cookie": ">=4,<=4.0.11|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.31|>=7,<7.22.4", + "illuminate/database": ">=4,<4.0.99|>=4.1,<4.1.29|>=5.5,<=5.5.44|>=6,<6.18.34|>=7,<7.23.2", + "illuminate/encryption": ">=4,<=4.0.11|>=4.1,<=4.1.31|>=4.2,<=4.2.22|>=5,<=5.0.35|>=5.1,<=5.1.46|>=5.2,<=5.2.45|>=5.3,<=5.3.31|>=5.4,<=5.4.36|>=5.5,<5.5.40|>=5.6,<5.6.15", + "illuminate/view": ">=7,<7.1.2", + "ivankristianto/phpwhois": "<=4.3", + "james-heinrich/getid3": "<1.9.9", + "joomla/session": "<1.3.1", + "jsmitty12/phpwhois": "<5.1", + "kazist/phpwhois": "<=4.2.6", + "kitodo/presentation": "<3.1.2", + "kreait/firebase-php": ">=3.2,<3.8.1", + "la-haute-societe/tcpdf": "<6.2.22", + "laravel/framework": ">=4,<4.0.99|>=4.1,<=4.1.99999|>=4.2,<=4.2.99999|>=5,<=5.0.99999|>=5.1,<=5.1.99999|>=5.2,<=5.2.99999|>=5.3,<=5.3.99999|>=5.4,<=5.4.99999|>=5.5,<=5.5.49|>=5.6,<=5.6.99999|>=5.7,<=5.7.99999|>=5.8,<=5.8.99999|>=6,<6.18.34|>=7,<7.23.2", + "laravel/socialite": ">=1,<1.0.99|>=2,<2.0.10", + "league/commonmark": "<0.18.3", + "librenms/librenms": "<1.53", + "magento/community-edition": ">=2,<2.2.10|>=2.3,<2.3.3", + "magento/magento1ce": "<1.9.4.3", + "magento/magento1ee": ">=1,<1.14.4.3", + "magento/product-community-edition": ">=2,<2.2.10|>=2.3,<2.3.2-p.2", + "marcwillmann/turn": "<0.3.3", + "mittwald/typo3_forum": "<1.2.1", + "monolog/monolog": ">=1.8,<1.12", + "namshi/jose": "<2.2", + "nystudio107/craft-seomatic": "<3.3", + "nzo/url-encryptor-bundle": ">=4,<4.3.2|>=5,<5.0.1", + "october/backend": ">=1.0.319,<1.0.467", + "october/cms": ">=1.0.319,<1.0.466", + "october/october": ">=1.0.319,<1.0.466", + "october/rain": ">=1.0.319,<1.0.468", + "onelogin/php-saml": "<2.10.4", + "oneup/uploader-bundle": "<1.9.3|>=2,<2.1.5", + "openid/php-openid": "<2.3", + "openmage/magento-lts": "<19.4.6|>=20,<20.0.2", + "oro/crm": ">=1.7,<1.7.4", + "oro/platform": ">=1.7,<1.7.4", + "padraic/humbug_get_contents": "<1.1.2", + "pagarme/pagarme-php": ">=0,<3", + "paragonie/random_compat": "<2", + "paypal/merchant-sdk-php": "<3.12", + "pear/archive_tar": "<1.4.4", + "phpfastcache/phpfastcache": ">=5,<5.0.13", + "phpmailer/phpmailer": "<6.1.6", + "phpmussel/phpmussel": ">=1,<1.6", + "phpmyadmin/phpmyadmin": "<4.9.2", + "phpoffice/phpexcel": "<1.8.2", + "phpoffice/phpspreadsheet": "<1.8", + "phpunit/phpunit": ">=4.8.19,<4.8.28|>=5.0.10,<5.6.3", + "phpwhois/phpwhois": "<=4.2.5", + "phpxmlrpc/extras": "<0.6.1", + "pimcore/pimcore": "<6.3", + "prestashop/autoupgrade": ">=4,<4.10.1", + "prestashop/gamification": "<2.3.2", + "prestashop/ps_facetedsearch": "<3.4.1", + "privatebin/privatebin": "<1.2.2|>=1.3,<1.3.2", + "propel/propel": ">=2-alpha.1,<=2-alpha.7", + "propel/propel1": ">=1,<=1.7.1", + "pusher/pusher-php-server": "<2.2.1", + "rainlab/debugbar-plugin": "<3.1", + "robrichards/xmlseclibs": "<3.0.4", + "sabre/dav": ">=1.6,<1.6.99|>=1.7,<1.7.11|>=1.8,<1.8.9", + "scheb/two-factor-bundle": ">=0,<3.26|>=4,<4.11", + "sensiolabs/connect": "<4.2.3", + "serluck/phpwhois": "<=4.2.6", + "shopware/shopware": "<5.3.7", + "silverstripe/admin": ">=1.0.3,<1.0.4|>=1.1,<1.1.1", + "silverstripe/assets": ">=1,<1.4.7|>=1.5,<1.5.2", + "silverstripe/cms": "<4.3.6|>=4.4,<4.4.4", + "silverstripe/comments": ">=1.3,<1.9.99|>=2,<2.9.99|>=3,<3.1.1", + "silverstripe/forum": "<=0.6.1|>=0.7,<=0.7.3", + "silverstripe/framework": "<4.4.7|>=4.5,<4.5.4", + "silverstripe/graphql": ">=2,<2.0.5|>=3,<3.1.2|>=3.2,<3.2.4", + "silverstripe/registry": ">=2.1,<2.1.2|>=2.2,<2.2.1", + "silverstripe/restfulserver": ">=1,<1.0.9|>=2,<2.0.4", + "silverstripe/subsites": ">=2,<2.1.1", + "silverstripe/taxonomy": ">=1.3,<1.3.1|>=2,<2.0.1", + "silverstripe/userforms": "<3", + "simple-updates/phpwhois": "<=1", + "simplesamlphp/saml2": "<1.10.6|>=2,<2.3.8|>=3,<3.1.4", + "simplesamlphp/simplesamlphp": "<1.18.6", + "simplesamlphp/simplesamlphp-module-infocard": "<1.0.1", + "simplito/elliptic-php": "<1.0.6", + "slim/slim": "<2.6", + "smarty/smarty": "<3.1.33", + "socalnick/scn-social-auth": "<1.15.2", + "spoonity/tcpdf": "<6.2.22", + "squizlabs/php_codesniffer": ">=1,<2.8.1|>=3,<3.0.1", + "ssddanbrown/bookstack": "<0.29.2", + "stormpath/sdk": ">=0,<9.9.99", + "studio-42/elfinder": "<2.1.49", + "sulu/sulu": "<1.6.34|>=2,<2.0.10|>=2.1,<2.1.1", + "swiftmailer/swiftmailer": ">=4,<5.4.5", + "sylius/admin-bundle": ">=1,<1.0.17|>=1.1,<1.1.9|>=1.2,<1.2.2", + "sylius/grid": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", + "sylius/grid-bundle": ">=1,<1.1.19|>=1.2,<1.2.18|>=1.3,<1.3.13|>=1.4,<1.4.5|>=1.5,<1.5.1", + "sylius/resource-bundle": "<1.3.14|>=1.4,<1.4.7|>=1.5,<1.5.2|>=1.6,<1.6.4", + "sylius/sylius": "<1.3.16|>=1.4,<1.4.12|>=1.5,<1.5.9|>=1.6,<1.6.5", + "symbiote/silverstripe-multivaluefield": ">=3,<3.0.99", + "symbiote/silverstripe-versionedfiles": "<=2.0.3", + "symfony/cache": ">=3.1,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8", + "symfony/dependency-injection": ">=2,<2.0.17|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/error-handler": ">=4.4,<4.4.4|>=5,<5.0.4", + "symfony/form": ">=2.3,<2.3.35|>=2.4,<2.6.12|>=2.7,<2.7.50|>=2.8,<2.8.49|>=3,<3.4.20|>=4,<4.0.15|>=4.1,<4.1.9|>=4.2,<4.2.1", + "symfony/framework-bundle": ">=2,<2.3.18|>=2.4,<2.4.8|>=2.5,<2.5.2|>=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/http-foundation": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7", + "symfony/http-kernel": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5", + "symfony/intl": ">=2.7,<2.7.38|>=2.8,<2.8.31|>=3,<3.2.14|>=3.3,<3.3.13", + "symfony/mime": ">=4.3,<4.3.8", + "symfony/phpunit-bridge": ">=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/polyfill": ">=1,<1.10", + "symfony/polyfill-php55": ">=1,<1.10", + "symfony/proxy-manager-bridge": ">=2.7,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7", + "symfony/routing": ">=2,<2.0.19", + "symfony/security": ">=2,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.1.12|>=4.2,<4.2.7|>=4.4,<4.4.7|>=5,<5.0.7", + "symfony/security-bundle": ">=2,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", + "symfony/security-core": ">=2.4,<2.6.13|>=2.7,<2.7.9|>=2.7.30,<2.7.32|>=2.8,<2.8.37|>=3,<3.3.17|>=3.4,<3.4.7|>=4,<4.0.7", + "symfony/security-csrf": ">=2.4,<2.7.48|>=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", + "symfony/security-guard": ">=2.8,<2.8.41|>=3,<3.3.17|>=3.4,<3.4.11|>=4,<4.0.11", + "symfony/security-http": ">=2.3,<2.3.41|>=2.4,<2.7.51|>=2.8,<2.8.50|>=3,<3.4.26|>=4,<4.2.12|>=4.3,<4.3.8|>=4.4,<4.4.7|>=5,<5.0.7", + "symfony/serializer": ">=2,<2.0.11", + "symfony/symfony": ">=2,<2.8.52|>=3,<3.4.35|>=4,<4.2.12|>=4.3,<4.4.13|>=5,<5.1.5", + "symfony/translation": ">=2,<2.0.17", + "symfony/validator": ">=2,<2.0.24|>=2.1,<2.1.12|>=2.2,<2.2.5|>=2.3,<2.3.3", + "symfony/var-exporter": ">=4.2,<4.2.12|>=4.3,<4.3.8", + "symfony/web-profiler-bundle": ">=2,<2.3.19|>=2.4,<2.4.9|>=2.5,<2.5.4", + "symfony/yaml": ">=2,<2.0.22|>=2.1,<2.1.7", + "t3g/svg-sanitizer": "<1.0.3", + "tecnickcom/tcpdf": "<6.2.22", + "thelia/backoffice-default-template": ">=2.1,<2.1.2", + "thelia/thelia": ">=2.1-beta.1,<2.1.3", + "theonedemon/phpwhois": "<=4.2.5", + "titon/framework": ">=0,<9.9.99", + "truckersmp/phpwhois": "<=4.3.1", + "twig/twig": "<1.38|>=2,<2.7", + "typo3/cms": ">=6.2,<6.2.30|>=7,<7.6.32|>=8,<8.7.30|>=9,<9.5.20|>=10,<10.4.6", + "typo3/cms-core": ">=8,<8.7.30|>=9,<9.5.20|>=10,<10.4.6", + "typo3/flow": ">=1,<1.0.4|>=1.1,<1.1.1|>=2,<2.0.1|>=2.3,<2.3.16|>=3,<3.0.10|>=3.1,<3.1.7|>=3.2,<3.2.7|>=3.3,<3.3.5", + "typo3/neos": ">=1.1,<1.1.3|>=1.2,<1.2.13|>=2,<2.0.4", + "typo3/phar-stream-wrapper": ">=1,<2.1.1|>=3,<3.1.1", + "ua-parser/uap-php": "<3.8", + "usmanhalalit/pixie": "<1.0.3|>=2,<2.0.2", + "verot/class.upload.php": "<=1.0.3|>=2,<=2.0.4", + "wallabag/tcpdf": "<6.2.22", + "willdurand/js-translation-bundle": "<2.1.1", + "yii2mod/yii2-cms": "<1.9.2", + "yiisoft/yii": ">=1.1.14,<1.1.15", + "yiisoft/yii2": "<2.0.15", + "yiisoft/yii2-bootstrap": "<2.0.4", + "yiisoft/yii2-dev": "<2.0.15", + "yiisoft/yii2-elasticsearch": "<2.0.5", + "yiisoft/yii2-gii": "<2.0.4", + "yiisoft/yii2-jui": "<2.0.4", + "yiisoft/yii2-redis": "<2.0.8", + "yourls/yourls": "<1.7.4", + "zendframework/zend-cache": ">=2.4,<2.4.8|>=2.5,<2.5.3", + "zendframework/zend-captcha": ">=2,<2.4.9|>=2.5,<2.5.2", + "zendframework/zend-crypt": ">=2,<2.4.9|>=2.5,<2.5.2", + "zendframework/zend-db": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.10|>=2.3,<2.3.5", + "zendframework/zend-developer-tools": ">=1.2.2,<1.2.3", + "zendframework/zend-diactoros": ">=1,<1.8.4", + "zendframework/zend-feed": ">=1,<2.10.3", + "zendframework/zend-form": ">=2,<2.2.7|>=2.3,<2.3.1", + "zendframework/zend-http": ">=1,<2.8.1", + "zendframework/zend-json": ">=2.1,<2.1.6|>=2.2,<2.2.6", + "zendframework/zend-ldap": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.8|>=2.3,<2.3.3", + "zendframework/zend-mail": ">=2,<2.4.11|>=2.5,<2.7.2", + "zendframework/zend-navigation": ">=2,<2.2.7|>=2.3,<2.3.1", + "zendframework/zend-session": ">=2,<2.0.99|>=2.1,<2.1.99|>=2.2,<2.2.9|>=2.3,<2.3.4", + "zendframework/zend-validator": ">=2.3,<2.3.6", + "zendframework/zend-view": ">=2,<2.2.7|>=2.3,<2.3.1", + "zendframework/zend-xmlrpc": ">=2.1,<2.1.6|>=2.2,<2.2.6", + "zendframework/zendframework": "<2.5.1", + "zendframework/zendframework1": "<1.12.20", + "zendframework/zendopenid": ">=2,<2.0.2", + "zendframework/zendxml": ">=1,<1.0.1", + "zetacomponents/mail": "<1.8.2", + "zf-commons/zfc-user": "<1.2.2", + "zfcampus/zf-apigility-doctrine": ">=1,<1.0.3", + "zfr/zfr-oauth2-server-module": "<0.1.2" + }, + "type": "metapackage", + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Marco Pivetta", + "email": "ocramius@gmail.com", + "role": "maintainer" + }, + { + "name": "Ilya Tribusean", + "email": "slash3b@gmail.com", + "role": "maintainer" + } + ], + "description": "Prevents installation of composer packages with known security vulnerabilities: no API, simply require it", + "funding": [ + { + "url": "https://github.com/Ocramius", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/roave/security-advisories", + "type": "tidelift" + } + ], + "time": "2020-09-02T09:37:47+00:00" + }, + { + "name": "squizlabs/php_codesniffer", + "version": "3.5.6", + "source": { + "type": "git", + "url": "https://github.com/squizlabs/PHP_CodeSniffer.git", + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/e97627871a7eab2f70e59166072a6b767d5834e0", + "reference": "e97627871a7eab2f70e59166072a6b767d5834e0", + "shasum": "" + }, + "require": { + "ext-simplexml": "*", + "ext-tokenizer": "*", + "ext-xmlwriter": "*", + "php": ">=5.4.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0" + }, + "bin": [ + "bin/phpcs", + "bin/phpcbf" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "3.x-dev" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "BSD-3-Clause" + ], + "authors": [ + { + "name": "Greg Sherwood", + "role": "lead" + } + ], + "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "homepage": "https://github.com/squizlabs/PHP_CodeSniffer", + "keywords": [ + "phpcs", + "standards" + ], + "time": "2020-08-10T04:50:15+00:00" + } + ], + "aliases": [], + "minimum-stability": "dev", + "stability-flags": { + "roave/security-advisories": 20 + }, + "prefer-stable": true, + "prefer-lowest": false, + "platform": { + "php": ">=7.1" + }, + "platform-dev": [], + "plugin-api-version": "1.1.0" +} diff --git a/config/application.php b/config/application.php new file mode 100644 index 0000000..5253eca --- /dev/null +++ b/config/application.php @@ -0,0 +1,130 @@ +load(); + $dotenv->required(['WP_HOME', 'WP_SITEURL']); + if (!env('DATABASE_URL')) { + $dotenv->required(['DB_NAME', 'DB_USER', 'DB_PASSWORD']); + } +} + +/** + * Set up our global environment constant and load its config first + * Default: production + */ +define('WP_ENV', env('WP_ENV') ?: 'production'); + +/** + * URLs + */ +Config::define('WP_HOME', env('WP_HOME')); +Config::define('WP_SITEURL', env('WP_SITEURL')); + +/** + * Custom Content Directory + */ +Config::define('CONTENT_DIR', '/app'); +Config::define('WP_CONTENT_DIR', $webroot_dir . Config::get('CONTENT_DIR')); +Config::define('WP_CONTENT_URL', Config::get('WP_HOME') . Config::get('CONTENT_DIR')); + +/** + * DB settings + */ +Config::define('DB_NAME', env('DB_NAME')); +Config::define('DB_USER', env('DB_USER')); +Config::define('DB_PASSWORD', env('DB_PASSWORD')); +Config::define('DB_HOST', env('DB_HOST') ?: 'localhost'); +Config::define('DB_CHARSET', 'utf8mb4'); +Config::define('DB_COLLATE', ''); +$table_prefix = env('DB_PREFIX') ?: 'wp_'; + +if (env('DATABASE_URL')) { + $dsn = (object) parse_url(env('DATABASE_URL')); + + Config::define('DB_NAME', substr($dsn->path, 1)); + Config::define('DB_USER', $dsn->user); + Config::define('DB_PASSWORD', isset($dsn->pass) ? $dsn->pass : null); + Config::define('DB_HOST', isset($dsn->port) ? "{$dsn->host}:{$dsn->port}" : $dsn->host); +} + +/** + * Authentication Unique Keys and Salts + */ +Config::define('AUTH_KEY', env('AUTH_KEY')); +Config::define('SECURE_AUTH_KEY', env('SECURE_AUTH_KEY')); +Config::define('LOGGED_IN_KEY', env('LOGGED_IN_KEY')); +Config::define('NONCE_KEY', env('NONCE_KEY')); +Config::define('AUTH_SALT', env('AUTH_SALT')); +Config::define('SECURE_AUTH_SALT', env('SECURE_AUTH_SALT')); +Config::define('LOGGED_IN_SALT', env('LOGGED_IN_SALT')); +Config::define('NONCE_SALT', env('NONCE_SALT')); + +/** + * Custom Settings + */ +Config::define('AUTOMATIC_UPDATER_DISABLED', true); +Config::define('DISABLE_WP_CRON', env('DISABLE_WP_CRON') ?: false); +// Disable the plugin and theme file editor in the admin +Config::define('DISALLOW_FILE_EDIT', true); +// Disable plugin and theme updates and installation from the admin +Config::define('DISALLOW_FILE_MODS', true); + +/** + * Debugging Settings + */ +Config::define('WP_DEBUG_DISPLAY', false); +Config::define('WP_DEBUG_LOG', env('WP_DEBUG_LOG') ?? false); +Config::define('SCRIPT_DEBUG', false); +ini_set('display_errors', '0'); + +/** + * Allow WordPress to detect HTTPS when used behind a reverse proxy or a load balancer + * See https://codex.wordpress.org/Function_Reference/is_ssl#Notes + */ +if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { + $_SERVER['HTTPS'] = 'on'; +} + +$env_config = __DIR__ . '/environments/' . WP_ENV . '.php'; + +if (file_exists($env_config)) { + require_once $env_config; +} + +Config::apply(); + +/** + * Bootstrap WordPress + */ +if (!defined('ABSPATH')) { + define('ABSPATH', $webroot_dir . '/wp/'); +} diff --git a/config/environments/development.php b/config/environments/development.php new file mode 100644 index 0000000..9007765 --- /dev/null +++ b/config/environments/development.php @@ -0,0 +1,17 @@ + + + Roots Coding Standards + + + . + + + + + + web/wp + vendor/ + + + + + + + + + + diff --git a/web/.gitignore b/web/.gitignore new file mode 100644 index 0000000..fed1c26 --- /dev/null +++ b/web/.gitignore @@ -0,0 +1,5 @@ +#ddev-generated: Automatically generated ddev .gitignore. +# You can remove the above line if you want to edit and maintain this file yourself. + +/wp-config-ddev.php +/drushrc.php diff --git a/web/app/languages/admin-de_DE.mo b/web/app/languages/admin-de_DE.mo new file mode 100644 index 0000000..49e965e Binary files /dev/null and b/web/app/languages/admin-de_DE.mo differ diff --git a/web/app/languages/admin-de_DE.po b/web/app/languages/admin-de_DE.po new file mode 100644 index 0000000..9c4d842 --- /dev/null +++ b/web/app/languages/admin-de_DE.po @@ -0,0 +1,14788 @@ +# Translation of WordPress - 5.5.x - Development - Administration in German +# This file is distributed under the same license as the WordPress - 5.5.x - Development - Administration package. +msgid "" +msgstr "" +"PO-Revision-Date: 2020-09-09 20:03:16+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/3.0.0-alpha.2\n" +"Language: de\n" +"Project-Id-Version: WordPress - 5.5.x - Development - Administration\n" + +#. translators: Default start of the week. 0 = Sunday, 1 = Monday. +#: wp-admin/includes/schema.php:409 +msgctxt "start of week" +msgid "1" +msgstr "1" + +#: wp-admin/includes/schema.php:393 +msgctxt "default GMT offset or timezone string" +msgid "0" +msgstr "Europe/Berlin" + +#: wp-admin/includes/media.php:1706 wp-admin/upgrade.php:74 +#: wp-admin/upgrade.php:154 +msgid "Continue" +msgstr "Weiter" + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2055 +msgid "The \"%1$s\" value is smaller than \"%2$s\"." +msgstr "Der Wert von „%1$s“ ist geringer als der von „%2$s“." + +#: wp-admin/includes/class-wp-debug-data.php:124 +msgid "Environment type" +msgstr "Umgebungstyp" + +#: wp-admin/about.php:162 +msgid "Video: An image is added with an image block. In the block toolbar, an icon called \"Crop\" is selected, which changes the toolbar to show image resizing tools. First, zoom is used to zoom into the center of the image. Next, aspect ratio is clicked. This shows a dropdown of common aspect ratios. Square is chosen, and the image is moved within the new square outline. The crop is completed by clicking \"Apply.\"" +msgstr "Video: Ein Bild wird mit einem Bild-Block hinzugefügt. In der Block-Werkzeugleiste wird das Icon „Zuschneiden“ ausgewählt, wodurch sich die Werkzeugleiste verändert und die Werkzeuge für die Bearbeitung von Bildern angezeigt werden. Zunächst wird der Zoom verwendet, um in die Mitte des Bildes zu zoomen. Als nächstes wird das Icon „Seitenverhältnis“ angeklickt, wodurch eine Drop-down-Liste mit gängigen, auswählbaren Seitenverhältnissen aufklappt. Hier wird „Quadrat“ ausgewählt und das Bild innerhalb des neuen quadratischen Umrisses verschoben. Das Zuschneiden wird durch einen Klick auf „Übernehmen“ abgeschlossen." + +#: wp-admin/about.php:154 +msgid "Video: In the editor, the block inserter shows two tabs, Blocks and Patterns. The Patterns tab is selected. There are different block layouts in this tab. After scrolling through options including buttons and columns, a pattern called \"Large header with a heading\" is chosen. This adds a cover block, which is customized with a photo and the name of the WordPress 5.5 jazz musician." +msgstr "Video: Im Editor zeigt der Block-Inserter zwei Tabs – Blöcke und Vorlagen. Der Tab Vorlagen ist ausgewählt. In diesem Tab gibt es verschiedene Block-Layouts. Nach dem Scrollen durch die Optionen einschließlich Buttons und Spalten wird eine Vorlage mit der Bezeichnung „Großer Header mit einer Überschrift“ ausgewählt. Dadurch wird ein Cover-Block hinzugefügt, der mit einem Foto und dem Namen des Jazzmusikers von WordPress 5.5 personalisiert wird." + +#: wp-admin/about.php:134 +msgid "Video: Installed plugin screen, which shows a new column, Automatic Updates. In this column are buttons that say \"Enable auto-updates\". When clicked, the auto-updates feature is turned on for that plugin, and the button switches to say \"Disable auto-updates\"." +msgstr "Video: Die Ansicht „Installierte Plugins“ zeigt eine neue Spalte „Automatische Aktualisierungen“ an. In dieser Spalte befinden sich Buttons mit der Aufschrift „Automatische Aktualisierungen aktivieren“. Wenn du darauf klickst, wird die Funktion „Automatische Aktualisierungen“ für dieses Plugin aktiviert, und der Button ändert sich in „Automatische Aktualisierungen deaktivieren“." + +#. translators: %s: 'register_meta' function name. +#: wp-admin/about.php:274 +msgid "The REST API now officially supports specifying default metadata values through %s." +msgstr "Die REST-API unterstützt jetzt offiziell die Angabe von Standard-Metadatenwerten durch %s." + +#. translators: %s: 'register_taxonomy' function name. +#: wp-admin/about.php:265 +msgid "Default terms can now be specified for custom taxonomies in %s." +msgstr "In %s können nun Standardbegriffe für individuelle Taxonomien festgelegt werden." + +#: wp-admin/about.php:260 +msgid "Custom post types associated with the category taxonomy can now opt-in to supporting the default term." +msgstr "Für individuelle Inhaltstypen, die mit der Kategorie-Taxonomie verknüpft werden, kann nun die Unterstützung des Standardbegriffs gewählt werden." + +#: wp-admin/about.php:109 +msgctxt "sitemap" +msgid "Search" +msgstr "Suche" + +#: wp-admin/about.php:288 +msgid "Check the Field Guide for more!" +msgstr "Weitere Informationen findest du im Field Guide!" + +#: wp-admin/about.php:279 +msgid "You will find updated versions of these bundled libraries: SimplePie, Twemoji, Masonry, imagesLoaded, getID3, Moment.js, and clipboard.js." +msgstr "Du wirst aktualisierte Versionen dieser mitgelieferten Bibliotheken vorfinden: SimplePie, Twemoji, Masonry, imagesLoaded, getID3, Moment.js und clipboard.js." + +#. translators: %s: 'wp_opcache_invalidate' function name. +#: wp-admin/about.php:255 +msgid "Sites that use PHP’s OPcache will see more reliable cache invalidation, thanks to the new %s function during updates (including to plugins and themes)." +msgstr "Websites, die den OPcache von PHP verwenden, erhalten dank der neuen Funktion %s eine zuverlässigere Cache-Invalidierung während der Aktualisierung (inklusive derer von Plugins und Themes)." + +#. translators: %s: 'redirect_guess_404_permalink' function name. +#: wp-admin/about.php:246 +msgid "Now get more fine-grained control of %s." +msgstr "Erhalte nun eine verfeinerte Kontrolle über %s." + +#: wp-admin/about.php:241 +msgid "The PHPMailer library just got a major update, going from version 5.2.27 to 6.1.6." +msgstr "Die PHPMailer-Bibliothek erhielt eine große Aktualisierung von Version 5.2.27 auf 6.1.6." + +#: wp-admin/about.php:239 +msgid "More changes for developers" +msgstr "Mehr Änderungen für Entwickler" + +#. translators: %1$s: 'get_header' function name, %2$s: 'get_template_part' +#. function name, %3$s: '$args' variable name. +#: wp-admin/about.php:227 +msgid "The template loading functions (%1$s, %2$s, etc.) have a new %3$s argument. So now you can pass an entire array’s worth of data to those templates." +msgstr "Die Funktionen zum Laden von Templates (%1$s, %2$s, usw.) haben ein neues Argument %3$s. Somit kannst du jetzt den Wert eines ganzen Arrays von Daten an diese Templates übergeben." + +#: wp-admin/about.php:222 +msgid "Passing data to template files" +msgstr "Daten an Template-Dateien übergeben" + +#. translators: %s: 'wp_get_environment_type' function name. +#: wp-admin/about.php:215 +msgid "WordPress now has a standardized way to define a site’s environment type (staging, production, etc). Retrieve that type with %s and execute only the appropriate code." +msgstr "WordPress hat nun einen standardisierten Weg, Website-Umgebungstypen (Staging, Produktion etc.) zu definieren. Ruf diesen Typ mit %s ab und führe nur den dafür geeigneten Code aus." + +#: wp-admin/about.php:210 +msgid "Defining environments" +msgstr "Umgebungen definieren" + +#: wp-admin/about.php:204 +msgid "The Dashicons library has received its final update in 5.5. It adds 39 block editor icons along with 26 others." +msgstr "Die Dashicons-Bibliothek hat ihre finale Aktualisierung in 5.5 erhalten. Sie fügt 39 Block-Editor-Icons zusammen mit 26 weiteren hinzu." + +#: wp-admin/about.php:203 +msgid "Dashicons" +msgstr "Dashicons" + +#: wp-admin/about.php:200 +msgid "The addition of block types endpoints means that JavaScript apps (like the block editor) can retrieve definitions for any blocks registered on the server." +msgstr "Das Hinzufügen von Endpunkten für Blocktypen bedeutet, dass JavaScript-Anwendungen (wie der Block-Editor) Definitionen für alle auf dem Server registrierten Blöcke abrufen können." + +#: wp-admin/about.php:199 +msgid "Server-side registered blocks in the REST API" +msgstr "Serverseitig registrierte Blöcke in der REST-API" + +#: wp-admin/about.php:196 +msgid "5.5 also brings a big box of changes just for developers." +msgstr "5.5 bringt außerdem ein großes Paket an Änderungen nur für Entwickler." + +#: wp-admin/about.php:187 +msgid "You can also move meta boxes with the keyboard, and edit images in WordPress with your assistive device, as it can read you the instructions in the image editor." +msgstr "Du kannst auch Metaboxen mit der Tastatur verschieben und Bilder in WordPress mit deinem Hilfsgerät bearbeiten, da es dir die Anweisungen im Bildeditor vorlesen kann." + +#: wp-admin/about.php:186 +msgid "Now you can copy links in media screens and modal dialogs with a button, instead of trying to highlight a line of text." +msgstr "Jetzt kannst du Links in Medienansichten und modalen Dialogen mit einem Button kopieren, anstatt zu versuchen, eine Textzeile hervorzuheben." + +#: wp-admin/about.php:185 +msgid "Every release adds improvements to the accessible publishing experience, and that remains true for WordPress 5.5." +msgstr "Mit jeder neuen Version wird das barrierefreie Veröffentlichen verbessert, und das gilt auch für WordPress 5.5. " + +#: wp-admin/about.php:184 +msgid "Accessibility" +msgstr "Barrierefreiheit" + +#: wp-admin/about.php:176 +msgid "The highlights above are a tiny fraction of the new block editor features you’ve just installed. Open the block editor and enjoy!" +msgstr "Die oben genannten Highlights sind nur ein winziger Teil der neuen Block-Editor-Funktionen, die du gerade installiert hast. Öffne den Block-Editor und genieße ihn!" + +#: wp-admin/about.php:175 +msgid "And so much more." +msgstr "Und so viel mehr." + +#: wp-admin/about.php:173 +msgid "Now it’s easier than ever to find the block you need. The new block directory is built right into the block editor, so you can install new block types to your site without ever leaving the editor." +msgstr "Es ist jetzt einfacher als je zuvor, den Block zu finden, den du benötigst. Das neue Block-Verzeichnis ist direkt im Block-Editor integriert, sodass du neue Block-Typen in deiner Website installieren kannst, ohne je den Editor zu verlassen." + +#: wp-admin/about.php:172 +msgid "The New Block Directory" +msgstr "Das neue Block-Verzeichnis" + +#: wp-admin/about.php:168 +msgid "You will also find block patterns in a wide variety of plugins and themes, with more added all the time. Pick any of them from a single place — just click and go!" +msgstr "Du findest auch Block-Vorlagen in einer Vielzahl von Plugins und Themes, und es kommen ständig neue hinzu. Wähle eine von ihnen von einem einzigen Ort aus – einfach klicken und loslegen!" + +#: wp-admin/about.php:167 +msgid "New block patterns make it simple and fun to create complex, beautiful layouts, using combinations of text and media that you can mix and match to fit your story." +msgstr "Mit den neuen Block-Vorlagen ist es einfach und macht Spaß, komplexe, schöne Layouts zu erstellen, bei denen Kombinationen von Text und Medien verwendet werden, die du passend zu deiner Geschichte kombinieren kannst." + +#: wp-admin/about.php:166 +msgid "Block patterns" +msgstr "Block-Vorlagen" + +#: wp-admin/about.php:170 +msgid "Crop, rotate, and zoom your photos right from the image block. If you spend a lot of time on images, this could save you hours!" +msgstr "Du kannst deine Fotos direkt im Bild-Block zuschneiden, drehen und zoomen. Wenn du viel Zeit mit Bildern verbringst, kann dir das Stunden ersparen!" + +#: wp-admin/about.php:169 +msgid "Inline image editing" +msgstr "Inline-Bildbearbeitung" + +#: wp-admin/about.php:144 +msgid "Once again, the latest WordPress release packs a long list of exciting new features for the block editor. For example:" +msgstr "Wieder einmal enthält das neueste WordPress-Release eine lange Liste aufregender neuer Funktionen für den Block-Editor. Zum Beispiel:" + +#: wp-admin/about.php:143 +msgid "Highlights from the block editor" +msgstr "Highlights aus dem Block-Editor" + +#: wp-admin/about.php:126 +msgid "If updating plugins and themes manually is your thing, now that’s easier too — just upload a ZIP file." +msgstr "Wenn du die manuelle Aktualisierung von Plugins und Themes bevorzugst, kannst du das nun viel schneller und leichter erledigen – lade einfach (ohne vorheriges Deaktivieren und Löschen) eine ZIP-Datei hoch." + +#: wp-admin/about.php:125 +msgid "Update by uploading ZIP files" +msgstr "Aktualisieren durch das Hochladen von ZIP-Dateien" + +#: wp-admin/about.php:124 +msgid "You can also turn auto-updates on or off for each plugin or theme you have installed — all on the same screens you’ve always used." +msgstr "Du kannst automatische Aktualisierungen auch für jedes Plugin oder Theme, das du installiert hast, an- oder abschalten – alles in denselben Ansichten, die du schon immer verwendet hast." + +#: wp-admin/about.php:123 +msgid "Now you can set plugins and themes to update automatically — or not! — in the WordPress admin. So you always know your site is running the latest code available." +msgstr "Du kannst nun Plugins und Themes automatisch im WordPress-Adminbereich aktualisieren – oder auch nicht! So weißt du immer, dass auf deiner Website der neueste verfügbare Code läuft." + +#: wp-admin/about.php:122 +msgid "Auto-updates for Plugins and Themes" +msgstr "Automatische Aktualisierungen für Plugins und Themes" + +#: wp-admin/about.php:113 +msgid "So more people will find your site sooner, giving you more time to engage, retain and convert them to subscribers, customers or whatever fits your definition of success." +msgstr "So werden mehr Menschen deine Website schneller finden, was dir mehr Zeit gibt, sie anzusprechen, zu binden und in Abonnenten, Kunden oder was auch immer deiner Definition von Erfolg entspricht, umzuwandeln." + +#: wp-admin/about.php:112 +msgid "Now, by default, WordPress 5.5 includes an XML sitemap that helps search engines discover your most important pages from the very minute you go live." +msgstr "Jetzt enthält WordPress 5.5 standardmäßig eine XML-Sitemap, die den Suchmaschinen hilft, deine wichtigsten Seiten von der ersten Minute an zu finden." + +#: wp-admin/about.php:111 +msgid "WordPress sites work well with search engines." +msgstr "WordPress-Websites arbeiten gut mit Suchmaschinen zusammen." + +#: wp-admin/about.php:110 +msgid "Say hello to your new sitemap." +msgstr "Begrüße deine neue Sitemap." + +#: wp-admin/about.php:103 +msgid "On mobile, lazy loading can also keep browsers from loading files meant for other devices. That can save your readers money on data — and help preserve battery life." +msgstr "Auf Mobilgeräten kann Lazy Loading auch Browser davon abhalten, Dateien zu laden, die für andere Geräte bestimmt sind. Das kann deinen Lesern helfen, Datenvolumen und damit Geld zu sparen – und dazu beitragen, die Batterielebensdauer zu erhalten." + +#: wp-admin/about.php:102 +msgid "In WordPress 5.5, images wait to load until they’re just about to scroll into view. The technical term is ‘lazy loading’." +msgstr "In WordPress 5.5 werden Bilder erst geladen, wenn sie im sichtbaren Bereich sind. Der technische Begriff dafür lautet „Lazy Loading“." + +#: wp-admin/about.php:101 +msgid "Images give your story a lot of impact, but they can sometimes make your site seem slow." +msgstr "Bilder verleihen deiner Geschichte eine große Wirkung, aber sie können deine Website manchmal langsam erscheinen lassen." + +#: wp-admin/about.php:100 +msgid "Posts and pages feel faster, thanks to lazy-loaded images." +msgstr "Beiträge und Seiten fühlen sich dank der verzögert geladenen Bilder schneller an." + +#: wp-admin/about.php:99 +msgid "Speed" +msgstr "Geschwindigkeit" + +#. translators: %s: The current WordPress version number. +#: wp-admin/about.php:55 +msgid "In WordPress %s, your site gets new power in three major areas: speed, search, and security." +msgstr "In WordPress %s erhält deine Website neue Stärke in diesen drei Hauptbereichen: Geschwindigkeit, Suchmaschinen und Sicherheit." + +#: wp-admin/credits.php:25 wp-admin/privacy.php:22 wp-admin/freedoms.php:28 +#: wp-admin/about.php:23 +msgid "Speed. Search. Security." +msgstr "Geschwindigkeit. Suche. Sicherheit." + +#: wp-admin/plugins.php:577 +msgid "Auto-updates are only available for plugins recognized by WordPress.org, or that include a compatible update system." +msgstr "Automatische Aktualisierungen sind nur für Plugins verfügbar, die von WordPress.org erkannt werden oder die ein kompatibles Aktualisierungssystem beinhalten." + +#: wp-admin/includes/theme.php:844 wp-admin/themes.php:1002 +msgid "Update Incompatible" +msgstr "Aktualisierung nicht kompatibel" + +#: wp-admin/update-core.php:547 +msgid "This update doesn’t work with your version of WordPress." +msgstr "Diese Aktualisierung funktioniert nicht mit deiner WordPress-Version." + +#: wp-admin/update-core.php:513 +msgid "This update doesn’t work with your versions of WordPress and PHP." +msgstr "Diese Aktualisierung funktioniert nicht mit deiner WordPress- und PHP-Version." + +#: wp-admin/options-discussion.php:207 wp-admin/options-discussion.php:208 +msgid "Disallowed Comment Keys" +msgstr "Kommentar-Sperrliste" + +#: wp-admin/includes/class-wp-site-health.php:2150 +msgid "Plugin and theme auto-updates" +msgstr "Automatische Plugin- und Theme-Aktualisierungen" + +#: wp-admin/includes/class-wp-site-health.php:2427 +msgid "There appear to be no issues with plugin and theme auto-updates." +msgstr "Es gibt anscheinend kein Problem mit automatischen Plugin- und Theme-Aktualisierungen." + +#: wp-admin/includes/class-wp-site-health.php:2421 +msgid "Auto-updates for themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Automatische Aktualisierungen für Themes sind anscheinend deaktiviert. Das verhindert, dass deine Website automatisch neue Versionen erhält, sobald sie verfügbar sind." + +#: wp-admin/includes/class-wp-site-health.php:2416 +msgid "Auto-updates for plugins appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Automatische Aktualisierungen für Plugins sind anscheinend deaktiviert. Das verhindert, dass deine Website automatisch neue Versionen erhält, sobald sie verfügbar sind." + +#: wp-admin/includes/class-wp-site-health.php:2411 +msgid "Auto-updates for plugins and themes appear to be disabled. This will prevent your site from receiving new versions automatically when available." +msgstr "Automatische Aktualisierungen für Plugins und Themes sind anscheinend deaktiviert. Das verhindert, dass deine Website automatisch neue Versionen erhält, sobald sie verfügbar sind." + +#: wp-admin/includes/class-wp-site-health.php:2402 +msgid "Auto-updates for plugins and/or themes appear to be disabled, but settings are still set to be displayed. This could cause auto-updates to not work as expected." +msgstr "Automatische Aktualisierungen für Plugins und/oder Themes sind anscheinend deaktiviert, aber die Einstellung wird dennoch angezeigt. Das kann dazu führen, dass automatische Aktualisierungen nicht wie erwartet funktionieren." + +#: wp-admin/includes/class-wp-site-health.php:1765 +msgid "Your site may have problems auto-updating plugins and themes" +msgstr "Deine Website hat möglicherweise Probleme, Plugins und Themes automatisch zu aktualisieren" + +#: wp-admin/includes/class-wp-site-health.php:1754 +msgid "Plugin and theme auto-updates ensure that the latest versions are always installed." +msgstr "Automatische Plugin- und Theme-Aktualisierungen stellen sicher, dass immer die neuesten Versionen installiert sind." + +#: wp-admin/includes/class-wp-site-health.php:1746 +msgid "Plugin and theme auto-updates appear to be configured correctly" +msgstr "Automatische Plugin- und Theme-Aktualisierungen sind anscheinend richtig konfiguriert" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-themes-list-table.php:215 +#: wp-admin/includes/class-theme-installer-skin.php:143 +#: wp-admin/includes/class-theme-upgrader-skin.php:115 +msgctxt "theme" +msgid "Activate “%s”" +msgstr "„%s“ aktivieren" + +#: wp-admin/includes/ajax-actions.php:5327 +msgid "Sorry, you are not allowed to modify plugins." +msgstr "Du bist leider nicht berechtigt, Plugins zu ändern." + +#. translators: 1: post_max_size, 2: upload_max_filesize +#: wp-admin/includes/class-wp-site-health.php:2064 +msgid "The setting for %1$s is smaller than %2$s, this could cause some problems when trying to upload files." +msgstr "Die Einstellung für %1$s ist kleiner als die für %2$s, dies könnte beim Versuch, Dateien hochzuladen, zu Problemen führen." + +#. translators: 1: file_uploads, 2: 0 +#: wp-admin/includes/class-wp-site-health.php:2041 +msgid "%1$s is set to %2$s. You won't be able to upload files on your site." +msgstr "%1$s ist auf %2$s gesetzt. Du wirst keine Dateien auf deiner Website hochladen können." + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-site-health.php:2029 +msgid "The %s function has been disabled, some media settings are unavailable because of this." +msgstr "Die Funktion %s wurde deaktiviert, daher sind einige Medien-Einstellungen nicht verfügbar." + +#. translators: 1: file_uploads, 2: php.ini +#: wp-admin/includes/class-wp-site-health.php:2016 +msgid "The %1$s directive in %2$s determines if uploading files is allowed on your site." +msgstr "Die Anweisung %1$s in der %2$s legt fest, ob das Hochladen von Dateien auf deiner Website erlaubt ist." + +#: wp-admin/includes/class-wp-site-health.php:2006 +msgid "Files can be uploaded." +msgstr "Dateien können hochgeladen werden." + +#: wp-admin/includes/class-wp-debug-data.php:564 +msgid "Max number of files allowed" +msgstr "Maximale Anzahl erlaubter Dateien" + +#: wp-admin/includes/class-wp-debug-data.php:560 +msgid "Max effective file size" +msgstr "Maximale effektive Dateigröße" + +#: wp-admin/includes/class-wp-debug-data.php:556 +msgid "Max size of an uploaded file" +msgstr "Maximale Größe einer hochgeladenen Datei" + +#: wp-admin/includes/class-wp-debug-data.php:552 +msgid "Max size of post data allowed" +msgstr "Maximale Anzahl erlaubter POST-Daten" + +#: wp-admin/includes/class-wp-debug-data.php:547 +#: wp-admin/includes/class-wp-site-health.php:2146 +msgid "File uploads" +msgstr "Datei-Uploads" + +#: wp-admin/includes/class-wp-debug-data.php:530 +msgid "File upload settings" +msgstr "Datei-Upload-Einstellungen" + +#. translators: %s: Theme name. +#: wp-admin/theme-install.php:393 +msgctxt "theme" +msgid "Cannot Install %s" +msgstr "%s kann nicht installiert werden" + +#. translators: %s: Plugin name. +#: wp-admin/includes/deprecated.php:1382 +msgctxt "plugin" +msgid "Install %s" +msgstr "%s installieren " + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:326 +#: wp-admin/theme-install.php:386 +msgctxt "theme" +msgid "Install %s" +msgstr "%s installieren " + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:243 wp-admin/includes/update.php:704 +msgctxt "theme" +msgid "Update %s now" +msgstr "%s jetzt aktualisieren" + +#. translators: 1: Plugin name, 2: Version number. +#. translators: 1: Theme name, 2: Version number. +#: wp-admin/includes/class-wp-automatic-updater.php:1066 +#: wp-admin/includes/class-wp-automatic-updater.php:1084 +#: wp-admin/includes/class-wp-automatic-updater.php:1107 +#: wp-admin/includes/class-wp-automatic-updater.php:1125 +msgid "- %1$s version %2$s" +msgstr "- %1$s Version %2$s" + +#: wp-admin/theme-install.php:356 wp-admin/theme-install.php:418 +msgctxt "theme" +msgid "Activated" +msgstr "Aktiviert" + +#: wp-admin/themes.php:86 +msgid "Sorry, you are not allowed to enable themes automatic updates." +msgstr "Du bist leider nicht berechtigt, automatische Aktualisierungen für Themes zu aktivieren." + +#: wp-admin/includes/class-plugin-installer-skin.php:211 +msgid "This plugin is already installed." +msgstr "Dieses Plugin ist bereits installiert." + +#. translators: %s: Plugin name. +#. translators: %s: Plugin name and version. +#: wp-admin/includes/update.php:512 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:553 +#: wp-admin/js/updates.js:2057 +msgctxt "plugin" +msgid "Update %s now" +msgstr "%s jetzt aktualisieren" + +#. translators: %s: Plugin name and version. +#. translators: %s: Importer name. +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:531 +#: wp-admin/import.php:159 wp-admin/js/updates.js:891 +#: wp-admin/js/updates.js:2066 wp-admin/js/updates.js:2189 +msgctxt "plugin" +msgid "Install %s now" +msgstr "%s jetzt installieren" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:549 wp-admin/themes.php:895 wp-admin/themes.php:1110 +#: wp-admin/theme-install.php:371 +msgctxt "theme" +msgid "Cannot Activate %s" +msgstr "%s kann nicht aktiviert werden" + +#: wp-admin/themes.php:296 wp-admin/network/themes.php:402 +msgid "Theme will no longer be auto-updated." +msgstr "Das Theme wird nicht mehr automatisch aktualisiert." + +#: wp-admin/themes.php:292 wp-admin/network/themes.php:393 +msgid "Theme will be auto-updated." +msgstr "Das Theme wird automatisch aktualisiert." + +#: wp-admin/themes.php:190 wp-admin/network/themes.php:313 +msgid "Auto-updates can be enabled or disabled for each individual theme. Themes with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Automatische Aktualisierungen können für jedes einzelne Theme aktiviert oder deaktiviert werden. Themes mit aktivierten automatischen Aktualisierungen werden das voraussichtliche Datum der nächsten automatischen Aktualisierung anzeigen. Automatische Aktualisierungen hängen vom WP-Cron-Aufgabenplanungssystem ab." + +#: wp-admin/themes.php:106 +msgid "Sorry, you are not allowed to disable themes automatic updates." +msgstr "Du bist leider nicht berechtigt, automatische Aktualisierungen für Themes zu deaktivieren." + +#: wp-admin/plugins.php:449 +msgid "Sorry, you are not allowed to manage plugins automatic updates." +msgstr "Du bist leider nicht berechtigt, automatische Aktualisierungen für Plugins zu verwalten." + +#: wp-admin/post.php:319 wp-admin/edit.php:165 +msgid "Error in deleting the item." +msgstr "Fehler beim Löschen des Elements." + +#: wp-admin/post.php:315 wp-admin/upload.php:195 wp-admin/edit.php:161 +msgid "Error in deleting the attachment." +msgstr "Fehler beim Löschen des Anhangs." + +#: wp-admin/post.php:291 wp-admin/upload.php:180 wp-admin/edit.php:143 +msgid "Error in restoring the item from Trash." +msgstr "Fehler beim Wiederherstellen des Elements aus dem Papierkorb." + +#: wp-admin/post.php:261 wp-admin/upload.php:159 wp-admin/edit.php:120 +msgid "Error in moving the item to Trash." +msgstr "Fehler beim Verschieben des Elements in den Papierkorb." + +#: wp-admin/plugins.php:712 +msgid "Selected plugins will no longer be auto-updated." +msgstr "Die ausgewählten Plugins werden nicht mehr automatisch aktualisiert." + +#: wp-admin/plugins.php:710 +msgid "Selected plugins will be auto-updated." +msgstr "Die ausgewählten Plugins werden automatisch aktualisiert." + +#: wp-admin/plugins.php:708 +msgid "Plugin will no longer be auto-updated." +msgstr "Das Plugin wird nicht mehr automatisch aktualisiert." + +#: wp-admin/plugins.php:706 +msgid "Plugin will be auto-updated." +msgstr "Das Plugin wird automatisch aktualisiert." + +#: wp-admin/plugins.php:576 +msgid "Auto-updates can be enabled or disabled for each individual plugin. Plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Automatische Aktualisierungen können für jedes einzelne Plugin aktiviert oder deaktiviert werden. Plugins mit aktivierten automatischen Aktualisierungen werden das voraussichtliche Datum der nächsten automatischen Aktualisierung anzeigen. Automatische Aktualisierungen hängen vom WP-Cron-Aufgabenplanungssystem ab." + +#: wp-admin/plugins.php:453 +msgid "Please connect to your network admin to manage plugins automatic updates." +msgstr "Bitte begib dich zu deiner Netzwerkadministration, um automatische Plugin-Aktualisierungen zu verwalten." + +#. translators: %s: Human-readable time interval. +#: wp-admin/index.php:137 +msgid "The admin email verification page will reappear after %s." +msgstr "Die Seite zur Verifizierung der E-Mail-Adresse des Administrators wird nach %s wieder angezeigt." + +#: wp-admin/update-core.php:840 wp-admin/plugins.php:582 +#: wp-admin/themes.php:201 wp-admin/network/themes.php:318 +msgid "Learn more: Auto-updates documentation" +msgstr "Erfahre mehr in der Dokumentation zu automatischen Aktualisierungen (engl.)" + +#: wp-admin/includes/class-wp-debug-data.php:1144 wp-admin/update-core.php:835 +#: wp-admin/plugins.php:574 wp-admin/themes.php:196 +#: wp-admin/network/themes.php:311 +msgid "Auto-updates" +msgstr "Automatische Aktualisierungen" + +#: wp-admin/update-core.php:830 wp-admin/plugins.php:578 +#: wp-admin/themes.php:191 wp-admin/network/themes.php:314 +msgid "Please note: Third-party themes and plugins, or custom code, may override WordPress scheduling." +msgstr "Bitte beachte: Themes und Plugins von Drittanbietern oder individueller Code überschreiben möglicherweise die Planungen von WordPress." + +#: wp-admin/update-core.php:829 +msgid "Auto-updates can be enabled or disabled for each individual theme or plugin. Themes or plugins with auto-updates enabled will display the estimated date of the next auto-update. Auto-updates depends on the WP-Cron task scheduling system." +msgstr "Automatische Aktualisierungen können für jedes einzelne Theme oder Plugin aktiviert oder deaktiviert werden. Themes und Plugins mit aktivierten automatischen Aktualisierungen werden das voraussichtliche Datum der nächsten automatischen Aktualisierung anzeigen. Automatische Aktualisierungen hängen vom WP-Cron-Aufgabenplanungssystem ab." + +#. translators: 1: Documentation on WordPress backups, 2: Documentation on +#. updating WordPress. +#: wp-admin/update-core.php:252 +msgid "Important: Before updating, please back up your database and files. For help with updates, visit the Updating WordPress documentation page." +msgstr "Wichtig: Vor der Aktualisierung bitte deine Datenbank und Dateien sichern (engl.). Hilfe bei Aktualisierungen erhältst du auf der Dokumentationsseite WordPress aktualisieren (engl.)." + +#: wp-admin/customize.php:195 wp-admin/themes.php:551 wp-admin/themes.php:897 +#: wp-admin/themes.php:1113 wp-admin/theme-install.php:374 +#: wp-admin/theme-install.php:421 +msgctxt "theme" +msgid "Cannot Activate" +msgstr "Aktivierung nicht möglich" + +#: wp-admin/comment.php:46 +msgid "You can’t edit this comment because the associated post is in the Trash. Please restore the post first, then try again." +msgstr "Du kannst diesen Kommentar nicht bearbeiten, da der zugehörige Beitrag im Papierkorb ist. Bitte zuerst diesen Beitrag wiederherstellen und dann nochmal versuchen." + +#: wp-admin/async-upload.php:58 +msgctxt "media item" +msgid "Success" +msgstr "Erfolg" + +#. translators: 1: Current WordPress version, 2: Plugin name, 3: Required +#. WordPress version. +#: wp-admin/includes/plugin.php:1194 +msgctxt "plugin" +msgid "Error: Current WordPress version (%1$s) does not meet minimum requirements for %2$s. The plugin requires WordPress %3$s." +msgstr "Fehler: Die aktuelle WordPress-Version (%1$s) entspricht nicht den Mindestanforderungen für %2$s. Das Plugin benötigt WordPress %3$s." + +#. translators: 1: Current PHP version, 2: Plugin name, 3: Required PHP +#. version. +#: wp-admin/includes/plugin.php:1183 +msgctxt "plugin" +msgid "Error: Current PHP version (%1$s) does not meet minimum requirements for %2$s. The plugin requires PHP %3$s." +msgstr "Fehler: Die aktuelle PHP-Version (%1$s) entspricht nicht den Mindestanforderungen für %2$s. Das Plugin benötigt PHP %3$s." + +#. translators: 1: Current WordPress version, 2: Current PHP version, 3: Plugin +#. name, 4: Required WordPress version, 5: Required PHP version. +#: wp-admin/includes/plugin.php:1170 +msgctxt "plugin" +msgid "Error: Current versions of WordPress (%1$s) and PHP (%2$s) do not meet minimum requirements for %3$s. The plugin requires WordPress %4$s and PHP %5$s." +msgstr "Fehler: Die aktuellen Versionen von WordPress (%1$s) und PHP (%2$s) entsprechen nicht den Mindestanforderungen für %3$s. Das Plugin benötigt WordPress %4$s und PHP %5$s." + +#: wp-admin/includes/ajax-actions.php:5349 +msgid "Invalid data. The item does not exist." +msgstr "Ungültige Daten. Das Element existiert nicht." + +#: wp-admin/includes/ajax-actions.php:5320 +#: wp-admin/includes/ajax-actions.php:5345 +msgid "Invalid data. Unknown type." +msgstr "Ungültige Daten. Unbekannter Typ." + +#: wp-admin/includes/ajax-actions.php:5315 +msgid "Invalid data. Unknown state." +msgstr "Ungültige Daten. Unbekannter Status." + +#: wp-admin/includes/ajax-actions.php:5309 +msgid "Invalid data. No selected item." +msgstr "Ungültige Daten. Kein ausgewähltes Element." + +#: wp-admin/includes/ajax-actions.php:1305 +#: wp-admin/includes/ajax-actions.php:1407 +msgid "Error: Please type your comment text." +msgstr "Fehler: Bitte gib deinen Kommentar-Text ein." + +#: wp-admin/includes/ajax-actions.php:1275 +msgid "Error: You can’t reply to a comment on a draft post." +msgstr "Fehler: Du antwortest auf einen Kommentar zu einem Entwurf." + +#. translators: %s: Themes screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1149 +msgid "To manage themes on your site, visit the Themes page: %s" +msgstr "Um Themes auf deiner Website zu verwalten, rufe die Themes-Seite auf: %s" + +#. translators: %s: Plugins screen URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1140 +msgid "To manage plugins on your site, visit the Plugins page: %s" +msgstr "Um Plugins auf deiner Website zu verwalten, rufe die Plugins-Seite auf: %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1120 +msgid "These themes are now up to date:" +msgstr "Diese Themes sind jetzt auf dem neuesten Stand:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1102 +msgid "These plugins are now up to date:" +msgstr "Diese Plugins sind jetzt auf dem neuesten Stand:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1079 +msgid "These themes failed to update:" +msgstr "Diese Themes konnten nicht aktualisiert werden:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1061 +msgid "These plugins failed to update:" +msgstr "Diese Plugins konnten nicht aktualisiert werden:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1056 +msgid "Please check your site now. It’s possible that everything is working. If there are updates available, you should update." +msgstr "Bitte überprüfe jetzt deine Website. Es ist möglich, dass alles funktioniert. Wenn Updates verfügbar sind, solltest du aktualisieren." + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1046 +msgid "Howdy! Themes failed to update on your site at %s." +msgstr "Hallo! Einige Themes auf deiner Website %s konnten nicht aktualisiert werden." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1043 +msgid "[%s] Some themes have failed to update" +msgstr "[%s] Einige Themes wurden nicht aktualisiert" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1038 +msgid "Howdy! Plugins failed to update on your site at %s." +msgstr "Hallo! Einige Plugins auf deiner Website %s konnten nicht aktualisiert werden." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1035 +msgid "[%s] Some plugins have failed to update" +msgstr "[%s] Einige Plugins wurden nicht aktualisiert" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1030 +msgid "Howdy! Plugins and themes failed to update on your site at %s." +msgstr "Hallo! Einige Plugins und Themes auf deiner Website %s konnten nicht aktualisiert werden." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1027 +msgid "[%s] Some plugins and themes have failed to update" +msgstr "[%s] Einige Plugins und Themes wurden nicht aktualisiert" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1017 +msgid "Howdy! Some themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hallo! Einige Themes wurden automatisch auf die jeweils neuesten Versionen auf deiner Website %s aktualisiert. Es sind keine weiteren Aktionen deinerseits erforderlich." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1014 +msgid "[%s] Some themes were automatically updated" +msgstr "[%s] Einige Themes wurden automatisch aktualisiert" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1009 +msgid "Howdy! Some plugins have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hallo! Einige Plugins auf deiner Website %s wurden automatisch auf ihre neueste Version aktualisiert. Es ist keine weitere Aktion deinerseits erforderlich." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:1006 +msgid "[%s] Some plugins were automatically updated" +msgstr "[%s] Einige Plugins wurden automatisch aktualisiert" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1001 +msgid "Howdy! Some plugins and themes have automatically updated to their latest versions on your site at %s. No further action is needed on your part." +msgstr "Hallo! Einige Plugins und Themes auf deiner Website %s wurden automatisch auf ihre neueste Version aktualisiert. Es ist keine weitere Aktion deinerseits erforderlich." + +#. translators: %s: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:998 +msgid "[%s] Some plugins and themes have automatically updated" +msgstr "[%s] Einige Plugins und Themes wurden automatisch aktualisiert" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1354 +msgid "Move %s box down" +msgstr "Box „%s“ nach unten verschieben" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1344 +msgid "Move %s box up" +msgstr "Box „%s“ nach oben verschieben" + +#: wp-admin/includes/class-wp-comments-list-table.php:368 +msgctxt "comment" +msgid "Not spam" +msgstr "Kein Spam" + +#: wp-admin/includes/class-wp-site-health.php:2114 +msgid "PHP Sessions" +msgstr "PHP-Sitzungen" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1127 +msgid "A PHP session was created by a %1$s function call. This interferes with REST API and loopback requests. The session should be closed by %2$s before making any HTTP requests." +msgstr "Eine PHP-Sitzung wurde durch einen %1$s-Funktionsaufruf erzeugt. Dies beeinträchtigt die REST-API- und Loopback-Anfragen. Die Sitzung sollte von %2$s geschlossen werden, bevor irgendwelche HTTP-Anfragen erfolgen." + +#: wp-admin/includes/class-wp-site-health.php:1121 +msgid "An active PHP session was detected" +msgstr "Es wurde eine aktive PHP-Sitzung erkannt" + +#. translators: 1: session_start(), 2: session_write_close() +#: wp-admin/includes/class-wp-site-health.php:1110 +msgid "PHP sessions created by a %1$s function call may interfere with REST API and loopback requests. An active session should be closed by %2$s before making any HTTP requests." +msgstr "PHP-Sitzungen, die durch einen %1$s-Funktionsaufruf erzeugt wurden, können die REST-API- und Loopback-Anfragen beeinträchtigen. Eine aktive Sitzung sollte von %2$s geschlossen werden, bevor irgendwelche HTTP-Anfragen erfolgen." + +#: wp-admin/includes/class-wp-site-health.php:1100 +msgid "No PHP sessions detected" +msgstr "Es wurden keine PHP-Sitzungen erkannt" + +#: wp-admin/includes/class-wp-screen.php:1331 +#: wp-admin/includes/class-wp-list-table.php:170 +msgid "Extended view" +msgstr "Erweiterte Ansicht" + +#: wp-admin/includes/class-wp-screen.php:1327 +#: wp-admin/includes/class-wp-list-table.php:169 +msgid "Compact view" +msgstr "Kompakte Ansicht" + +#: wp-admin/includes/user.php:177 +msgid "Error: Passwords don’t match. Please enter the same password in both password fields." +msgstr "Fehler: Die Passwörter stimmen nicht überein. Bitte gib in beide Passwortfelder dasselbe Passwort ein." + +#: wp-admin/includes/post.php:2213 +msgctxt "block category" +msgid "Reusable Blocks" +msgstr "Wiederverwendbare Blöcke" + +#: wp-admin/includes/post.php:2208 +msgctxt "block category" +msgid "Embeds" +msgstr "Einbettungen" + +#: wp-admin/includes/post.php:2203 +msgctxt "block category" +msgid "Widgets" +msgstr "Widgets" + +#: wp-admin/includes/post.php:2198 +msgctxt "block category" +msgid "Design" +msgstr "Design" + +#: wp-admin/includes/post.php:2193 +msgctxt "block category" +msgid "Media" +msgstr "Medien" + +#: wp-admin/includes/post.php:2188 +msgctxt "block category" +msgid "Text" +msgstr "Text" + +#: wp-admin/includes/meta-boxes.php:353 wp-admin/includes/meta-boxes.php:354 +#: wp-admin/js/post.js:758 +msgctxt "post action/button label" +msgid "Schedule" +msgstr "Planen" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:281 +#: wp-admin/js/updates.js:2602 +msgid "No plugins found. Try a different search." +msgstr "Es wurden keine Plugins gefunden. Versuche es bitte mit einem anderen Suchbegriff." + +#. translators: %s: Time until the next update. +#: wp-admin/includes/update.php:1076 +msgid "Automatic update scheduled in %s." +msgstr "Automatische Aktualisierung geplant in %s." + +#. translators: %s: Duration that WP-Cron has been overdue. +#: wp-admin/includes/update.php:1070 +msgid "Automatic update overdue by %s. There may be a problem with WP-Cron." +msgstr "Automatische Aktualisierung seit %s überfällig. Es gibt möglicherweise ein Problem mit WP-Cron." + +#: wp-admin/includes/update.php:1060 +msgid "Automatic update not scheduled. There may be a problem with WP-Cron." +msgstr "Automatische Aktualisierung nicht geplant. Es gibt möglicherweise ein Problem mit WP-Cron." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:301 +msgid "You are updating a plugin. Be sure to back up your database and files first." +msgstr "Du aktualisierst ein Plugin. Stelle sicher, dass du zuerst deine Datenbank und Dateien sicherst." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-plugin-installer-skin.php:295 +msgid "You are uploading an older version of a current plugin. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Du lädst eine ältere Version eines bestehenden Plugins hoch. Du kannst die ältere Version weiterhin installieren, aber stelle sicher, dass du zuerst deine Datenbank und Dateien sicherst." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded plugin. +#: wp-admin/includes/class-plugin-upgrader.php:461 +#: wp-admin/includes/class-plugin-installer-skin.php:280 +msgid "Your WordPress version is %1$s, however the uploaded plugin requires %2$s." +msgstr "Deine WordPress-Version ist %1$s, das hochgeladene Plugin erfordert jedoch %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. plugin. +#: wp-admin/includes/class-plugin-upgrader.php:450 +#: wp-admin/includes/class-plugin-installer-skin.php:268 +msgid "The PHP version on your server is %1$s, however the uploaded plugin requires %2$s." +msgstr "Die PHP-Version auf dem Server ist %1$s, das hochgeladene Plugin erfordert jedoch %2$s." + +#: wp-admin/includes/class-plugin-installer-skin.php:259 +msgid "The plugin cannot be updated due to the following:" +msgstr "Das Plugin kann aus den folgenden Gründen nicht aktualisiert werden:" + +#: wp-admin/includes/class-plugin-installer-skin.php:216 +msgid "Plugin name" +msgstr "Plugin-Name" + +#: wp-admin/includes/class-theme-upgrader.php:107 +msgid "Theme downgraded successfully." +msgstr "Downgrade des Themes erfolgreich." + +#: wp-admin/includes/class-theme-upgrader.php:106 +msgid "Theme downgrade failed." +msgstr "Downgrade des Themes fehlgeschlagen." + +#: wp-admin/includes/class-theme-upgrader.php:105 +msgid "Downgrading the theme…" +msgstr "Downgrade des Themes…" + +#: wp-admin/includes/class-theme-upgrader.php:99 +msgid "Updating the theme…" +msgstr "Aktualisierung des Themes…" + +#. translators: %s: Theme error. +#: wp-admin/includes/class-theme-upgrader.php:95 +msgid "The current theme has the following error: \"%s\"." +msgstr "Das aktuelle Theme hat folgenden Fehler: „%s“." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1113 +#: wp-admin/themes.php:689 wp-admin/js/updates.js:2909 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:792 +msgid "Enable auto-updates" +msgstr "Automatische Aktualisierungen aktivieren" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1109 +#: wp-admin/themes.php:685 wp-admin/js/updates.js:2898 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:788 +msgid "Disable auto-updates" +msgstr "Automatische Aktualisierungen deaktivieren" + +#: wp-admin/includes/class-wp-plugins-list-table.php:623 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:489 +msgid "Disable Auto-updates" +msgstr "Automatische Aktualisierungen deaktivieren" + +#: wp-admin/includes/class-wp-plugins-list-table.php:620 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:485 +msgid "Enable Auto-updates" +msgstr "Automatische Aktualisierungen aktivieren" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:571 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:432 +msgid "Auto-updates Disabled (%s)" +msgid_plural "Auto-updates Disabled (%s)" +msgstr[0] "Automatische Aktualisierung deaktiviert (%s)" +msgstr[1] "Automatische Aktualisierungen deaktiviert (%s)" + +#. translators: %s: Number of plugins. +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-plugins-list-table.php:563 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:424 +msgid "Auto-updates Enabled (%s)" +msgid_plural "Auto-updates Enabled (%s)" +msgstr[0] "Automatische Aktualisierung aktiviert (%s)" +msgstr[1] "Automatische Aktualisierungen aktiviert (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:468 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:336 +msgid "Automatic Updates" +msgstr "Automatische Aktualisierungen" + +#: wp-admin/includes/class-wp-plugins-list-table.php:420 +#: wp-admin/plugin-editor.php:31 wp-admin/js/updates.js:1019 +msgid "No plugins are currently available." +msgstr "Momentan sind keine Plugins verfügbar." + +#: wp-admin/includes/image-edit.php:144 +msgid "Restore original image" +msgstr "Originalbild wiederherstellen" + +#: wp-admin/includes/class-theme-installer-skin.php:377 +#: wp-admin/includes/class-plugin-installer-skin.php:342 +msgid "The uploaded file has expired. Please go back and upload it again." +msgstr "Die hochgeladene Datei ist abgelaufen. Bitte gehe zurück und lade sie erneut hoch." + +#: wp-admin/includes/class-theme-installer-skin.php:359 +#: wp-admin/includes/class-plugin-installer-skin.php:324 +msgid "Cancel and go back" +msgstr "Abbrechen und zurück" + +#: wp-admin/includes/class-theme-installer-skin.php:348 +#: wp-admin/includes/class-plugin-installer-skin.php:313 +msgid "Replace current with uploaded" +msgstr "Ersetze bestehendes mit hochgeladenem" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:336 +msgid "You are updating a theme. Be sure to back up your database and files first." +msgstr "Du aktualisierst ein Theme. Stelle sicher, dass du zuerst deine Datenbank und Dateien sicherst." + +#: wp-admin/includes/class-theme-installer-skin.php:331 +#: wp-admin/includes/class-theme-installer-skin.php:337 +#: wp-admin/includes/class-plugin-installer-skin.php:296 +#: wp-admin/includes/class-plugin-installer-skin.php:302 +#: wp-admin/update-core.php:253 +msgid "https://wordpress.org/support/article/wordpress-backups/" +msgstr "https://wordpress.org/support/article/wordpress-backups/" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/class-theme-installer-skin.php:330 +msgid "You are uploading an older version of a current theme. You can continue to install the older version, but be sure to back up your database and files first." +msgstr "Du lädst eine ältere Version eines bestehenden Themes hoch. Du kannst die ältere Version weiterhin installieren, aber stelle sicher, dass du zuerst deine Datenbank und Dateien sicherst." + +#. translators: 1: Current WordPress version, 2: Version required by the +#. uploaded theme. +#: wp-admin/includes/class-theme-installer-skin.php:315 +#: wp-admin/includes/class-theme-upgrader.php:608 +msgid "Your WordPress version is %1$s, however the uploaded theme requires %2$s." +msgstr "Deine WordPress-Version ist %1$s, das hochgeladene Theme erfordert jedoch %2$s." + +#. translators: 1: Current PHP version, 2: Version required by the uploaded +#. theme. +#: wp-admin/includes/class-theme-installer-skin.php:303 +#: wp-admin/includes/class-theme-upgrader.php:598 +msgid "The PHP version on your server is %1$s, however the uploaded theme requires %2$s." +msgstr "Die PHP-Version auf dem Server ist %1$s, das hochgeladene Theme erfordert jedoch %2$s." + +#: wp-admin/includes/class-theme-installer-skin.php:294 +msgid "The theme cannot be updated due to the following:" +msgstr "Das Theme kann aus den folgenden Gründen nicht aktualisiert werden:" + +#: wp-admin/includes/class-theme-installer-skin.php:270 +msgid "(not found)" +msgstr "(nicht gefunden)" + +#: wp-admin/includes/class-theme-installer-skin.php:248 +#: wp-admin/includes/class-plugin-installer-skin.php:225 +msgid "Uploaded" +msgstr "Hochgeladen" + +#: wp-admin/includes/class-theme-installer-skin.php:243 +#: wp-admin/includes/class-plugin-installer-skin.php:220 +msgid "Required PHP version" +msgstr "Erforderliche PHP-Version" + +#: wp-admin/includes/class-theme-installer-skin.php:242 +#: wp-admin/includes/class-plugin-installer-skin.php:219 +msgid "Required WordPress version" +msgstr "Erforderliche WordPress-Version" + +#: wp-admin/includes/class-theme-installer-skin.php:239 +msgid "Theme name" +msgstr "Theme-Name" + +#: wp-admin/includes/theme.php:1008 wp-admin/theme-install.php:395 +#: wp-admin/theme-install.php:427 +msgctxt "theme" +msgid "Cannot Install" +msgstr "Installation nicht möglich" + +#: wp-admin/includes/theme.php:314 +msgid "Full Site Editing" +msgstr "Website-Bearbeitung" + +#: wp-admin/includes/theme.php:304 +msgid "Block Editor Patterns" +msgstr "Block-Editor-Vorlagen" + +#: wp-admin/includes/class-plugin-upgrader.php:98 +msgid "Plugin downgraded successfully." +msgstr "Downgrade des Plugins erfolgreich." + +#: wp-admin/includes/class-plugin-upgrader.php:97 +msgid "Plugin downgrade failed." +msgstr "Downgrade des Plugins fehlgeschlagen." + +#: wp-admin/includes/class-plugin-upgrader.php:96 +msgid "Downgrading the plugin…" +msgstr "Downgrade des Plugins…" + +#: wp-admin/includes/class-plugin-upgrader.php:90 +msgid "Updating the plugin…" +msgstr "Aktualisierung des Plugins…" + +#: wp-admin/includes/class-plugin-upgrader.php:81 +msgid "Could not remove the current plugin." +msgstr "Das aktuell bestehende Plugin konnte nicht entfernt werden." + +#: wp-admin/includes/class-plugin-upgrader.php:80 +msgid "Removing the current plugin…" +msgstr "Entferne das bestehende Plugin…" + +#: wp-admin/includes/class-wp-debug-data.php:1232 +msgid "Auto-update" +msgstr "Automatische Aktualisierung" + +#: wp-admin/includes/class-wp-debug-data.php:993 +#: wp-admin/includes/class-wp-debug-data.php:1315 +#: wp-admin/includes/class-wp-plugins-list-table.php:1100 +#: wp-admin/themes.php:680 wp-admin/js/updates.js:2911 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:779 +msgid "Auto-updates disabled" +msgstr "Automatische Aktualisierungen deaktiviert" + +#: wp-admin/includes/class-wp-debug-data.php:991 +#: wp-admin/includes/class-wp-debug-data.php:1313 +#: wp-admin/includes/class-wp-plugins-list-table.php:1098 +#: wp-admin/themes.php:682 wp-admin/js/updates.js:2900 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:777 +msgid "Auto-updates enabled" +msgstr "Automatische Aktualisierung aktiviert" + +#: wp-admin/includes/class-wp-debug-data.php:771 +msgid "Are pretty permalinks supported?" +msgstr "Werden sprechende Permalinks unterstützt?" + +#: wp-admin/includes/class-wp-debug-data.php:710 +msgid "PHP memory limit (only for admin screens)" +msgstr "PHP-Speicher-Limit (nur für Administrator-Ansichten)" + +#: wp-admin/includes/class-wp-debug-data.php:114 +msgid "Is this site discouraging search engines?" +msgstr "Ist diese Website für Suchmaschinen ausgeschlossen?" + +#: wp-admin/includes/privacy-tools.php:282 +#: wp-admin/includes/class-wp-privacy-policy-content.php:427 +msgid "Return to top" +msgstr "Zurück nach oben" + +#: wp-admin/includes/theme.php:329 +msgid "Wide Blocks" +msgstr "Breite Blöcke" + +#: wp-admin/includes/theme.php:305 +msgid "Block Editor Styles" +msgstr "Block-Editor-Stile" + +#: wp-admin/includes/privacy-tools.php:507 +msgid "Unable to add data to JSON file." +msgstr "Kann keine Daten zur JSON-Datei hinzufügen." + +#: wp-admin/edit-form-comment.php:108 +msgid "Spam" +msgstr "Spam" + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:401 +msgid "Unable to write to %s file." +msgstr "Kann nicht in die Datei %s schreiben." + +#. translators: %s: WordPress 5.5 Field Guide link. +#: wp-admin/about.php:293 +msgid "There’s a lot more for developers to love in WordPress 5.5. To discover more and learn how to make these changes shine on your sites, themes, plugins and more, check the WordPress 5.5 Field Guide." +msgstr "In WordPress 5.5 gibt es für die technische Erweiterung von WordPress noch viel mehr. Um mehr zu entdecken und zu erfahren, wie du diese Änderungen auf deinen Websites, in deinen Themes, Plugins und mehr zur Geltung bringen kannst, lies den WordPress-5.5-Field-Guide (engl.)." + +#. translators: %s: The options page name. +#: wp-admin/options.php:240 +msgid "Error: Options page %s not found in the allowed options list." +msgstr "Fehler: Die Optionen-Seite %s wurde nicht in der Liste der erlaubten Optionen gefunden." + +#: wp-admin/themes.php:303 wp-admin/import.php:64 wp-admin/users.php:277 +#: wp-admin/includes/network.php:116 wp-admin/includes/network.php:142 +msgid "Error:" +msgstr "Fehler:" + +#: wp-admin/themes.php:253 wp-admin/network/themes.php:350 +#: wp-admin/network/menu.php:81 +msgctxt "theme" +msgid "Add New" +msgstr "Theme hinzufügen" + +#. translators: %s: web.config +#. translators: %s: .htaccess +#: wp-admin/options-permalink.php:156 wp-admin/options-permalink.php:169 +msgid "You should update your %s file now." +msgstr "Du solltest jetzt deine %s-Datei aktualisieren." + +#: wp-admin/update-core.php:164 +msgid "This localized version contains both the translation and various other localization fixes." +msgstr "Diese lokalisierte Version beinhaltet sowohl die Übersetzung als auch verschiedene Fehlerbehebungen von Lokalisierungen." + +#. translators: 1: Number of issues. 2: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:1851 +msgid "Take a look at the %1$d item on the Site Health screen." +msgid_plural "Take a look at the %1$d items on the Site Health screen." +msgstr[0] "Wirf einen Blick auf %1$d Eintrag der Seite Website-Zustand." +msgstr[1] "Wirf einen Blick auf die %1$d Einträge der Seite Website-Zustand." + +#: wp-admin/includes/dashboard.php:1841 +msgid "Your site’s health is looking good, but there are still some things you can do to improve its performance and security." +msgstr "Deine Website ist in Ordnung, aber es gibt dennoch einige Dinge, die du tun kannst, um deren Leistung und Sicherheit zu verbessern." + +#: wp-admin/includes/dashboard.php:1839 +msgid "Great job! Your site currently passes all site health checks." +msgstr "Hervorragende Arbeit! Deine Website besteht derzeit alle Tests zum Website-Zustand." + +#: wp-admin/includes/dashboard.php:1837 +msgid "Your site has critical issues that should be addressed as soon as possible to improve its performance and security." +msgstr "Deine Website weist kritische Probleme auf, um die du dich so schnell wie möglich kümmern solltest, damit die Leistung und Sicherheit verbessert werden." + +#. translators: %s: URL to Site Health screen. +#: wp-admin/includes/dashboard.php:1829 +msgid "Site health checks will automatically run periodically to gather information about your site. You can also visit the Site Health screen to gather information about your site now." +msgstr "In regelmäßigen Abständen werden automatisch Tests zum Website-Zustand durchgeführt, um Informationen über deine Website zu sammeln. Du kannst auch die Seite Website-Zustand besuchen, um jetzt Informationen über deine Website zu sammeln." + +#: wp-admin/includes/dashboard.php:1817 +msgid "No information yet…" +msgstr "Noch keine Information …" + +#. translators: 1: upload_max_filesize, 2: php.ini +#: wp-admin/includes/file.php:787 +msgid "The uploaded file exceeds the %1$s directive in %2$s." +msgstr "Die hochgeladene Datei übersteigt die Anweisung %1$s in der %2$s." + +#: wp-admin/includes/class-wp-comments-list-table.php:221 +msgid "No comments found in Trash." +msgstr "Keine Kommentare im Papierkorb gefunden." + +#. translators: 1: php.ini, 2: post_max_size, 3: upload_max_filesize +#: wp-admin/includes/import.php:87 wp-admin/includes/file.php:836 +msgid "File is empty. Please upload something more substantial. This error could also be caused by uploads being disabled in your %1$s file or by %2$s being defined as smaller than %3$s in %1$s." +msgstr "Die Datei ist leer. Bitte lade etwas Größeres hoch. Dieser Fehler kann auch dadurch verursacht werden, dass Uploads in deiner %1$s-Datei deaktiviert sind oder dass in der %1$s-Datei der Wert in %2$s kleiner als in %3$s definiert ist." + +#: wp-admin/includes/class-wp-site-health.php:2580 +msgid "A test is unavailable" +msgstr "Ein Test ist nicht verfügbar" + +#. translators: 1: The WordPress error message. 2: The WordPress error code. +#: wp-admin/includes/class-wp-site-health.php:1955 +#: wp-admin/includes/class-wp-site-health.php:2467 +msgid "Error: %1$s (%2$s)" +msgstr "Fehler: %1$s (%2$s)" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:773 +msgid "Your site is running an outdated version of PHP (%s), which requires an update" +msgstr "Auf deiner Website läuft eine veraltete Version von PHP (%s), die eine Aktualisierung erfordert" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:762 +msgid "Your site is running an older version of PHP (%s), which should be updated" +msgstr "Auf deiner Website läuft eine ältere Version von PHP (%s), die aktualisiert werden sollte" + +#. translators: %s: The server PHP version. +#: wp-admin/includes/class-wp-site-health.php:750 +msgid "Your site is running an older version of PHP (%s)" +msgstr "Auf deiner Website läuft eine ältere Version von PHP (%s)" + +#. translators: %s: The current PHP version. +#: wp-admin/includes/class-wp-site-health.php:715 +msgid "Your site is running the current version of PHP (%s)" +msgstr "Auf deiner Website läuft die aktuelle Version von PHP (%s)" + +#: wp-admin/includes/class-wp-media-list-table.php:247 +msgid "No media files found in Trash." +msgstr "Keine Mediendateien im Papierkorb gefunden." + +#. translators: Date string for upcoming events. 1: Starting month, 2: Starting +#. day, 3: Ending month, 4: Ending day, 5: Year. +#: wp-admin/includes/class-wp-community-events.php:405 +msgid "%1$s %2$d – %3$s %4$d, %5$d" +msgstr "%2$d. %1$s – %4$d. %3$s %5$d" + +#. translators: Upcoming events year format. See https://www.php.net/date +#: wp-admin/includes/class-wp-community-events.php:400 +#: wp-admin/includes/class-wp-community-events.php:410 +msgctxt "upcoming events year format" +msgid "Y" +msgstr "Y" + +#. translators: Upcoming events day format. See https://www.php.net/date +#: wp-admin/includes/class-wp-community-events.php:397 +#: wp-admin/includes/class-wp-community-events.php:398 +#: wp-admin/includes/class-wp-community-events.php:407 +#: wp-admin/includes/class-wp-community-events.php:409 +msgctxt "upcoming events day format" +msgid "j" +msgstr "j" + +#. translators: Date string for upcoming events. 1: Month, 2: Starting day, 3: +#. Ending day, 4: Year. +#: wp-admin/includes/class-wp-community-events.php:394 +msgid "%1$s %2$d–%3$d, %4$d" +msgstr "%2$d.–%3$d. %1$s %4$d" + +#. translators: Upcoming events month format. See https://www.php.net/date +#: wp-admin/includes/class-wp-community-events.php:388 +#: wp-admin/includes/class-wp-community-events.php:389 +msgctxt "upcoming events month format" +msgid "F" +msgstr "F" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:214 +msgid "Resend Confirmation Requests" +msgstr "Bestätigungsanfragen erneut senden" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:213 +msgid "Delete Requests" +msgstr "Anfragen löschen" + +#: wp-admin/includes/class-wp-debug-data.php:859 +msgid "Table prefix" +msgstr "Tabellenpräfix" + +#: wp-admin/includes/privacy-tools.php:398 +msgid "Unable to open export file (JSON report) for writing." +msgstr "Kann Export-Datei (JSON-Bericht) nicht zum Schreiben öffnen." + +#: wp-admin/includes/class-wp-site-health.php:2110 +msgid "PHP Default Timezone" +msgstr "PHP-Standardzeitzone" + +#. translators: %s: date_default_timezone_set() +#: wp-admin/includes/class-wp-site-health.php:1082 +msgid "PHP default timezone was changed after WordPress loading by a %s function call. This interferes with correct calculations of dates and times." +msgstr "Die PHP-Standardzeitzone wurde nach dem Laden von WordPress durch einen %s-Funktionsaufruf geändert. Dies beeinträchtigt korrekte Berechnungen von Datum und Uhrzeit." + +#: wp-admin/includes/class-wp-site-health.php:1076 +msgid "PHP default timezone is invalid" +msgstr "PHP-Standardzeitzone ist ungültig" + +#: wp-admin/includes/class-wp-site-health.php:1067 +msgid "PHP default timezone was configured by WordPress on loading. This is necessary for correct calculations of dates and times." +msgstr "Die PHP-Standardzeitzone wurde von WordPress beim Laden konfiguriert. Dies ist notwendig für korrekte Berechnungen von Datum und Uhrzeit." + +#: wp-admin/includes/class-wp-site-health.php:1059 +msgid "PHP default timezone is valid" +msgstr "PHP-Standardzeitzone ist gültig" + +#. translators: %s: add_submenu_page() +#: wp-admin/includes/plugin.php:1432 +msgid "The seventh parameter passed to %s should be an integer representing menu position." +msgstr "Der siebte Parameter, der an %s übergeben wird, sollte ein ganzzahliger Wert sein, der eine Menüposition repräsentiert." + +#. translators: 1: WordPress version number, 2: The PHP extension name needed. +#: wp-admin/includes/update-core.php:1024 +msgid "The update cannot be installed because WordPress %1$s requires the %2$s PHP extension." +msgstr "Das Update kann nicht installiert werden, weil WordPress %1$s die PHP-Erweiterung %2$s benötigt." + +#: wp-admin/includes/class-wp-site-health.php:1249 +msgid "UTF8MB4 is the character set WordPress prefers for database storage because it safely supports the widest set of characters and encodings, including Emoji, enabling better support for non-English languages." +msgstr "UTF8MB4 ist der Zeichensatz, den WordPress für die Datenbankspeicherung bevorzugt, da er die größte Anzahl von Zeichen und Kodierungen, einschließlich Emoji, sicher unterstützt und eine bessere Unterstützung für nicht-englische Sprachen bietet." + +#: wp-admin/privacy.php:51 +msgid "https://wordpress.org/about/stats/" +msgstr "https://de.wordpress.org/about/stats/" + +#: wp-admin/export.php:57 +msgid "Documentation on Export" +msgstr "Dokumentation zum Export (engl.)" + +#: wp-admin/plugin-install.php:109 +msgid "Documentation on Installing Plugins" +msgstr "Dokumentation zur Installation von Plugins (engl.)" + +#: wp-admin/edit.php:301 +msgid "Documentation on Managing Pages" +msgstr "Dokumentation zur Verwaltung von Seiten (engl.)" + +#: wp-admin/edit.php:276 +msgid "Documentation on Managing Posts" +msgstr "Dokumentation zur Verwaltung von Beiträgen (engl.)" + +#: wp-admin/options-discussion.php:31 +msgid "Documentation on Discussion Settings" +msgstr "Dokumentation zu Diskussionseinstellungen (engl.)" + +#: wp-admin/theme-install.php:131 +msgid "Documentation on Adding New Themes" +msgstr "Dokumentation über das Hinzufügen neuer Themes (engl.) " + +#: wp-admin/media-new.php:60 +msgid "Documentation on Uploading Media Files" +msgstr "Dokumentation zum Hochladen von Mediendateien (engl.)" + +#: wp-admin/users.php:75 +msgid "Descriptions of Roles and Capabilities" +msgstr "Beschreibungen von Rollen und Berechtigungen (engl.)" + +#: wp-admin/users.php:74 +msgid "Documentation on Managing Users" +msgstr "Dokumentation zur Benutzerverwaltung (engl.)" + +#: wp-admin/user-edit.php:323 +msgid "More information" +msgstr "Mehr Informationen (engl.)" + +#: wp-admin/user-edit.php:67 +msgid "Documentation on User Profiles" +msgstr "Dokumentation über Benutzerprofile (engl.)" + +#: wp-admin/options-media.php:37 +msgid "Documentation on Media Settings" +msgstr "Dokumentation zu den Medien-Einstellungen (engl.)" + +#: wp-admin/widgets.php:83 +msgid "Documentation on Widgets" +msgstr "Dokumentation über Widgets (engl.)" + +#: wp-admin/import.php:31 +msgid "Documentation on Import" +msgstr "Dokumentation beim Import (engl.)" + +#: wp-admin/tools.php:55 +msgid "Documentation on Tools" +msgstr "Dokumentation zu Werkzeugen (engl.)" + +#: wp-admin/options.php:351 +msgid "This page allows direct access to your site settings. You can break things here. Please be cautious!" +msgstr "Diese Seite ermöglicht den direkten Zugriff auf deine Website-Einstellungen. Du kannst hier Dinge zerstören. Bitte sei vorsichtig!" + +#. translators: %s: The option/setting. +#: wp-admin/options.php:299 +msgid "The %s setting is unregistered. Unregistered settings are deprecated. See https://developer.wordpress.org/plugins/settings/settings-api/" +msgstr "Die Einstellung %s ist nicht registriert. Nicht registrierte Einstellungen sind veraltet. Siehe https://developer.wordpress.org/plugins/settings/settings-api/" + +#: wp-admin/edit-form-advanced.php:378 +msgid "Format — Post Formats designate how your theme will display a specific post. For example, you could have a standard blog post with a title and paragraphs, or a short aside that omits the title and contains a short text blurb. Your theme could enable all or some of 10 possible formats. Learn more about each post format." +msgstr "Format – Die Beitragsformate geben an, wie dein Theme einen bestimmten Beitrag anzeigt. Zum Beispiel kannst du einen Standard-Blogbeitrag mit Titel und Absätzen haben, oder einen kurzen Beitrag, der den Titel auslässt und einen kurzen Textabschnitt enthält. Dein Theme könnte alle oder einige der 10 möglichen Formate aktivieren. Erfahre mehr über jedes Beitrag-Format (engl.)." + +#: wp-admin/edit-form-advanced.php:335 +msgid "Documentation on Editing Pages" +msgstr "Dokumentation zur Bearbeitung von Seiten (engl.)" + +#: wp-admin/edit-form-advanced.php:334 +msgid "Documentation on Adding New Pages" +msgstr "Dokumentation über das Hinzufügen neuer Seiten (engl.)" + +#: wp-admin/edit-form-advanced.php:317 +msgid "Documentation on Writing and Editing Posts" +msgstr "Dokumentation über das Verfassen und Bearbeiten von Beiträgen (engl.)" + +#: wp-admin/upload.php:75 wp-admin/upload.php:252 +msgid "Documentation on Media Library" +msgstr "Dokumentation zur Mediathek (engl.)" + +#: wp-admin/revision.php:156 +msgid "Revisions Management" +msgstr "Revisionsmanagement (engl.)" + +#: wp-admin/media.php:96 wp-admin/edit-form-advanced.php:353 +msgid "Documentation on Edit Media" +msgstr "Dokumentation über die Bearbeitung von Medien (engl.)" + +#: wp-admin/edit-comments.php:196 +msgid "Documentation on Keyboard Shortcuts" +msgstr "Dokumentation über Tastaturkürzel (engl.)" + +#: wp-admin/edit-comments.php:195 +msgid "Documentation on Comment Spam" +msgstr "Dokumentation über Kommentar-Spam (engl.)" + +#: wp-admin/plugins.php:587 +msgid "Documentation on Managing Plugins" +msgstr "Dokumentation zur Verwaltung von Plugins (engl.)" + +#: wp-admin/index.php:107 +msgid "Documentation on Dashboard" +msgstr "Dokumentation über das Dashboard (engl.)" + +#: wp-admin/user-new.php:268 +msgid "Documentation on Adding New Users" +msgstr "Dokumentation über das Hinzufügen neuer Benutzer (engl.)" + +#. translators: %s: URL to Site Health Status page. +#: wp-admin/site-health-info.php:90 +msgid "This page can show you every detail about the configuration of your WordPress website. For any improvements that could be made, see the Site Health Status page." +msgstr "Diese Seite kann dir jedes Detail über die Konfiguration deiner WordPress-Website anzeigen. Für alle Verbesserungen, die vorgenommen werden können, sieh dir bitte den Bereich Status auf der Seite Website-Zustand an." + +#: wp-admin/includes/dashboard.php:1819 wp-admin/site-health-info.php:47 +#: wp-admin/site-health.php:52 +msgid "Results are still loading…" +msgstr "Die Ergebnisse werden noch geladen…" + +#: wp-admin/options-permalink.php:400 +msgid "Documentation on Nginx configuration." +msgstr "Dokumentation zur Nginx-Konfiguration (engl.)." + +#: wp-admin/options-permalink.php:199 +msgid "https://wordpress.org/support/article/using-permalinks/" +msgstr "https://wordpress.org/support/article/using-permalinks/" + +#: wp-admin/options-permalink.php:61 +msgid "Documentation on Using Permalinks" +msgstr "Dokumentation über die Verwendung von Permalinks (engl.)" + +#: wp-admin/options-permalink.php:60 +msgid "Documentation on Permalinks Settings" +msgstr "Dokumentation zu Permalinks-Einstellungen (engl.)" + +#: wp-admin/update-core.php:845 +msgid "Documentation on Updating WordPress" +msgstr "Dokumentation zur Aktualisierung von WordPress (engl.)" + +#: wp-admin/nav-menus.php:658 +msgid "Documentation on Menus" +msgstr "Dokumentation über Menüs (engl.)" + +#: wp-admin/plugin-editor.php:143 +msgid "Documentation on Writing Plugins" +msgstr "Dokumentation über das Schreiben von Plugins (engl.)" + +#: wp-admin/plugin-editor.php:142 +msgid "Documentation on Editing Plugins" +msgstr "Dokumentation zur Bearbeitung von Plugins (engl.)" + +#: wp-admin/theme-editor.php:54 +msgid "Documentation on Template Tags" +msgstr "Dokumentation über Template-Tags (engl.)" + +#: wp-admin/theme-editor.php:53 +msgid "Documentation on Editing Files" +msgstr "Dokumentation über das Bearbeiten von Dateien (engl.)" + +#: wp-admin/theme-editor.php:52 wp-admin/themes.php:206 +msgid "Documentation on Using Themes" +msgstr "Dokumentation über die Verwendung von Themes (engl.)" + +#: wp-admin/theme-editor.php:51 +msgid "Documentation on Theme Development" +msgstr "Dokumentation über die Entwicklung eines Themes (engl.)" + +#: wp-admin/comment.php:70 wp-admin/edit-comments.php:194 +msgid "Documentation on Comments" +msgstr "Dokumentation zu Kommentaren (engl.)" + +#: wp-admin/options-general.php:377 +msgid "Documentation on date and time formatting." +msgstr "Dokumentation zur Datums- und Zeitformatierung (engl.)." + +#. translators: %s: UTC time. +#: wp-admin/options-general.php:246 +msgid "Universal time is %s." +msgstr "Die Universalzeit ist %s." + +#. translators: %s: UTC abbreviation +#: wp-admin/options-general.php:235 +msgid "Choose either a city in the same timezone as you or a %s (Coordinated Universal Time) time offset." +msgstr "Wähle entweder eine Stadt in der gleichen Zeitzone wie die deine oder einen %s (Koordinierte Universalzeit) Zeitversatz." + +#: wp-admin/options-general.php:111 +msgid "Administration Email Address" +msgstr "Administrator-E-Mail-Adresse" + +#: wp-admin/options-general.php:100 +msgid "https://wordpress.org/support/article/giving-wordpress-its-own-directory/" +msgstr "https://wordpress.org/support/article/giving-wordpress-its-own-directory/" + +#: wp-admin/options-general.php:48 +msgid "Documentation on General Settings" +msgstr "Dokumentation über die allgemeinen Einstellungen (engl.)" + +#: wp-admin/includes/dashboard.php:1930 +msgid "https://wordpress.org/support/article/first-steps-with-wordpress/" +msgstr "https://wordpress.org/support/article/first-steps-with-wordpress/" + +#: wp-admin/includes/file.php:324 wp-admin/theme-editor.php:323 +#: wp-admin/plugin-editor.php:296 wp-admin/options-permalink.php:353 +#: wp-admin/options-permalink.php:378 wp-admin/options-permalink.php:411 +msgid "https://wordpress.org/support/article/changing-file-permissions/" +msgstr "https://wordpress.org/support/article/changing-file-permissions/" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/file.php:323 wp-admin/theme-editor.php:322 +#: wp-admin/plugin-editor.php:295 +msgid "You need to make this file writable before you can save your changes. See Changing File Permissions for more information." +msgstr "Du musst diese Datei beschreibbar machen, bevor du deine Änderungen speichern kannst. Siehe Dateiberechtigungen ändern (engl.) für weitere Informationen." + +#: wp-admin/includes/ajax-actions.php:2434 +msgid "Upload failed. Please reload and try again." +msgstr "Der Upload ist fehlgeschlagen. Bitte neu laden und erneut versuchen." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:111 +msgid "Data Erasure has failed." +msgstr "Die Datenlöschung ist fehlgeschlagen." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:66 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:110 +msgid "Erasure completed." +msgstr "Der Löschvorgang ist abgeschlossen." + +#: wp-admin/includes/image.php:161 +msgid "The attached file cannot be found." +msgstr "Die angehängte Datei kann nicht gefunden werden." + +#: wp-admin/includes/template.php:2209 +msgctxt "page label" +msgid "Privacy Policy Page" +msgstr "Seite Datenschutzerklärung" + +#: wp-admin/includes/template.php:2204 +msgctxt "page label" +msgid "Posts Page" +msgstr "Beitragsseite" + +#: wp-admin/includes/template.php:2200 +msgctxt "page label" +msgid "Front Page" +msgstr "Startseite" + +#: wp-admin/includes/template.php:2191 +msgctxt "post status" +msgid "Sticky" +msgstr "Oben gehalten" + +#: wp-admin/includes/template.php:2183 +msgctxt "post status" +msgid "Customization Draft" +msgstr "Entwurf für die Anpassung" + +#: wp-admin/includes/template.php:2169 +msgctxt "post status" +msgid "Password protected" +msgstr "Passwortgeschützt" + +#. translators: %s: The name of the late cron event. +#: wp-admin/includes/class-wp-site-health.php:1654 +msgid "The scheduled event, %s, is late to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "Das geplante Ereignis, %s, wird zu spät ausgeführt. Deine Website funktioniert noch, aber das kann darauf hindeuten, dass die Planung von Beiträgen oder automatisierten Updates nicht wie geplant funktioniert." + +#: wp-admin/includes/class-wp-site-health.php:1648 +msgid "A scheduled event is late" +msgstr "Ein geplantes Ereignis ist verspätet" + +#: wp-admin/includes/class-wp-site-health.php:1502 +msgid "An HTTPS connection is a more secure way of browsing the web. Many services now have HTTPS as a requirement. HTTPS allows you to take advantage of new features that can increase site speed, improve search rankings, and gain the trust of your visitors by helping to protect their online privacy." +msgstr "Eine HTTPS-Verbindung ist eine sicherere Möglichkeit, im Internet zu surfen. Viele Dienste haben nun HTTPS als Vorgabe. HTTPS ermöglicht es dir, neue Funktionen zu nutzen, die die Geschwindigkeit der Website erhöhen, das Suchranking verbessern und das Vertrauen deiner Besucher gewinnen können, indem sie zum Schutz ihrer Online-Privatsphäre beitragen." + +#. translators: %s: The minimum recommended PHP version. +#: wp-admin/includes/class-wp-site-health.php:727 +msgid "PHP is the programming language used to build and maintain WordPress. Newer versions of PHP are faster and more secure, so staying up to date will help your site’s overall performance and security. The minimum recommended version of PHP is %s." +msgstr "PHP ist die Programmiersprache, mit der WordPress erstellt und gepflegt wird. Neuere Versionen von PHP sind schneller und sicherer, sodass die Aktualisierung auf den neuesten Stand die Gesamtleistung und Sicherheit deiner Website verbessert. Die empfohlene Mindestversion von PHP ist %s." + +#. translators: %s: The current version of WordPress installed on this site. +#: wp-admin/includes/class-wp-site-health.php:319 +msgid "Your version of WordPress (%s) is up to date" +msgstr "Deine Version von WordPress (%s) ist auf dem neuesten Stand." + +#: wp-admin/includes/ms.php:1158 wp-admin/network/site-new.php:32 +#: wp-admin/network/sites.php:45 +msgid "Documentation on Site Management" +msgstr "Dokumentation zur Netzwerkverwaltung (engl.)" + +#: wp-admin/includes/meta-boxes.php:807 +msgid "https://wordpress.org/support/article/introduction-to-blogging/#managing-comments" +msgstr "https://wordpress.org/support/article/introduction-to-blogging/#managing-comments" + +#: wp-admin/includes/meta-boxes.php:783 +msgid "https://wordpress.org/support/article/custom-fields/" +msgstr "https://wordpress.org/support/article/custom-fields/" + +#: wp-admin/includes/meta-boxes.php:746 +msgid "https://wordpress.org/support/article/introduction-to-blogging/#comments" +msgstr "https://wordpress.org/support/article/introduction-to-blogging/#comments" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:236 +msgid "Publish on: %s" +msgstr "Datum der Veröffentlichung: %s" + +#. translators: Post date information. %s: Date on which the post is to be +#. published. +#: wp-admin/includes/meta-boxes.php:233 +msgid "Schedule for: %s" +msgstr "Zeitplanung für: %s" + +#. translators: Post date information. %s: Date on which the post was +#. published. +#: wp-admin/includes/meta-boxes.php:228 +msgid "Published on: %s" +msgstr "Veröffentlicht am: %s" + +#. translators: Post date information. %s: Date on which the post is currently +#. scheduled to be published. +#: wp-admin/includes/meta-boxes.php:225 +msgid "Scheduled for: %s" +msgstr "Geplant für: %s" + +#. translators: Publish box time format, see https://www.php.net/date +#: wp-admin/includes/meta-boxes.php:220 wp-admin/includes/meta-boxes.php:412 +#: wp-admin/edit-form-advanced.php:175 wp-admin/edit-form-comment.php:130 +msgctxt "publish box time format" +msgid "H:i" +msgstr "H:i" + +#. translators: Publish box date format, see https://www.php.net/date +#: wp-admin/includes/meta-boxes.php:218 wp-admin/includes/meta-boxes.php:410 +#: wp-admin/edit-form-advanced.php:173 wp-admin/edit-form-comment.php:128 +msgctxt "publish box date format" +msgid "M j, Y" +msgstr "j. M. Y" + +#. translators: 1: Marker. +#: wp-admin/includes/misc.php:136 +msgid "" +"The directives (lines) between \"BEGIN %1$s\" and \"END %1$s\" are\n" +"dynamically generated, and should only be modified via WordPress filters.\n" +"Any changes to the directives between these markers will be overwritten." +msgstr "" +"Die Anweisungen (Zeilen) zwischen „BEGIN %1$s“ und „END %1$s“ sind\n" +"dynamisch generiert und sollten nur über WordPress-Filter geändert werden.\n" +"Alle Änderungen an den Anweisungen zwischen diesen Markierungen werden überschrieben." + +#: wp-admin/includes/image-edit.php:67 +msgid "Rotate right" +msgstr "Nach rechts drehen" + +#: wp-admin/includes/image-edit.php:66 +msgid "Rotate left" +msgstr "Nach links drehen" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:184 +msgid "All automatic updates are disabled." +msgstr "Alle automatischen Aktualisierungen sind deaktiviert." + +#: wp-admin/includes/class-wp-debug-data.php:871 +msgid "Database collation" +msgstr "Datenbank-Kollation" + +#: wp-admin/includes/class-wp-debug-data.php:865 +msgid "Database charset" +msgstr "Datenbank-Zeichensatz" + +#: wp-admin/includes/class-wp-debug-data.php:160 +msgid "Inactive Themes" +msgstr "Inaktive Themes" + +#: wp-admin/includes/class-wp-debug-data.php:155 +msgid "Parent Theme" +msgstr "Übergeordnetes Theme" + +#. translators: %s: wp-content directory name. +#: wp-admin/includes/class-wp-debug-data.php:143 +#: wp-admin/includes/class-wp-plugins-list-table.php:669 +msgid "Drop-ins are single files, found in the %s directory, that replace or enhance WordPress features in ways that are not possible for traditional plugins." +msgstr "Drop-ins sind einzelne Dateien, die sich im %s-Verzeichnis befinden und WordPress-Funktionen auf eine Weise ersetzen oder verbessern, die für herkömmliche Plugins nicht möglich ist." + +#. translators: Description for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:361 +msgctxt "personal data group description" +msgid "Overview of export report." +msgstr "Übersicht über den Exportbericht." + +#: wp-admin/options-writing.php:52 +msgid "Documentation on Writing Settings" +msgstr "Dokumentation über die Einstellungen beim Schreiben (engl.)" + +#: wp-admin/edit-tags.php:311 +msgid "Documentation on Tags" +msgstr "Dokumentation über Schlagwörter (engl.)" + +#: wp-admin/edit-tags.php:307 +msgid "Documentation on Categories" +msgstr "Dokumentation über Kategorien (engl.)" + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:169 +msgid "Your theme determines how content is displayed in browsers. Learn more about feeds." +msgstr "Dein Theme bestimmt, wie Inhalte in Browsern angezeigt werden. Erfahre mehr über Feeds (engl.)." + +#: wp-admin/options-reading.php:159 wp-admin/options-reading.php:160 +msgid "For each post in a feed, include" +msgstr "Füge für jeden Beitrag in einem Feed Folgendes hinzu" + +#: wp-admin/options-reading.php:143 +msgid "Warning: these pages should not be the same as your Privacy Policy page!" +msgstr "Warnung: diese Seiten dürften nicht mit deiner Datenschutzseite übereinstimmen!" + +#: wp-admin/options-reading.php:51 +msgid "Documentation on Reading Settings" +msgstr "Dokumentation über Leseeinstellungen (engl.)" + +#: wp-admin/options-reading.php:34 wp-admin/options-reading.php:170 +msgid "https://wordpress.org/support/article/wordpress-feeds/" +msgstr "https://wordpress.org/support/article/wordpress-feeds/" + +#. translators: %s: Site title. +#: wp-admin/ms-delete-site.php:92 +msgid "[%s] Delete My Site" +msgstr "[%s] Meine Website löschen" + +#: wp-admin/options-discussion.php:58 +msgid "Allow people to submit comments on new posts" +msgstr "Erlaube Besuchern, neue Beiträge zu kommentieren." + +#: wp-admin/options-discussion.php:46 wp-admin/options-discussion.php:47 +msgid "Default post settings" +msgstr "Standardeinstellungen für Beiträge" + +#. translators: %s: Gravatar URL. +#: wp-admin/user-edit.php:586 +msgid "You can change your profile picture on Gravatar." +msgstr "Du kannst dein Profilbild auf Gravatar ändern (engl.)." + +#: wp-admin/plugins.php:704 +msgid "Plugin resumed." +msgstr "Das Plugin wurde wiederhergestellt." + +#: wp-admin/plugins.php:700 +msgid "Selected plugins deactivated." +msgstr "Die ausgewählten Plugins wurden deaktiviert." + +#: wp-admin/plugins.php:698 +msgid "Plugin deactivated." +msgstr "Plugin deaktiviert." + +#: wp-admin/plugins.php:696 +msgid "Selected plugins activated." +msgstr "Die ausgewählten Plugins wurden aktiviert." + +#: wp-admin/plugins.php:694 +msgid "Plugin activated." +msgstr "Plugin aktiviert." + +#: wp-admin/plugins.php:687 +msgid "The selected plugins have been deleted." +msgstr "Die ausgewählten Plugins wurden gelöscht." + +#: wp-admin/plugins.php:685 +msgid "The selected plugin has been deleted." +msgstr "Das ausgewählte Plugin wurde gelöscht." + +#. translators: 1: Plugin file, 2: Error message. +#: wp-admin/plugins.php:611 +msgid "The plugin %1$s has been deactivated due to an error: %2$s" +msgstr "Das Plugin %1$s wurde aufgrund eines Fehlers deaktiviert: %2$s" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:367 +msgid "If you need to tweak more than your theme’s CSS, you might want to try making a child theme." +msgstr "Wenn du mehr als das CSS deines Themes optimieren musst, solltest du vielleicht ein Child-Theme erstellen (engl.)." + +#: wp-admin/theme-editor.php:359 +msgid "You appear to be making direct edits to your theme in the WordPress dashboard. We recommend that you don’t! Editing your theme directly could break your site and your changes may be lost in future updates." +msgstr "Du scheinst im WordPress-Dashboard direkte Änderungen an deinem Theme vorzunehmen. Wir empfehlen, das nicht zu tun! Wenn du dein Theme direkt bearbeitest, kann dies zu Fehlern auf deiner Website führen, außerdem können deine Änderungen bei zukünftigen Updates verloren gehen." + +#. translators: Maximum number of words used in a preview of a draft on the +#. dashboard. +#: wp-admin/includes/dashboard.php:609 +msgctxt "draft_length" +msgid "10" +msgstr "10" + +#: wp-admin/includes/file.php:478 wp-admin/theme-editor.php:278 +#: wp-admin/plugin-editor.php:109 +msgid "File does not exist! Please double check the name and try again." +msgstr "Die Datei existiert nicht! Bitte überprüfe den Namen noch einmal und versuch es erneut." + +#. translators: 1: $image, 2: WP_Image_Editor +#: wp-admin/includes/image-edit.php:286 wp-admin/includes/image-edit.php:355 +#: wp-admin/includes/image-edit.php:507 +msgid "%1$s needs to be a %2$s object." +msgstr "%1$s muss ein %2$s Objekt sein." + +#. translators: %s: Recovery Mode exit link. +#: wp-admin/includes/update.php:999 +msgid "You are in recovery mode. This means there may be an error with a theme or plugin. To exit recovery mode, log out or use the Exit button. Exit Recovery Mode" +msgstr "Die Website befindet sich im Wiederherstellungsmodus. Das bedeutet, dass es einen Fehler mit einem Theme oder Plugin geben kann. Um den Wiederherstellungsmodus zu verlassen, melde dich ab oder verwende den Button Beenden.Wiederherstellungsmodus beenden" + +#. translators: Tab heading for Site Health Info page. +#: wp-admin/site-health-info.php:62 wp-admin/site-health.php:67 +msgctxt "Site Health" +msgid "Info" +msgstr "Bericht" + +#. translators: Tab heading for Site Health Status page. +#: wp-admin/site-health-info.php:55 wp-admin/site-health.php:60 +msgctxt "Site Health" +msgid "Status" +msgstr "Status" + +#: wp-admin/includes/class-wp-debug-data.php:456 +msgid "Themes directory location" +msgstr "Ort des Themes-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:120 +msgctxt "comment status" +msgid "Closed" +msgstr "Geschlossen" + +#. translators: %s: Number of critical issues found. +#: wp-admin/site-health.php:105 wp-admin/js/site-health.js:88 +msgid "%s critical issue" +msgid_plural "%s critical issues" +msgstr[0] "%s kritisches Problem" +msgstr[1] "%s kritische Probleme" + +#: wp-admin/update-core.php:254 +msgid "https://wordpress.org/support/article/updating-wordpress/" +msgstr "https://wordpress.org/support/article/updating-wordpress/" + +#: wp-admin/includes/class-wp-site-health.php:1401 +msgid "Get help resolving this issue." +msgstr "Hilfestellung bei der Lösung dieses Problems erhalten." + +#. translators: 1: Name of the library, 2: Number of version. +#: wp-admin/includes/class-wp-site-health.php:1320 +#: wp-admin/includes/class-wp-site-health.php:1336 +msgid "WordPress’ utf8mb4 support requires MySQL client library (%1$s) version %2$s or newer. Please contact your server administrator." +msgstr "Die utf8mb4-Unterstützung von WordPress erfordert die MySQL-Client-Bibliothek (%1$s) Version %2$s oder neuer. Bitte kontaktiere deinen Server-Administrator." + +#. translators: %s: Version number. +#: wp-admin/includes/class-wp-site-health.php:1285 +msgid "WordPress’ utf8mb4 support requires MariaDB version %s or greater. Please contact your server administrator." +msgstr "Die utf8mb4-Unterstützung von WordPress erfordert MariaDB-Version %s oder neuer. Bitte kontaktiere deinen Server-Administrator." + +#. translators: %s: Version number. +#: wp-admin/includes/class-wp-site-health.php:1265 +msgid "WordPress’ utf8mb4 support requires MySQL version %s or greater. Please contact your server administrator." +msgstr "Die utf8mb4-Unterstützung von WordPress erfordert MySQL-Version %s oder neuer. Bitte kontaktiere deinen Server-Administrator." + +#: wp-admin/includes/class-wp-site-health.php:1164 +msgid "Learn more about what WordPress requires to run." +msgstr "Mehr zu den Voraussetzungen für die Ausführung von WordPress findest du hier." + +#. translators: Localized version of WordPress requirements if one exists. +#: wp-admin/includes/class-wp-site-health.php:1163 +msgid "https://wordpress.org/about/requirements/" +msgstr "https://de.wordpress.org/about/requirements/" + +#: wp-admin/includes/class-wp-site-health.php:1158 +msgid "The SQL server is a required piece of software for the database WordPress uses to store all your site’s content and settings." +msgstr "Der SQL-Server ist eine erforderliche Software für die Datenbank, mit der WordPress alle Inhalte und Einstellungen deiner Website speichert." + +#: wp-admin/includes/class-wp-site-health.php:838 +msgid "PHP modules perform most of the tasks on the server that make your site run. Any changes to these must be made by your server administrator." +msgstr "PHP-Module führen die meisten Aufgaben auf dem Server aus, die deine Website zum Laufen bringen. Alle Änderungen daran müssen von deinem Server-Administrator vorgenommen werden." + +#: wp-admin/includes/dashboard.php:1747 +msgid "PHP is the programming language we use to build and maintain WordPress. Newer versions of PHP are both faster and more secure, so updating will have a positive effect on your site’s performance." +msgstr "PHP ist die Programmiersprache, mit der WordPress entwickelt und gepflegt wird. Neuere Versionen von PHP sind sowohl schneller als auch sicherer, so dass sich die Aktualisierung positiv auf die Leistung deiner Website auswirken wird." + +#: wp-admin/includes/class-wp-site-health.php:492 +msgid "Manage your themes" +msgstr "Deine Themes verwalten" + +#: wp-admin/includes/class-wp-site-health.php:459 +msgid "Manage inactive plugins" +msgstr "Inaktive Plugins verwalten" + +#: wp-admin/includes/class-wp-site-health.php:410 +msgid "Update your plugins" +msgstr "Aktualisiere deine Plugins" + +#: wp-admin/includes/class-wp-site-health.php:359 +msgid "Manage your plugins" +msgstr "Deine Plugins verwalten" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:332 +msgid "View Privacy Policy Guide." +msgstr "Anleitung zur Datenschutzerklärung anzeigen." + +#: wp-admin/includes/class-wp-debug-data.php:76 +msgid "User Language" +msgstr "Benutzersprache" + +#. translators: 1: WP_DEBUG_DISPLAY, 2: WP_DEBUG +#: wp-admin/includes/class-wp-site-health.php:1471 +msgid "The value, %1$s, has either been enabled by %2$s or added to your configuration file. This will make errors display on the front end of your site." +msgstr "Der Wert %1$s wurde entweder durch %2$s aktiviert oder in deine Konfigurationsdatei aufgenommen. Dies führt zu Fehlern in der Frontend-Anzeige deiner Website." + +#. translators: Background update finished notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1286 +msgid "[%s] Background Update Finished" +msgstr "[%s] Hintergrund-Aktualisierung ist abgeschlossen" + +#. translators: Background update failed notification email subject. %s: Site +#. title. +#: wp-admin/includes/class-wp-automatic-updater.php:1283 +msgid "[%s] Background Update Failed" +msgstr "[%s] Hintergrund-Aktualisierung ist fehlgeschlagen" + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:123 +msgid "Could not confirm that the %s filter is available." +msgstr "Es konnte nicht verifiziert werden, dass der %s-Filter verfügbar ist." + +#: wp-admin/plugins.php:635 +msgid "Plugin could not be resumed because it triggered a fatal error." +msgstr "Das Plugin konnte nicht wiederhergestellt werden, da es einen fatalen Fehler ausgelöst hat." + +#: wp-admin/includes/class-wp-site-health.php:604 +#: wp-admin/includes/class-wp-site-health.php:650 +msgid "You should remove inactive themes" +msgstr "Inaktive Themes sollten entfernt werden" + +#: wp-admin/includes/class-wp-site-health.php:579 +msgid "Your site has 1 installed theme, and it is up to date." +msgstr "Deine Website hat 1 installiertes Theme und ist auf dem neuesten Stand." + +#: wp-admin/includes/class-wp-site-health.php:416 +msgid "Your site has 1 active plugin, and it is up to date." +msgstr "Deine Website hat 1 installiertes Plugin und ist auf dem neuesten Stand." + +#: wp-admin/site-health.php:126 +msgid "Passed tests" +msgstr "Bestandene Tests" + +#: wp-admin/site-health.php:20 +msgid "Sorry, you are not allowed to access site health information." +msgstr "Du bist leider nicht berechtigt, auf die Informationen über den Zustand deiner Website zuzugreifen." + +#: wp-admin/site-health-info.php:100 +msgid "Copy site info to clipboard" +msgstr "Bericht in die Zwischenablage kopieren " + +#: wp-admin/site-health-info.php:94 +msgid "If you want to export a handy list of all the information on this page, you can use the button below to copy it to the clipboard. You can then paste it in a text file and save it to your device, or paste it in an email exchange with a support engineer or theme/plugin developer for example." +msgstr "Wenn du eine praktische Liste aller Informationen von dieser Seite exportieren möchtest, kannst du sie über den Button unten in die Zwischenablage kopieren. Du kannst diese Liste dann in eine Textdatei einfügen und auf deinem Device speichern, oder sie in einen E-Mail-Austausch mit einem Support-Techniker oder Theme-/Plugin-Entwickler einfügen." + +#: wp-admin/site-health-info.php:71 wp-admin/site-health.php:76 +msgid "The Site Health check requires JavaScript." +msgstr "Um den Zustand deiner Website überprüfen zu können, muss JavaScript aktiviert sein." + +#: wp-admin/site-health-info.php:15 +msgid "Sorry, you are not allowed to access the debug data." +msgstr "Du bist leider nicht berechtigt, auf Debug-Daten zuzugreifen." + +#: wp-admin/site-health-info.php:12 wp-admin/site-health-info.php:84 +msgid "Site Health Info" +msgstr "Bericht zum Website-Zustand" + +#: wp-admin/update-core.php:377 wp-admin/update-core.php:556 +msgid "This update doesn’t work with your version of PHP." +msgstr "Dieses Update funktioniert nicht mit deiner PHP-Version." + +#: wp-admin/includes/class-wp-posts-list-table.php:510 +msgid "All formats" +msgstr "Alle Formate" + +#: wp-admin/includes/class-wp-posts-list-table.php:508 +msgid "Filter by post format" +msgstr "Nach Beitrags-Format filtern" + +#: wp-admin/includes/plugin.php:2482 +msgid "Go to the Plugins screen" +msgstr "Zur Plugins-Ansicht wechseln" + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1361 +msgid "The authenticity of %s could not be verified." +msgstr "Die Echtheit von %s konnte nicht verifiziert werden." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1313 +msgid "The authenticity of %s could not be verified as no signature was found." +msgstr "Die Echtheit von %s konnte nicht verifiziert werden, da keine Signatur gefunden wurde." + +#. translators: %s: The filename of the package. +#: wp-admin/includes/file.php:1240 wp-admin/includes/file.php:1260 +#: wp-admin/includes/file.php:1294 +msgid "The authenticity of %s could not be verified as signature verification is unavailable on this system." +msgstr "Die Echtheit von %s konnte nicht verifiziert werden, da die Signaturprüfung auf diesem System nicht verfügbar ist." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5028 +msgid "Eraser callback is not valid: %s." +msgstr "Der Löschvorgang ist nicht gültig: %s." + +#. translators: %s: Eraser friendly name. +#: wp-admin/includes/ajax-actions.php:5018 +msgid "Eraser does not include a callback: %s." +msgstr "Löschprogramm enthält keinen Aufruf: %s" + +#: wp-admin/includes/ajax-actions.php:4740 +#: wp-admin/includes/ajax-actions.php:4931 +msgid "Sorry, you are not allowed to perform this action." +msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen." + +#. translators: 1: Name of the constant used. 2: List of allowed hostnames. +#: wp-admin/includes/class-wp-site-health.php:1881 +msgid "HTTP requests have been blocked by the %1$s constant, with some allowed hosts: %2$s." +msgstr "HTTP-Anfragen wurden durch die Konstante %1$s blockiert, wobei einige Hosts erlaubt sind: %2$s." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health.php:1866 +msgid "HTTP requests have been blocked by the %s constant, with no allowed hosts." +msgstr "HTTP-Requests wurden durch die Konstante %s blockiert, ohne erlaubte Hosts." + +#. translators: 1: The name of the drop-in. 2: The name of the database engine. +#: wp-admin/includes/class-wp-site-health.php:1212 +msgid "You are using a %1$s drop-in which might mean that a %2$s database is not being used." +msgstr "Du verwendest ein %1$s Drop-In, was bedeuten kann, dass eine %2$s-Datenbank nicht verwendet wird." + +#. translators: Localized team handbook, if one exists. +#: wp-admin/includes/class-wp-site-health.php:843 +msgid "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" +msgstr "https://make.wordpress.org/hosting/handbook/handbook/server-environment/#php-extensions" + +#. translators: 1: Link to the hosting group page about recommended PHP +#. modules. 2: Additional link attributes. 3: Accessibility text. +#: wp-admin/includes/class-wp-site-health.php:841 +msgid "The WordPress Hosting Team maintains a list of those modules, both recommended and required, in the team handbook%3$s." +msgstr "Das WordPress-Hosting-Team führt eine Liste der empfohlenen und erforderlichen Module in dem Teamhandbuch%3$s (engl.)." + +#: wp-admin/includes/class-wp-site-health.php:248 +#: wp-admin/includes/class-wp-site-health.php:720 +#: wp-admin/includes/class-wp-site-health.php:833 +#: wp-admin/includes/class-wp-site-health.php:1062 +#: wp-admin/includes/class-wp-site-health.php:1103 +#: wp-admin/includes/class-wp-site-health.php:1153 +#: wp-admin/includes/class-wp-site-health.php:1244 +#: wp-admin/includes/class-wp-site-health.php:1606 +#: wp-admin/includes/class-wp-site-health.php:1792 +#: wp-admin/includes/class-wp-site-health.php:1835 +#: wp-admin/includes/class-wp-site-health.php:1906 +#: wp-admin/includes/class-wp-site-health.php:2009 +msgid "Performance" +msgstr "Leistung" + +#. translators: 1: The amount of inactive themes. 2: The default theme for +#. WordPress. 3: The currently active theme. +#: wp-admin/includes/class-wp-site-health.php:672 +msgid "Your site has %1$d inactive theme, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, the default WordPress theme, and %3$s, your active theme." +msgstr[0] "Deine Website hat %1$d inaktives Theme, mit Ausnahme von %2$s, dem Standard-WordPress-Theme und %3$s, deinem aktiven Theme." +msgstr[1] "Deine Website hat %1$d inaktive Themes, mit Ausnahme von %2$s, dem Standard-WordPress-Theme und %3$s, deinem aktiven Theme." + +#: wp-admin/includes/class-wp-site-health.php:665 +#: wp-admin/includes/class-wp-site-health.php:681 +msgid "We recommend removing any unused themes to enhance your site’s security." +msgstr "Es wird empfohlen, alle nicht verwendeten Themes zu löschen, um die Sicherheit deiner Website zu erhöhen." + +#. translators: 1: The amount of inactive themes. 2: The currently active +#. theme. +#: wp-admin/includes/class-wp-site-health.php:657 +msgid "Your site has %1$d inactive theme, other than %2$s, your active theme." +msgid_plural "Your site has %1$d inactive themes, other than %2$s, your active theme." +msgstr[0] "Deine Website hat %1$d inaktives Theme, außer %2$s, dein aktives Theme." +msgstr[1] "Deine Website hat %1$d inaktive Themes, außer %2$s, dein aktives Theme." + +#. translators: %d: The number of inactive themes. +#: wp-admin/includes/class-wp-site-health.php:611 +#: wp-admin/includes/class-wp-site-health.php:630 +msgid "Your site has %d inactive theme." +msgid_plural "Your site has %d inactive themes." +msgstr[0] "Deine Website hat %d inaktives Theme." +msgstr[1] "Deine Website hat %d inaktive Themes." + +#: wp-admin/includes/class-wp-site-health.php:453 +msgid "Inactive plugins are tempting targets for attackers. If you’re not going to use a plugin, we recommend you remove it." +msgstr "Inaktive Plugins sind verlockende Ziele für Angreifer. Wenn du ein Plugin nicht verwendest, ist es empfehlenswert, es zu entfernen." + +#. translators: %d: The number of inactive plugins. +#: wp-admin/includes/class-wp-site-health.php:446 +msgid "Your site has %d inactive plugin." +msgid_plural "Your site has %d inactive plugins." +msgstr[0] "Deine Website hat %d inaktives Plugin." +msgstr[1] "Deine Website hat %d inaktive Plugins." + +#: wp-admin/includes/class-wp-site-health.php:309 +#: wp-admin/includes/class-wp-site-health.php:349 +#: wp-admin/includes/class-wp-site-health.php:482 +#: wp-admin/includes/class-wp-site-health.php:777 +#: wp-admin/includes/class-wp-site-health.php:1193 +#: wp-admin/includes/class-wp-site-health.php:1359 +#: wp-admin/includes/class-wp-site-health.php:1428 +#: wp-admin/includes/class-wp-site-health.php:1497 +#: wp-admin/includes/class-wp-site-health.php:1560 +#: wp-admin/includes/class-wp-site-health.php:1679 +#: wp-admin/includes/class-wp-site-health.php:1749 wp-admin/about.php:121 +msgid "Security" +msgstr "Sicherheit" + +#: wp-admin/erase-personal-data.php:43 +msgid "Erase personal data list" +msgstr "Liste der personenbezogenen Daten löschen" + +#: wp-admin/erase-personal-data.php:42 +msgid "Erase personal data list navigation" +msgstr "Navigation in der Liste der personenbezogenen Daten löschen" + +#: wp-admin/erase-personal-data.php:41 +msgid "Filter erase personal data list" +msgstr "Filter-Liste der personenbezogenen Daten löschen" + +#: wp-admin/export-personal-data.php:43 +msgid "Export personal data list" +msgstr "Liste der personenbezogenen Daten exportieren" + +#: wp-admin/export-personal-data.php:42 +msgid "Export personal data list navigation" +msgstr "Exportieren der Navigation in der Liste der personenbezogenen Daten" + +#: wp-admin/export-personal-data.php:41 +msgid "Filter export personal data list" +msgstr "Filter-Liste der personenbezogenen Daten exportieren" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:560 +#: wp-admin/includes/plugin-install.php:876 +msgctxt "plugin" +msgid "Cannot Update" +msgstr "Aktualisierung nicht möglich" + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number 5: URL to Update PHP page. +#: wp-admin/includes/update.php:518 +msgid "There is a new version of %1$s available, but it doesn’t work with your version of PHP. View version %4$s details or learn more about updating PHP." +msgstr "Es gibt eine neue Version von %1$s, aber sie funktioniert nicht mit deiner PHP-Version. Siehe Details der Version %4$s (engl.) oder Lerne mehr über das Update von PHP (engl.)." + +#: wp-admin/includes/class-wp-plugins-list-table.php:1073 +msgid "This plugin failed to load properly and is paused during recovery mode." +msgstr "Dieses Plugin konnte nicht richtig geladen werden und wird im Wiederherstellungsmodus angehalten." + +#: wp-admin/includes/theme.php:1151 +msgid "Go to the Themes screen" +msgstr "Zur Themes-Ansicht wechseln" + +#: wp-admin/includes/class-wp-debug-data.php:1611 +msgid "Total size is not available. Some errors were encountered when determining the size of your installation." +msgstr "Die Gesamtgröße ist nicht verfügbar. Bei der Bestimmung der Größe deiner Installation sind einige Fehler aufgetreten." + +#: wp-admin/includes/class-wp-debug-data.php:1560 +msgid "The size cannot be calculated. The directory is not accessible. Usually caused by invalid permissions." +msgstr "Die Größe kann nicht berechnet werden. Das Verzeichnis ist nicht zugänglich. In der Regel verursacht durch ungültige Berechtigungen." + +#: wp-admin/includes/class-wp-debug-data.php:1567 +msgid "The directory size calculation has timed out. Usually caused by a very large number of sub-directories and files." +msgstr "Die Berechnung der Verzeichnisgröße ist abgebrochen. In der Regel wird dies durch eine sehr große Anzahl von Unterverzeichnissen und Dateien verursacht." + +#: wp-admin/includes/class-wp-debug-data.php:246 +msgid "These settings alter where and how parts of WordPress are loaded." +msgstr "Diese Einstellungen legen fest, wo und wie Teile von WordPress geladen werden." + +#. translators: %s: Number of items with no issues. +#: wp-admin/site-health.php:135 wp-admin/js/site-health.js:98 +msgid "%s item with no issues detected" +msgid_plural "%s items with no issues detected" +msgstr[0] "%s Element, bei dem keine Probleme erkannt wurden" +msgstr[1] "%s Elemente, bei denen keine Probleme erkannt wurde" + +#. translators: %s: Number of recommended improvements. +#: wp-admin/site-health.php:116 wp-admin/js/site-health.js:93 +msgid "%s recommended improvement" +msgid_plural "%s recommended improvements" +msgstr[0] "%s empfohlene Verbesserung" +msgstr[1] "%s empfohlene Verbesserungen" + +#: wp-admin/site-health.php:99 +msgid "The site health check shows critical information about your WordPress configuration and items that require your attention." +msgstr "Der Test zum Website-Zustand zeigt wichtige Informationen zu deiner WordPress-Konfiguration und zu Elementen, die deine Aufmerksamkeit erfordern." + +#: wp-admin/includes/dashboard.php:56 wp-admin/site-health.php:17 +#: wp-admin/site-health.php:96 +msgid "Site Health Status" +msgstr "Zustand der Website" + +#: wp-admin/site-health.php:90 +msgid "Everything is running smoothly here." +msgstr "Hier läuft alles reibungslos." + +#: wp-admin/site-health.php:86 +msgid "Great job!" +msgstr "Gute Arbeit!" + +#: wp-admin/credits.php:35 wp-admin/includes/ms.php:1120 +#: wp-admin/privacy.php:32 wp-admin/nav-menus.php:696 +#: wp-admin/site-health-info.php:51 wp-admin/freedoms.php:38 +#: wp-admin/about.php:33 wp-admin/site-health.php:56 +msgid "Secondary menu" +msgstr "Zweites Menü" + +#: wp-admin/includes/class-wp-site-health.php:2488 +msgid "The loopback request to your site completed successfully." +msgstr "Die Loopback-Anfrage an deine Website wurde erfolgreich abgeschlossen." + +#. translators: %d: The HTTP response code returned. +#: wp-admin/includes/class-wp-site-health.php:2480 +msgid "The loopback request returned an unexpected http status code, %d, it was not possible to determine if this will prevent features from working as expected." +msgstr "Die Loopback-Anfrage lieferte einen unerwarteten http-Statuscode, %d, es war nicht möglich zu bestimmen, ob dies verhindert, dass Funktionen wie erwartet funktionieren." + +#: wp-admin/includes/class-wp-site-health.php:2464 +msgid "The loopback request to your site failed, this means features relying on them are not currently working as expected." +msgstr "Die Loopback-Anfrage an deine Website ist fehlgeschlagen, das bedeutet, dass Funktionen, die sich auf sie verlassen, derzeit nicht wie erwartet funktionieren." + +#: wp-admin/includes/class-wp-site-health.php:2262 +msgid "No scheduled events exist on this site." +msgstr "Auf dieser Website gibt es keine geplanten Ereignisse." + +#: wp-admin/includes/class-wp-site-health.php:2173 +msgid "REST API availability" +msgstr "REST-API-Verfügbarkeit" + +#: wp-admin/includes/class-wp-site-health.php:2164 +msgid "Loopback request" +msgstr "Loopback-Anfrage" + +#: wp-admin/includes/class-wp-site-health.php:2142 +msgid "Debugging enabled" +msgstr "Fehlersuche aktiviert" + +#: wp-admin/includes/class-wp-site-health.php:2138 +msgid "HTTP Requests" +msgstr "HTTP-Requests" + +#: wp-admin/includes/class-wp-site-health.php:2134 +msgid "Scheduled events" +msgstr "Geplante Ereignisse" + +#: wp-admin/includes/class-wp-site-health.php:2130 +msgid "Secure communication" +msgstr "Sichere Verbindung" + +#: wp-admin/includes/class-wp-site-health.php:2126 +msgid "HTTPS status" +msgstr "HTTPS-Status" + +#: wp-admin/includes/class-wp-site-health.php:2122 +msgid "MySQL utf8mb4 support" +msgstr "MySQL-utf8mb4-Unterstützung" + +#: wp-admin/includes/class-wp-site-health.php:2106 +msgid "PHP Extensions" +msgstr "PHP-Erweiterungen" + +#: wp-admin/includes/class-wp-site-health.php:2118 +msgid "Database Server version" +msgstr "Datenbankserver-Version" + +#: wp-admin/includes/class-wp-site-health.php:2102 +msgid "PHP Version" +msgstr "PHP-Version" + +#: wp-admin/includes/class-wp-site-health.php:2098 +msgid "Theme Versions" +msgstr "Theme-Versionen" + +#: wp-admin/includes/class-wp-site-health.php:2094 +msgid "Plugin Versions" +msgstr "Plugin-Versionen" + +#: wp-admin/includes/class-wp-site-health.php:2090 +msgid "WordPress Version" +msgstr "WordPress-Version" + +#. translators: %s: The name of the query parameter being tested. +#: wp-admin/includes/class-wp-site-health.php:1987 +msgid "The REST API did not process the %s query parameter correctly." +msgstr "Die REST-API hat den Abfrageparameter %s nicht korrekt verarbeitet." + +#: wp-admin/includes/class-wp-site-health.php:1981 +msgid "The REST API did not behave correctly" +msgstr "Die REST-API hat sich nicht korrekt verhalten" + +#. translators: 1: The HTTP error code. 2: The HTTP error message. +#: wp-admin/includes/class-wp-site-health.php:1970 +msgid "The REST API call gave the following unexpected result: (%1$d) %2$s." +msgstr "Der Aufruf der REST-API führte zu folgendem unerwarteten Ergebnis: (%1$d) %2$s." + +#: wp-admin/includes/class-wp-site-health.php:1964 +msgid "The REST API encountered an unexpected result" +msgstr "Die REST-API kam zu einem unerwarteten Ergebnis" + +#: wp-admin/includes/class-wp-site-health.php:1952 +msgid "The REST API request failed due to an error." +msgstr "Die REST-API-Anfrage ist aufgrund eines Fehlers fehlgeschlagen." + +#: wp-admin/includes/class-wp-site-health.php:1946 +msgid "The REST API encountered an error" +msgstr "Die REST-API hat einen Fehler gefunden" + +#: wp-admin/includes/class-wp-site-health.php:1911 +msgid "The REST API is one way WordPress, and other applications, communicate with the server. One example is the block editor screen, which relies on this to display, and save, your posts and pages." +msgstr "Die REST-API ist eine Möglichkeit, wie WordPress und andere Anwendungen mit dem Server kommunizieren. Ein Beispiel ist der Bildschirm des Block-Editors, der darauf aufbaut, deine Beiträge und Seiten anzuzeigen und zu speichern." + +#: wp-admin/includes/class-wp-site-health.php:1903 +msgid "The REST API is available" +msgstr "Die REST-API ist verfügbar" + +#: wp-admin/includes/class-wp-site-health.php:1875 +msgid "HTTP requests are partially blocked" +msgstr "HTTP-Anfragen sind teilweise blockiert" + +#: wp-admin/includes/class-wp-site-health.php:1860 +msgid "HTTP requests are blocked" +msgstr "HTTP-Anfragen sind blockiert" + +#: wp-admin/includes/class-wp-site-health.php:1840 +msgid "It is possible for site maintainers to block all, or some, communication to other sites and services. If set up incorrectly, this may prevent plugins and themes from working as intended." +msgstr "Es ist möglich, dass Website-Betreiber die Verbindung zu anderen Websites und Diensten ganz oder teilweise blockieren. Bei falscher Konfiguration kann es vorkommen, dass Plugins und Themes nicht wie vorgesehen funktionieren." + +#: wp-admin/includes/class-wp-site-health.php:1832 +msgid "HTTP requests seem to be working as expected" +msgstr "HTTP-Anfragen scheinen wie erwartet zu funktionieren" + +#: wp-admin/includes/class-wp-site-health.php:1808 +msgid "Your site could not complete a loopback request" +msgstr "Deine Website konnte eine Loopback-Anfrage nicht abschließen" + +#: wp-admin/includes/class-wp-site-health.php:1797 +msgid "Loopback requests are used to run scheduled events, and are also used by the built-in editors for themes and plugins to verify code stability." +msgstr "Loopback-Anfragen werden verwendet, um geplante Ereignisse auszuführen, und werden auch von den integrierten Editoren für Themes und Plugins verwendet, um die Stabilität des Codes zu überprüfen." + +#: wp-admin/includes/class-wp-site-health.php:1789 +msgid "Your site can perform loopback requests" +msgstr "Deine Website kann Loopback-Anfragen durchführen" + +#: wp-admin/includes/class-wp-site-health.php:1713 +msgid "Background updates may not be working properly" +msgstr "Hintergrund-Updates funktionieren möglicherweise nicht richtig" + +#: wp-admin/includes/class-wp-site-health.php:1705 +msgid "Background updates are not working as expected" +msgstr "Hintergrund-Updates funktionieren nicht wie erwartet" + +#: wp-admin/includes/class-wp-site-health.php:1702 +msgid "Passed" +msgstr "Abgeschlossen" + +#: wp-admin/includes/class-wp-site-health.php:1684 +msgid "Background updates ensure that WordPress can auto-update if a security update is released for the version you are currently using." +msgstr "Hintergrund-Updates stellen sicher, dass WordPress automatisch aktualisieren kann, wenn ein Sicherheitsupdate für die Version, die zu diesem Zeitpunkt verwendet wird, veröffentlicht wird." + +#: wp-admin/includes/class-wp-site-health.php:1676 +msgid "Background updates are working" +msgstr "Hintergrund-Updates funktionieren" + +#. translators: %s: The name of the failed cron event. +#: wp-admin/includes/class-wp-site-health.php:1641 +msgid "The scheduled event, %s, failed to run. Your site still works, but this may indicate that scheduling posts or automated updates may not work as intended." +msgstr "Das geplante Ereignis, %s, konnte nicht ausgeführt werden. Deine Website funktioniert noch, aber das kann darauf hindeuten, dass die Planung von Beiträgen oder automatisierten Updates nicht wie geplant funktioniert." + +#: wp-admin/includes/class-wp-site-health.php:1635 +msgid "A scheduled event has failed" +msgstr "Ein geplantes Ereignis ist fehlgeschlagen" + +#. translators: %s: The error message returned while from the cron scheduler. +#: wp-admin/includes/class-wp-site-health.php:1628 +msgid "While trying to test your site’s scheduled events, the following error was returned: %s" +msgstr "Beim Versuch, die geplanten Ereignisse deiner Website zu testen, wurde folgender Fehler zurückgegeben: %s" + +#: wp-admin/includes/class-wp-site-health.php:1622 +msgid "It was not possible to check your scheduled events" +msgstr "Es war nicht möglich, deine geplanten Ereignisse zu überprüfen" + +#: wp-admin/includes/class-wp-site-health.php:1611 +msgid "Scheduled events are what periodically looks for updates to plugins, themes and WordPress itself. It is also what makes sure scheduled posts are published on time. It may also be used by various plugins to make sure that planned actions are executed." +msgstr "Die Bezeichnung „Geplante Ereignisse“ steht für verschiedene Aufgaben: Die regelmäßige Suche nach Updates für Plugins, Themes und WordPress selbst sowie das rechtzeitige Veröffentlichen von geplanten Beiträgen. „Geplante Ereignisse“ können auch von verschiedenen Plugins verwendet werden, um sicherzustellen, dass geplante Aktionen ausgeführt werden." + +#: wp-admin/includes/class-wp-site-health.php:1603 +msgid "Scheduled events are running" +msgstr "Geplante Ereignisse laufen" + +#: wp-admin/includes/class-wp-site-health.php:1584 +msgid "Talk to your web host about OpenSSL support for PHP." +msgstr "Sprich mit deinem Provider über die OpenSSL-Unterstützung für PHP." + +#: wp-admin/includes/class-wp-site-health.php:1580 +msgid "Your site is unable to communicate securely with other services" +msgstr "Deine Website kann nicht sicher mit anderen Diensten in Verbindung treten" + +#: wp-admin/includes/class-wp-site-health.php:1576 +msgid "Your site can communicate securely with other services" +msgstr "Deine Website kann sicher mit anderen Diensten in Verbindung treten" + +#: wp-admin/includes/class-wp-site-health.php:1565 +msgid "Securely communicating between servers are needed for transactions such as fetching files, conducting sales on store sites, and much more." +msgstr "Für Transaktionen wie das Abrufen von Dateien, die Durchführung von Verkäufen auf Shop-Sites und vieles mehr ist eine sichere Datenübertragung zwischen Servern erforderlich." + +#: wp-admin/includes/class-wp-site-health.php:1508 +msgid "Learn more about why you should use HTTPS" +msgstr "Mehr darüber lesen, warum man HTTPS verwenden sollte" + +#. translators: Documentation explaining HTTPS and why it should be used. +#: wp-admin/includes/class-wp-site-health.php:1507 +msgid "https://wordpress.org/support/article/why-should-i-use-https/" +msgstr "https://wordpress.org/support/article/why-should-i-use-https/" + +#: wp-admin/includes/class-wp-site-health.php:1542 +msgid "Your site does not use HTTPS" +msgstr "Deine Website verwendet kein HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1494 +msgid "Your website is using an active HTTPS connection." +msgstr "Deine Website verwendet eine aktive HTTPS-Verbindung." + +#: wp-admin/includes/class-wp-site-health.php:1536 +msgid "Update your site addresses" +msgstr "Aktualisiere deine Website-Adressen" + +#. translators: %s: URL to General Settings screen. +#: wp-admin/includes/class-wp-site-health.php:1528 +msgid "You are accessing this website using HTTPS, but your WordPress Address is not set up to use HTTPS by default." +msgstr "Du greifst über HTTPS auf diese Website zu, aber deine WordPress-Adresse ist standardmäßig nicht für die Verwendung von HTTPS eingerichtet." + +#: wp-admin/includes/class-wp-site-health.php:1522 +msgid "Only parts of your site are using HTTPS" +msgstr "Nur Teile deiner Website verwenden HTTPS" + +#: wp-admin/includes/class-wp-site-health.php:1463 +msgid "Your site is set to display errors to site visitors" +msgstr "Deine Website ist so eingestellt, dass sie den Besuchern der Website Fehler anzeigt" + +#. translators: %s: WP_DEBUG_LOG +#: wp-admin/includes/class-wp-site-health.php:1456 +msgid "The value, %s, has been added to this website’s configuration file. This means any errors on the site will be written to a file which is potentially available to all users." +msgstr "Der Wert %s wurde der Konfigurationsdatei dieser Website hinzugefügt. Das bedeutet, dass alle Fehler auf der Website in eine Datei geschrieben werden, die möglicherweise für alle Benutzer verfügbar ist." + +#: wp-admin/includes/class-wp-site-health.php:1448 +msgid "Your site is set to log errors to a potentially public file." +msgstr "Deine Website ist so eingestellt, dass sie Fehler in einer potenziell öffentlich zugänglichen Datei protokolliert." + +#: wp-admin/includes/class-wp-site-health.php:1433 +msgid "Debug mode is often enabled to gather more details about an error or site failure, but may contain sensitive information which should not be available on a publicly available website." +msgstr "Der Fehlersuchmodus wird oft aktiviert, um mehr Details über einen Fehler oder einen Ausfall der Website zu erhalten, kann aber sensible Informationen enthalten, die auf einer öffentlich zugänglichen Website nicht verfügbar sein sollten." + +#: wp-admin/includes/class-wp-site-health.php:1425 +msgid "Your site is not set to output debug information" +msgstr "Deine Website ist so konfiguriert, dass sie keine Fehlersuch-Informationen ausgibt" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-site-health.php:1390 +msgid "Your site is unable to reach WordPress.org at %1$s, and returned the error: %2$s" +msgstr "Deine Website kann WordPress.org nicht unter %1$s erreichen und gab den Fehler zurück: %2$s" + +#: wp-admin/includes/class-wp-site-health.php:1381 +msgid "Could not reach WordPress.org" +msgstr "WordPress.org konnte nicht erreicht werden" + +#: wp-admin/includes/class-wp-site-health.php:1364 +msgid "Communicating with the WordPress servers is used to check for new versions, and to both install and update WordPress core, themes or plugins." +msgstr "Die Verbindung mit den WordPress-Servern wird verwendet, um nach neuen Versionen zu suchen und sowohl WordPress-Core, Themes oder Plugins zu installieren und zu aktualisieren." + +#: wp-admin/includes/class-wp-site-health.php:1356 +msgid "Can communicate with WordPress.org" +msgstr "Die Verbindung mit WordPress.org wird unterstützt" + +#: wp-admin/includes/class-wp-site-health.php:1314 +#: wp-admin/includes/class-wp-site-health.php:1330 +msgid "utf8mb4 requires a newer client library" +msgstr "utf8mb4 benötigt eine neuere Client-Bibliothek" + +#: wp-admin/includes/class-wp-site-health.php:1292 +msgid "Your MariaDB version supports utf8mb4." +msgstr "Deine MariaDB-Version unterstützt utf8mb4." + +#: wp-admin/includes/class-wp-site-health.php:1279 +msgid "utf8mb4 requires a MariaDB update" +msgstr "utf8mb4 erfordert ein MariaDB-Update" + +#: wp-admin/includes/class-wp-site-health.php:1272 +msgid "Your MySQL version supports utf8mb4." +msgstr "Deine MySQL-Version unterstützt utf8mb4." + +#: wp-admin/includes/class-wp-site-health.php:1259 +msgid "utf8mb4 requires a MySQL update" +msgstr "utf8mb4 erfordert ein MySQL-Update" + +#: wp-admin/includes/class-wp-site-health.php:1241 +msgid "UTF8MB4 is supported" +msgstr "UTF8MB4 wird unterstützt" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server minimum version number. +#: wp-admin/includes/class-wp-site-health.php:1199 +msgid "WordPress requires %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "WordPress benötigt %1$s Version %2$s oder höher. Kontaktiere dein Webhosting-Unternehmen, um dies zu korrigieren." + +#: wp-admin/includes/class-wp-site-health.php:1192 +msgid "Severely outdated SQL server" +msgstr "Stark veralteter SQL-Server" + +#. translators: 1: The database engine in use (MySQL or MariaDB). 2: Database +#. server recommended version number. +#: wp-admin/includes/class-wp-site-health.php:1182 +msgid "For optimal performance and security reasons, we recommend running %1$s version %2$s or higher. Contact your web hosting company to correct this." +msgstr "Aus Gründen der optimalen Leistung und Sicherheit wird empfohlen, %1$s Version %2$s oder höher auszuführen. Wende dich an dein Webhosting-Unternehmen, um dies zu korrigieren." + +#: wp-admin/includes/class-wp-site-health.php:1176 +msgid "Outdated SQL server" +msgstr "Veralteter SQL-Server" + +#: wp-admin/includes/class-wp-site-health.php:1150 +msgid "SQL server is up to date" +msgstr "SQL-Server ist auf dem neuesten Stand" + +#: wp-admin/includes/class-wp-site-health.php:1041 +msgid "One or more required modules are missing" +msgstr "Ein oder mehrere erforderliche Module fehlen" + +#: wp-admin/includes/class-wp-site-health.php:1038 +msgid "One or more recommended modules are missing" +msgstr "Ein oder mehrere empfohlene Module fehlen" + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1010 +msgid "The optional module, %s, is not installed, or has been disabled." +msgstr "Das optionale Modul %s ist nicht installiert oder wurde deaktiviert." + +#. translators: %s: The module name. +#: wp-admin/includes/class-wp-site-health.php:1002 +msgid "The required module, %s, is not installed, or has been disabled." +msgstr "Das erforderliche Modul %s ist nicht installiert oder wurde deaktiviert." + +#: wp-admin/includes/class-wp-site-health.php:999 +#: wp-admin/includes/class-wp-site-health.php:1387 +#: wp-admin/includes/class-wp-site-health.php:1709 +msgid "Error" +msgstr "Fehler" + +#: wp-admin/includes/class-wp-site-health.php:830 +msgid "Required and recommended modules are installed" +msgstr "Erforderliche und empfohlene Module werden installiert" + +#: wp-admin/includes/class-wp-site-health.php:695 +msgid "Your site does not have any default theme. Default themes are used by WordPress automatically if anything is wrong with your chosen theme." +msgstr "Deine Website verfügt über kein Standard-Theme. Standard-Themes werden von WordPress automatisch verwendet, wenn mit deinem gewohnten Theme etwas nicht stimmt." + +#: wp-admin/includes/class-wp-site-health.php:691 +msgid "Have a default theme available" +msgstr "Ein Standard-Theme zur Verfügung haben" + +#. translators: 1: The default theme for WordPress. 2: The currently active +#. theme. 3: The active theme's parent theme. +#: wp-admin/includes/class-wp-site-health.php:639 +msgid "To enhance your site’s security, we recommend you remove any themes you’re not using. You should keep %1$s, the default WordPress theme, %2$s, your current theme, and %3$s, its parent theme." +msgstr "Um die Sicherheit deiner Website zu verbessern, wird empfohlen, alle Themes zu entfernen, die du nicht benutzt. Du solltest %1$s, das WordPress-Standard-Theme, %2$s, dein aktuelles Theme und %3$s, das übergeordnete Theme, behalten." + +#. translators: 1: The currently active theme. 2: The active theme's parent +#. theme. +#: wp-admin/includes/class-wp-site-health.php:620 +msgid "To enhance your site’s security, we recommend you remove any themes you’re not using. You should keep your current theme, %1$s, and %2$s, its parent theme." +msgstr "Um die Sicherheit deiner Website zu verbessern, wird empfohlen, alle Themes zu entfernen, die du nicht benutzt.Du solltest dein aktuelles Theme, %1$s und %2$s, das übergeordnete Theme, behalten." + +#: wp-admin/includes/class-wp-site-health.php:440 +msgid "You should remove inactive plugins" +msgstr "Inaktive Plugins sollten entfernt werden" + +#. translators: %d: The number of themes. +#: wp-admin/includes/class-wp-site-health.php:586 +msgid "Your site has %d installed theme, and it is up to date." +msgid_plural "Your site has %d installed themes, and they are all up to date." +msgstr[0] "Deine Website hat %d installiertes Theme, und es ist auf dem neuesten Stand." +msgstr[1] "Deine Website hat %d installierte Themes, und sie sind alle auf dem neuesten Stand." + +#. translators: %d: The number of outdated themes. +#: wp-admin/includes/class-wp-site-health.php:566 +msgid "Your site has %d theme waiting to be updated." +msgid_plural "Your site has %d themes waiting to be updated." +msgstr[0] "Deine Website hat %d Theme, das darauf wartet aktualisiert zu werden." +msgstr[1] "Deine Website hat %d Themes, die darauf warten aktualisiert zu werden." + +#: wp-admin/includes/class-wp-site-health.php:560 +msgid "You have themes waiting to be updated" +msgstr "Es gibt Themes, die darauf warten, aktualisiert zu werden" + +#: wp-admin/includes/class-wp-site-health.php:487 +msgid "Themes add your site’s look and feel. It’s important to keep them up to date, to stay consistent with your brand and keep your site secure." +msgstr "Themes fügen das Look-and-Feel zu deiner Website hinzu. Es ist wichtig, sie auf dem neuesten Stand zu halten, mit deiner Marke konsistent zu bleiben und deine Website sicher zu halten." + +#: wp-admin/includes/class-wp-site-health.php:479 +msgid "Your themes are all up to date" +msgstr "Deine Themes sind auf dem neuesten Stand" + +#. translators: %d: The number of active plugins. +#: wp-admin/includes/class-wp-site-health.php:423 +msgid "Your site has %d active plugin, and it is up to date." +msgid_plural "Your site has %d active plugins, and they are all up to date." +msgstr[0] "Deine Website hat %d aktives Plugin, und es ist auf dem neuesten Stand." +msgstr[1] "Deine Website hat %d aktive Plugins, und sie sind alle auf dem neuesten Stand." + +#. translators: %d: The number of outdated plugins. +#: wp-admin/includes/class-wp-site-health.php:398 +msgid "Your site has %d plugin waiting to be updated." +msgid_plural "Your site has %d plugins waiting to be updated." +msgstr[0] "Deine Website hat %d Plugin, das darauf wartet, aktualisiert zu werden." +msgstr[1] "Deine Website hat %d Plugins, die darauf warten, aktualisiert zu werden." + +#: wp-admin/includes/class-wp-site-health.php:392 +msgid "You have plugins waiting to be updated" +msgstr "Es gibt Plugins, die darauf warten, aktualisiert zu werden" + +#: wp-admin/includes/class-wp-site-health.php:354 +msgid "Plugins extend your site’s functionality with things like contact forms, ecommerce and much more. That means they have deep access to your site, so it’s vital to keep them up to date." +msgstr "Plugins erweitern die Funktionalität deiner Website um Dinge wie Kontaktformulare, E-Commerce und vieles mehr. Das bedeutet, dass sie einen umfassenden Zugriff auf deine Website haben, daher ist es wichtig, sie auf dem neuesten Stand zu halten." + +#: wp-admin/includes/class-wp-site-health.php:346 +msgid "Your plugins are all up to date" +msgstr "Deine Plugins sind aktuell" + +#: wp-admin/includes/class-wp-site-health.php:325 +msgid "You are currently running the latest version of WordPress available, keep it up!" +msgstr "Du benutzt die neueste WordPress-Version, die verfügbar ist. Weiter so!" + +#: wp-admin/includes/class-wp-site-health.php:312 +msgid "A new minor update is available for your site. Because minor updates often address security, it’s important to install them." +msgstr "Eine neue, kleinere Aktualisierung ist für deine Website verfügbar. Weil kleinere Aktualisierungen oft die Sicherheit betreffen, ist es wichtig, diese zu installieren." + +#: wp-admin/includes/class-wp-site-health.php:304 +msgid "A new version of WordPress is available." +msgstr "Eine neue WordPress-Version ist verfügbar." + +#: wp-admin/includes/class-wp-site-health.php:296 +msgid "Install the latest version of WordPress" +msgstr "Die aktuelle Version von WordPress installieren" + +#. translators: %s: The latest version of WordPress available. +#: wp-admin/includes/class-wp-site-health.php:289 +msgid "WordPress update available (%s)" +msgstr "Eine WordPress-Aktualisierung ist verfügbar (%s)" + +#: wp-admin/includes/class-wp-site-health.php:276 +msgid "Check for updates manually" +msgstr "Manuell auf Aktualisierungen prüfen" + +#: wp-admin/includes/class-wp-site-health.php:270 +msgid "We were unable to check if any new versions of WordPress are available." +msgstr "Es konnte nicht geprüft werden, ob neue WordPress-Versionen verfügbar sind." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:476 +msgid "WordPress security and maintenance releases are blocked by the %s filter." +msgstr "Sicherheits- und Wartungs-Aktualisierungen von WordPress werden durch den %s-Filter blockiert." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:464 +msgid "WordPress security and maintenance releases are blocked by %s." +msgstr "Sicherheits- und Wartungs-Aktualisierungen von WordPress werden durch %s blockiert." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:444 +msgid "WordPress development updates are blocked by the %s filter." +msgstr "Entwicklungs-Aktualisierungen von WordPress werden durch den %s-Filter blockiert." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:432 +msgid "WordPress development updates are blocked by the %s constant." +msgstr "Entwicklungs-Aktualisierungen von WordPress werden durch die Konstante %s blockiert." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:408 +msgid "All of your WordPress files are writable." +msgstr "Alle deine WordPress-Dateien sind beschreibbar." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:403 +msgid "Some files are not writable by WordPress:" +msgstr "Einige Dateien sind für WordPress nicht beschreibbar:" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:377 +msgid "This could mean that connections are failing to WordPress.org." +msgstr "Dies könnte bedeuten, dass Verbindungen zu WordPress.org fehlschlagen." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:374 +msgid "Couldn't retrieve a list of the checksums for WordPress %s." +msgstr "Eine Liste der Prüfsummen für WordPress %s konnte nicht abgerufen werden." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:327 +msgid "Your installation of WordPress doesn't require FTP credentials to perform updates." +msgstr "Deine Installation von WordPress benötigt keine FTP-Zugangsdaten, um Updates durchzuführen." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:318 +msgid "(Your site is performing updates over FTP due to file ownership. Talk to your hosting company.)" +msgstr "(Deine Website führt aufgrund des Dateibesitzes Aktualisierungen über FTP durch. Kontaktiere diesbzgl. deinen Provider.)" + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:317 +msgid "Your installation of WordPress prompts for FTP credentials to perform updates." +msgstr "Deine WordPress-Installation benötigt FTP-Zugangsdaten, um Aktualisierungen durchzuführen." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:300 +msgid "No version control systems were detected." +msgstr "Es wurde kein Versionskontrollsystem gefunden." + +#. translators: 1: Folder name. 2: Version control directory. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:291 +msgid "The folder %1$s was detected as being under version control (%2$s)." +msgstr "Der Ordner %1$s wurde als versionskontrolliert erkannt (%2$s)." + +#. translators: 1: Folder name. 2: Version control directory. 3: Filter name. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:278 +msgid "The folder %1$s was detected as being under version control (%2$s), but the %3$s filter is allowing updates." +msgstr "Der Ordner %1$s wurde als versionskontrolliert erkannt (%2$s), aber der Filter %3$s erlaubt Aktualisierungen." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:223 +msgid "We'll try again with the next release." +msgstr "Wir werden es mit der nächsten Version erneut versuchen." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:218 +msgid "A previous automatic background update could not occur." +msgstr "Eine vorherige automatische Aktualisierung im Hintergrund konnte nicht durchgeführt werden." + +#. translators: %s: Code of error shown. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:209 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:226 +msgid "The error code was %s." +msgstr "Der Fehler-Code war %s." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:206 +msgid "When you've been able to update using the \"Update Now\" button on Dashboard > Updates, we'll clear this error for future update attempts." +msgstr "Wenn du das Update über den Button „Jetzt aktualisieren“ unter Dashboard > Aktualisierungen ausführen konntest, wird dieser Fehler für zukünftige Aktualisierungsversuche behoben." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:205 +#: wp-admin/includes/class-wp-site-health-auto-updates.php:220 +msgid "You would have received an email because of this." +msgstr "Du solltest deshalb eine E-Mail erhalten haben." + +#: wp-admin/includes/class-wp-site-health-auto-updates.php:204 +msgid "A previous automatic background update ended with a critical failure, so updates are now disabled." +msgstr "Eine vorherige automatische Aktualisierung im Hintergrund endete mit einem kritischen Fehler, weshalb Aktualisierungen nun deaktiviert sind." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:157 +msgid "The %s filter is enabled." +msgstr "Der Filter %s ist aktiviert." + +#. translators: %s: Name of the filter used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:136 +msgid "A plugin has prevented updates by disabling %s." +msgstr "Ein Plugin hat Aktualisierungen verhindert, indem es %s deaktiviert hat." + +#. translators: %s: Name of the constant used. +#: wp-admin/includes/class-wp-site-health-auto-updates.php:77 +msgid "The %s constant is defined and enabled." +msgstr "Die Konstante %s wurde definiert und aktiviert." + +#: wp-admin/includes/class-wp-debug-data.php:1350 +msgid "The must use plugins directory" +msgstr "Das Must-Use-Plugins-Verzeichnis" + +#: wp-admin/includes/class-wp-debug-data.php:1099 +msgid "Theme features" +msgstr "Theme-Funktionen" + +#: wp-admin/includes/class-wp-debug-data.php:1094 +#: wp-admin/includes/class-theme-installer-skin.php:244 +msgid "Parent theme" +msgstr "Übergeordnetes Theme" + +#: wp-admin/includes/class-wp-debug-data.php:1089 +#: wp-admin/includes/class-wp-debug-data.php:1186 +msgid "Author website" +msgstr "Website des Autors" + +#. translators: %s: Latest WordPress version number. +#. translators: %s: Latest plugin version number. +#. translators: %s: Latest theme version number. +#: wp-admin/includes/class-wp-debug-data.php:54 +#: wp-admin/includes/class-wp-debug-data.php:953 +#: wp-admin/includes/class-wp-debug-data.php:1046 +#: wp-admin/includes/class-wp-debug-data.php:1160 +#: wp-admin/includes/class-wp-debug-data.php:1282 +msgid "(Latest version: %s)" +msgstr "(Aktuelle Version: %s)" + +#. translators: 1: Plugin version number. 2: Plugin author name. +#. translators: 1: Theme version number. 2: Theme author name. +#: wp-admin/includes/class-wp-debug-data.php:888 +#: wp-admin/includes/class-wp-debug-data.php:935 +#: wp-admin/includes/class-wp-debug-data.php:1264 +msgid "Version %1$s by %2$s" +msgstr "Version %1$s von %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:883 +#: wp-admin/includes/class-wp-debug-data.php:930 +#: wp-admin/includes/class-wp-debug-data.php:1259 +msgid "No version or author information is available." +msgstr "Es sind keine Versions- oder Autoren-Informationen verfügbar." + +#: wp-admin/includes/class-wp-debug-data.php:831 +msgid "Server version" +msgstr "Server-Version" + +#: wp-admin/includes/class-wp-debug-data.php:826 +msgid "Extension" +msgstr "Erweiterung" + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:790 +msgid "Your %s file contains only core WordPress features." +msgstr "Deine %s-Datei enthält nur die WordPress-Core-Funktionen." + +#. translators: %s: .htaccess +#: wp-admin/includes/class-wp-debug-data.php:787 +msgid "Custom rules have been added to your %s file." +msgstr "Individuelle Regeln wurden deiner %s-Datei hinzugefügt." + +#: wp-admin/includes/class-wp-debug-data.php:794 +msgid ".htaccess rules" +msgstr ".htaccess-Regeln" + +#: wp-admin/includes/class-wp-debug-data.php:762 +msgid "Is the Imagick library available?" +msgstr "Ist die Imagick-Bibliothek verfügbar?" + +#: wp-admin/includes/class-wp-debug-data.php:753 +msgid "Is SUHOSIN installed?" +msgstr "Ist SUHOSIN installiert?" + +#: wp-admin/includes/class-wp-debug-data.php:738 +#: wp-admin/includes/class-wp-debug-data.php:743 +msgid "cURL version" +msgstr "cURL-Version" + +#: wp-admin/includes/class-wp-debug-data.php:729 +msgid "PHP post max size" +msgstr "Maximale Größe der PHP-Post-Daten (post_max_size)" + +#: wp-admin/includes/class-wp-debug-data.php:725 +msgid "Upload max filesize" +msgstr "Maximale Dateigröße beim Upload (upload_max_filesize)" + +#: wp-admin/includes/class-wp-debug-data.php:721 +msgid "Max input time" +msgstr "Maximale Eingabe-Zeit (max_input_time)" + +#: wp-admin/includes/class-wp-debug-data.php:706 +#: wp-admin/includes/class-wp-debug-data.php:715 +msgid "PHP memory limit" +msgstr "PHP-Speicher-Limit (memory_limit)" + +#: wp-admin/includes/class-wp-debug-data.php:700 +msgid "PHP time limit" +msgstr "Maximale PHP-Ausführungszeit (max_execution_time)" + +#: wp-admin/includes/class-wp-debug-data.php:696 +msgid "PHP max input variables" +msgstr "Maximale PHP-Eingabe-Variablen (max_input_vars)" + +#. translators: %s: ini_get() +#: wp-admin/includes/class-wp-debug-data.php:533 +#: wp-admin/includes/class-wp-debug-data.php:689 +msgid "Unable to determine some settings, as the %s function has been disabled." +msgstr "Einige Einstellungen konnten nicht ausgelesen werden, da die Funktion %s deaktiviert ist." + +#: wp-admin/includes/class-wp-debug-data.php:686 +msgid "Server settings" +msgstr "Server-Einstellungen" + +#: wp-admin/includes/class-wp-debug-data.php:679 +msgid "Unable to determine PHP SAPI" +msgstr "Es ist nicht möglich, die PHP-SAPI zu bestimmen" + +#: wp-admin/includes/class-wp-debug-data.php:678 +msgid "PHP SAPI" +msgstr "PHP-SAPI" + +#: wp-admin/includes/class-wp-debug-data.php:645 +msgid "(Does not support 64bit values)" +msgstr "(Unterstützt keine 64bit-Werte)" + +#: wp-admin/includes/class-wp-debug-data.php:645 +msgid "(Supports 64bit values)" +msgstr "(Unterstützt 64bit-Werte)" + +#: wp-admin/includes/class-wp-debug-data.php:652 +msgid "Unable to determine PHP version" +msgstr "Es ist nicht möglich, die PHP-Version zu bestimmen" + +#: wp-admin/includes/class-wp-debug-data.php:673 +msgid "PHP version" +msgstr "PHP-Version" + +#: wp-admin/includes/class-wp-debug-data.php:669 +msgid "Unable to determine what web server software is used" +msgstr "Die verwendete Webserver-Software kann nicht ermittelt werden" + +#: wp-admin/includes/class-wp-debug-data.php:668 +msgid "Web server" +msgstr "Webserver" + +#: wp-admin/includes/class-wp-debug-data.php:664 +msgid "Unable to determine server architecture" +msgstr "Es ist nicht möglich, die Server-Architektur zu bestimmen" + +#: wp-admin/includes/class-wp-debug-data.php:663 +msgid "Server architecture" +msgstr "Server-Architektur" + +#: wp-admin/includes/class-wp-debug-data.php:625 +msgid "Ghostscript version" +msgstr "Ghostscript-Version" + +#: wp-admin/includes/class-wp-debug-data.php:620 +msgid "Unable to determine if Ghostscript is installed" +msgstr "Es kann nicht festgestellt werden, ob Ghostscript installiert ist" + +#: wp-admin/includes/class-wp-debug-data.php:604 +msgid "GD version" +msgstr "GD-Version" + +#: wp-admin/includes/class-wp-debug-data.php:590 +msgid "Imagick Resource Limits" +msgstr "Imagick-Resource-Limits" + +#: wp-admin/includes/class-wp-debug-data.php:524 +msgid "ImageMagick version string" +msgstr "ImageMagick-Versions-Zeichenfolge" + +#: wp-admin/includes/class-wp-debug-data.php:519 +msgid "ImageMagick version number" +msgstr "ImageMagick-Versionsnummer" + +#: wp-admin/includes/class-wp-debug-data.php:493 +#: wp-admin/includes/class-wp-debug-data.php:515 +#: wp-admin/includes/class-wp-debug-data.php:1595 +msgid "Not available" +msgstr "Nicht verfügbar" + +#: wp-admin/includes/class-wp-debug-data.php:505 +msgid "Active editor" +msgstr "Aktiver Editor" + +#: wp-admin/includes/class-wp-debug-data.php:479 +msgid "Total installation size" +msgstr "Gesamtgröße der Installation" + +#: wp-admin/includes/class-wp-debug-data.php:474 +msgid "Database size" +msgstr "Datenbank-Größe" + +#: wp-admin/includes/class-wp-debug-data.php:442 +msgid "WordPress directory size" +msgstr "Größe des WordPress-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:438 +msgid "WordPress directory location" +msgstr "Ort des WordPress-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:469 +msgid "Plugins directory size" +msgstr "Größe des Plugins-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:465 +msgid "Plugins directory location" +msgstr "Ort des Plugins-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:460 +msgid "Themes directory size" +msgstr "Größe des Themes-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:1103 +#: wp-admin/includes/class-wp-debug-data.php:1191 +msgid "Theme directory location" +msgstr "Ort des Theme-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:451 +msgid "Uploads directory size" +msgstr "Größe des Uploads-Verzeichnisses" + +#: wp-admin/includes/class-wp-debug-data.php:447 +msgid "Uploads directory location" +msgstr "Ort des Uploads-Verzeichnisses" + +#. translators: 1: The IP address WordPress.org resolves to. 2: The error +#. returned by the lookup. +#: wp-admin/includes/class-wp-debug-data.php:424 +msgid "Unable to reach WordPress.org at %1$s: %2$s" +msgstr "Es ist nicht möglich, WordPress.org unter %1$s zu erreichen: %2$s" + +#: wp-admin/includes/class-wp-debug-data.php:416 +msgid "WordPress.org is reachable" +msgstr "WordPress.org ist erreichbar" + +#: wp-admin/includes/class-wp-debug-data.php:415 +#: wp-admin/includes/class-wp-debug-data.php:421 +#: wp-admin/includes/class-wp-site-health.php:2156 +msgid "Communication with WordPress.org" +msgstr "Verbindung mit WordPress.org" + +#: wp-admin/includes/class-wp-debug-data.php:398 +msgid "Network count" +msgstr "Anzahl der Netzwerke" + +#: wp-admin/includes/class-wp-debug-data.php:393 +msgid "Site count" +msgstr "Anzahl der Websites" + +#: wp-admin/includes/class-wp-debug-data.php:388 +#: wp-admin/includes/class-wp-debug-data.php:405 +msgid "User count" +msgstr "Anzahl der Benutzer" + +#: wp-admin/includes/class-wp-debug-data.php:364 +msgid "The themes directory" +msgstr "Das Themes-Verzeichnis" + +#: wp-admin/includes/class-wp-debug-data.php:359 +msgid "The plugins directory" +msgstr "Das Plugins-Verzeichnis" + +#: wp-admin/includes/class-wp-debug-data.php:354 +msgid "The uploads directory" +msgstr "Das Uploads-Verzeichnis" + +#: wp-admin/includes/class-wp-debug-data.php:349 +msgid "The wp-content directory" +msgstr "Das „wp-content“-Verzeichnis" + +#: wp-admin/includes/class-wp-debug-data.php:345 +#: wp-admin/includes/class-wp-debug-data.php:350 +#: wp-admin/includes/class-wp-debug-data.php:355 +#: wp-admin/includes/class-wp-debug-data.php:360 +#: wp-admin/includes/class-wp-debug-data.php:365 +#: wp-admin/includes/class-wp-debug-data.php:1351 +msgid "Not writable" +msgstr "Nicht beschreibbar" + +#: wp-admin/includes/class-wp-debug-data.php:345 +#: wp-admin/includes/class-wp-debug-data.php:350 +#: wp-admin/includes/class-wp-debug-data.php:355 +#: wp-admin/includes/class-wp-debug-data.php:360 +#: wp-admin/includes/class-wp-debug-data.php:365 +#: wp-admin/includes/class-wp-debug-data.php:1351 +msgid "Writable" +msgstr "Beschreibbar" + +#: wp-admin/includes/class-wp-debug-data.php:344 +msgid "The main WordPress directory" +msgstr "Das Hauptverzeichnis von WordPress" + +#: wp-admin/includes/class-wp-debug-data.php:341 +msgid "Shows whether WordPress is able to write to the directories it needs access to." +msgstr "Zeigt an, ob WordPress in die Verzeichnisse schreiben kann, auf die es Zugriff benötigt." + +#: wp-admin/includes/class-wp-debug-data.php:340 +msgid "Filesystem Permissions" +msgstr "Dateisystem-Berechtigungen" + +#: wp-admin/includes/class-wp-debug-data.php:213 +#: wp-admin/includes/class-wp-debug-data.php:222 +#: wp-admin/includes/class-wp-debug-data.php:231 +#: wp-admin/includes/class-wp-debug-data.php:240 +#: wp-admin/includes/class-wp-debug-data.php:255 +#: wp-admin/includes/class-wp-debug-data.php:260 +#: wp-admin/includes/class-wp-debug-data.php:322 +#: wp-admin/includes/class-wp-debug-data.php:327 +#: wp-admin/includes/class-wp-debug-data.php:1090 +#: wp-admin/includes/class-wp-debug-data.php:1187 +msgid "Undefined" +msgstr "Nicht definiert" + +#: wp-admin/includes/class-wp-debug-data.php:245 +msgid "WordPress Constants" +msgstr "WordPress-Konstanten" + +#: wp-admin/includes/class-wp-debug-data.php:195 +msgid "Database" +msgstr "Datenbank" + +#: wp-admin/includes/class-wp-debug-data.php:190 +msgid "The options shown below relate to your server setup. If changes are required, you may need your web host’s assistance." +msgstr "Die unten aufgeführten Optionen beziehen sich auf deine Serverkonfiguration. Wenn Änderungen erforderlich sind, benötigst du möglicherweise die Unterstützung deines Webhosting-Unternehmens." + +#: wp-admin/includes/class-wp-debug-data.php:189 +msgid "Server" +msgstr "Server" + +#: wp-admin/includes/class-wp-debug-data.php:184 +msgid "Media Handling" +msgstr "Medien-Handhabung" + +#: wp-admin/includes/class-wp-debug-data.php:178 +msgid "Inactive Plugins" +msgstr "Inaktive Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:172 +msgid "Active Plugins" +msgstr "Aktive Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:166 +msgid "Must Use Plugins" +msgstr "Must-Use-Plugins" + +#: wp-admin/includes/class-wp-debug-data.php:150 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:904 +msgid "Active Theme" +msgstr "Aktives Theme" + +#: wp-admin/includes/class-wp-debug-data.php:139 +msgid "Drop-ins" +msgstr "Drop-ins" + +#: wp-admin/includes/class-wp-debug-data.php:133 +msgid "Directories and Sizes" +msgstr "Verzeichnisse und Größen" + +#: wp-admin/includes/class-wp-debug-data.php:104 +msgid "Is this a multisite?" +msgstr "Ist dies eine Multisite?" + +#: wp-admin/includes/class-wp-debug-data.php:119 +msgid "Default comment status" +msgstr "Standard-Kommentarstatus" + +#: wp-admin/includes/class-wp-debug-data.php:109 +msgid "Can anyone register on this site?" +msgstr "Kann sich jeder auf dieser Website registrieren?" + +#: wp-admin/includes/class-wp-debug-data.php:99 +msgid "Is this site using HTTPS?" +msgstr "Verwendet diese Website HTTPS?" + +#: wp-admin/includes/class-wp-debug-data.php:95 +msgid "No permalink structure set" +msgstr "Keine Permalink-Struktur definiert" + +#: wp-admin/includes/class-wp-debug-data.php:94 +msgid "Permalink structure" +msgstr "Permalink-Struktur" + +#: wp-admin/includes/class-wp-debug-data.php:89 +msgid "Site URL" +msgstr "Website-URL" + +#: wp-admin/includes/class-wp-debug-data.php:84 +msgid "Home URL" +msgstr "Homepage-URL" + +#: wp-admin/site-health-info.php:35 wp-admin/site-health.php:40 +#: wp-admin/menu.php:282 +msgid "Site Health" +msgstr "Website-Zustand" + +#. translators: %s: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:157 +msgctxt "requests" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%d)" + +#: wp-admin/menu.php:247 wp-admin/network/menu.php:107 +msgid "Plugin Editor" +msgstr "Plugin-Editor" + +#: wp-admin/menu.php:224 wp-admin/network/menu.php:82 +msgid "Theme Editor" +msgstr "Theme-Editor" + +#: wp-admin/options-discussion.php:92 +msgid "Show comments cookies opt-in checkbox, allowing comment author cookies to be set" +msgstr "Das Opt-in-Kontrollkästchen für Kommentar-Cookies anzeigen, damit die Cookies des Kommentar-Autors gesetzt werden können" + +#: wp-admin/theme-install.php:408 +msgid "Next theme" +msgstr "Nächstes Theme" + +#: wp-admin/theme-install.php:407 +msgid "Previous theme" +msgstr "Vorheriges Theme" + +#: wp-admin/user-edit.php:508 +msgid "If you change this, we will send you an email at your new address to confirm it. The new address will not become active until confirmed." +msgstr "Wenn du das änderst, senden wir dir eine E-Mail an deine neue Adresse, um die Änderung zu bestätigen. Die neue Adresse wird erst nach Bestätigung aktiv." + +#: wp-admin/themes.php:284 +msgid "Theme resumed." +msgstr "Theme wiederhergestellt." + +#: wp-admin/themes.php:288 +msgid "Theme could not be resumed because it triggered a fatal error." +msgstr "Das Theme konnte nicht wiederhergestellt werden, da es einen fatalen Fehler ausgelöst hat." + +#: wp-admin/plugins.php:633 +msgid "If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin." +msgstr "Wenn du „headers already sent“-Hinweise, Probleme mit Syndication-Feeds oder andere Probleme bemerkst, versuche, dieses Plugin zu deaktivieren oder zu entfernen." + +#. translators: %d: Number of characters. +#: wp-admin/plugins.php:626 +msgid "The plugin generated %d character of unexpected output during activation." +msgid_plural "The plugin generated %d characters of unexpected output during activation." +msgstr[0] "Das Plugin erzeugte %d Zeichen mit unerwarteter Ausgabe während der Aktivierung." +msgstr[1] "Das Plugin erzeugte %d Zeichen mit unerwarteter Ausgabe während der Aktivierung." + +#: wp-admin/plugins.php:431 +msgid "Sorry, you are not allowed to resume this plugin." +msgstr "Du bist leider nicht berechtigt, das Plugin wiederherzustellen." + +#. translators: %s: WordPress Planet URL. +#: wp-admin/index.php:87 +msgid "WordPress Events and News — Upcoming events near you as well as the latest news from the official WordPress project and the WordPress Planet." +msgstr "WordPress-Veranstaltungen und Neuigkeiten – Beinhaltet kommende Veranstaltungen in deiner Nähe, sowie die neuesten Nachrichten aus dem offiziellen WordPress-Projekt und dem WordPress Planet." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number +#. including locale if necessary. +#: wp-admin/update-core.php:128 +msgid "You can update to WordPress %2$s automatically:" +msgstr "Du kannst auf WordPress %2$s automatisch aktualisieren:" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/update-core.php:119 wp-admin/upgrade.php:119 +msgid "You cannot update because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Du kannst nicht aktualisieren, weil WordPress %2$s MySQL-Version %3$s oder höher erfordert. Du verwendest die Version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/update-core.php:110 wp-admin/upgrade.php:110 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Du kannst nicht aktualisieren, weil WordPress %2$s PHP-Version %3$s oder höher erfordert. Du verwendest die Version %4$s." + +#: wp-admin/nav-menus.php:932 +msgid "Add menu items" +msgstr "Menüeinträge hinzufügen" + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:898 +msgid "or create a new menu. Don’t forget to save your changes!" +msgstr "oder erstelle ein neues Menü. Vergiss nicht, deine Änderungen zu speichern!" + +#: wp-admin/nav-menus.php:845 wp-admin/nav-menus.php:910 +msgid "Click the Save Menu button to save your changes." +msgstr "Den Menü-Button „Speichern“ klicken, um die Änderungen zu speichern." + +#. translators: %s: URL to create a new menu. +#: wp-admin/nav-menus.php:833 +msgid "Edit your menu below, or create a new menu. Don’t forget to save your changes!" +msgstr "Bearbeite dein Menü unten, oder erstelle ein neues Menü. Vergiss nicht, deine Änderungen zu speichern!" + +#: wp-admin/nav-menus.php:826 +msgid "Fill in the Menu Name and click the Create Menu button to create your first menu." +msgstr "Trag den Menü-Namen ein und klick auf die Schaltfläche „Menü erstellen“, um dein erstes Menü zu erstellen." + +#: wp-admin/nav-menus.php:825 +msgid "Create your first menu below." +msgstr "Erstelle unten dein erstes Menü." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required MySQL version number, 4: Current MySQL version number. +#: wp-admin/install.php:277 +msgid "You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s." +msgstr "Du kannst nicht installieren, weil WordPress %2$s MySQL-Version %3$s oder höher erfordert. Du verwendest die Version %4$s." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Current PHP version number. +#: wp-admin/install.php:268 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s." +msgstr "Du kannst nicht installieren, weil WordPress %2$s PHP-Version %3$s oder höher erfordert. Du verwendest die Version %4$s." + +#: wp-admin/includes/dashboard.php:1913 +msgid "Set up your homepage" +msgstr "Deine Homepage anlegen" + +#: wp-admin/includes/class-wp-site-health.php:734 +#: wp-admin/includes/dashboard.php:1754 +msgid "Learn more about updating PHP" +msgstr "Mehr über die Aktualisierung von PHP erfahren" + +#: wp-admin/includes/dashboard.php:1746 +msgid "What is PHP and how does it affect my site?" +msgstr "Was ist PHP und inwiefern betrifft es meine Website?" + +#: wp-admin/includes/dashboard.php:1740 +msgid "WordPress has detected that your site is running on an outdated version of PHP." +msgstr "WordPress hat festgestellt, dass deine Website auf einer veralteten Version von PHP läuft." + +#: wp-admin/includes/dashboard.php:1738 +msgid "WordPress has detected that your site is running on an insecure version of PHP." +msgstr "WordPress hat festgestellt, dass deine Website auf einer unsicheren Version von PHP läuft." + +#: wp-admin/includes/dashboard.php:42 +msgid "PHP Update Required" +msgstr "PHP-Update erforderlich" + +#: wp-admin/includes/plugin.php:2480 +msgid "You can find more details and make changes on the Plugins screen." +msgstr "Mehr Details und Änderungsoptionen auf der Plugin-Übersichtsseite." + +#: wp-admin/includes/plugin.php:2479 +msgid "One or more plugins failed to load properly." +msgstr "Mindestens ein Plugin konnte nicht geladen werden." + +#: wp-admin/includes/plugin.php:2452 +msgid "Could not resume the plugin." +msgstr "Das Plugin konnte nicht wiederhergestellt werden." + +#: wp-admin/includes/plugin.php:501 +msgid "Custom PHP fatal error handler." +msgstr "Individueller PHP-fatal-error-handler." + +#: wp-admin/includes/plugin.php:500 +msgid "Custom PHP error message." +msgstr "Individuelle PHP-Fehlermeldung." + +#: wp-admin/includes/class-language-pack-upgrader.php:122 +msgid "Could not remove the old translation." +msgstr "Alte Übersetzung konnte nicht entfernt werden." + +#: wp-admin/includes/class-language-pack-upgrader.php:121 +msgid "Removing the old version of the translation…" +msgstr "Alte Übersetzung wird entfernt…" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/plugin-install.php:831 +msgid "Click here to update WordPress." +msgstr "Klick hier, um WordPress zu aktualisieren." + +#: wp-admin/includes/plugin-install.php:827 +msgid "Error: This plugin requires a newer version of WordPress." +msgstr "Fehler: Dieses Plugin benötigt eine neuere Version von WordPress." + +#. translators: %s: URL to Update PHP page. +#: wp-admin/includes/plugin-install.php:810 +msgid "Click here to learn more about updating PHP." +msgstr "Klick hier, um mehr über die Aktualisierung von PHP zu erfahren." + +#: wp-admin/includes/plugin-install.php:806 +msgid "Error: This plugin requires a newer version of PHP." +msgstr "Fehler: Dieses Plugin benötigt eine neuere Version von PHP." + +#. translators: %s: Widget title. +#: wp-admin/includes/widgets.php:255 +msgid "Add widget: %s" +msgstr "Widget hinzufügen: %s" + +#. translators: %s: Widgets sidebar name. +#: wp-admin/includes/widgets.php:95 +msgid "Add to: %s" +msgstr "Hinzufügen zu: %s" + +#. translators: Audio file track information. %s: Audio track number. +#: wp-admin/includes/media.php:367 +msgid "Track %s." +msgstr "%s verfolgen." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:421 +msgid "Copy this section to clipboard" +msgstr "Diesen Abschnitt in die Zwischenablage kopieren" + +#: wp-admin/includes/schema.php:1238 +msgid "My Network" +msgstr "Mein Netzwerk" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:683 +msgid "This plugin doesn’t work with your version of PHP." +msgstr "Dieses Plugin funktioniert nicht mit deiner PHP-Version." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:674 +msgid "This plugin doesn’t work with your version of WordPress." +msgstr "Dieses Plugin funktioniert nicht mit deiner WordPress-Version." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:650 +msgid "This plugin doesn’t work with your versions of WordPress and PHP." +msgstr "Dieses Plugin funktioniert nicht mit deinen Versionen von WordPress und PHP. " + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:538 +#: wp-admin/includes/plugin-install.php:864 +msgctxt "plugin" +msgid "Cannot Install" +msgstr "Installation nicht möglich" + +#. translators: %s: WordPress version. +#: wp-admin/includes/update.php:300 wp-admin/install.php:238 +#: wp-admin/update-core.php:80 wp-admin/upgrade.php:80 wp-admin/about.php:86 +msgid "https://wordpress.org/support/wordpress-version/version-%s/" +msgstr "https://wordpress.org/support/wordpress-version/version-%s/" + +#: wp-admin/includes/class-wp-plugins-list-table.php:842 +#: wp-admin/themes.php:613 +msgid "Resume" +msgstr "Fortsetzen" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:841 +msgctxt "plugin" +msgid "Resume %s" +msgstr "%s fortsetzen" + +#: wp-admin/includes/theme.php:1149 +msgid "You can find more details and make changes on the Themes screen." +msgstr "Weitere Details und Änderungen findest du in der Themes-Ansicht." + +#: wp-admin/includes/theme.php:1148 +msgid "One or more themes failed to load properly." +msgstr "Mindestens ein Theme konnte nicht korrekt geladen werden." + +#: wp-admin/includes/theme.php:1121 +msgid "Could not resume the theme." +msgstr "Das Theme konnte nicht wiederhergestellt werden." + +#. translators: %s: Default category. +#: wp-admin/edit-tags.php:598 +msgid "Deleting a category does not delete the posts in that category. Instead, posts that were only assigned to the deleted category are set to the default category %s. The default category cannot be deleted." +msgstr "Das Löschen einer Kategorie löscht nicht die Beiträge in dieser Kategorie. Stattdessen werden Beiträge, die nur der gelöschten Kategorie zugeordnet waren, auf die Standardkategorie %s gesetzt. Die Standardkategorie kann nicht gelöscht werden." + +#. translators: %s: A link to install the Classic Editor plugin. +#: wp-admin/edit-form-blocks.php:445 +msgid "The block editor requires JavaScript. Please enable JavaScript in your browser settings, or try the Classic Editor plugin." +msgstr "Der Block-Editor erfordert JavaScript. Bitte aktiviere JavaScript in deinen Browser-Einstellungen, oder benutze das Plugin Classic Editor." + +#: wp-admin/post.php:47 +msgid "A post type mismatch has been detected." +msgstr "Eine Abweichung des Inhaltstyps wurde entdeckt." + +#: wp-admin/includes/class-wp-screen.php:295 wp-admin/post.php:20 +msgid "A post ID mismatch has been detected." +msgstr "Eine Abweichung der Beitrags-ID wurde entdeckt." + +#. translators: %s: A link to use the Classic Editor plugin. +#: wp-admin/includes/template.php:1177 +msgid "Please open the classic editor to use this meta box." +msgstr "Bitte öffne den Classic Editor, um diese Metabox zu benutzen." + +#. translators: %s: A link to activate the Classic Editor plugin. +#: wp-admin/includes/template.php:1164 +msgid "Please activate the Classic Editor plugin to use this meta box." +msgstr "Bitte aktiviere das Plugin Classic Editor, um diese Metabox zu benutzen." + +#. translators: %s: A link to install the Classic Editor plugin. +#: wp-admin/includes/template.php:1154 +msgid "Please install the Classic Editor plugin to use this meta box." +msgstr "Bitte installiere das Plugin Classic Editor, um diese Metabox zu benutzen." + +#: wp-admin/includes/template.php:1145 +msgid "This meta box isn't compatible with the block editor." +msgstr "Diese Metabox ist nicht mit dem Block-Editor kompatibel." + +#: wp-admin/freedoms.php:81 +msgid "To distribute copies of your modified versions to others." +msgstr "Du darfst Kopien deiner geänderten Versionen an Dritte weitergeben." + +#: wp-admin/freedoms.php:80 +msgid "The 4th Freedom" +msgstr "Die vierte Freiheit" + +#: wp-admin/freedoms.php:76 +msgid "To redistribute." +msgstr "Weitergeben erlaubt." + +#: wp-admin/freedoms.php:75 +msgid "The 3rd Freedom" +msgstr "Die dritte Freiheit" + +#: wp-admin/freedoms.php:71 +msgid "To study how the program works and change it to make it do what you wish." +msgstr "Du darfst die Funktionsweise des Programms untersuchen und nach deinen Vorstellungen verändern." + +#: wp-admin/freedoms.php:70 +msgid "The 2nd Freedom" +msgstr "Die zweite Freiheit" + +#: wp-admin/freedoms.php:66 +msgid "To run the program for any purpose." +msgstr "Das Programm darf zu jedem Zweck eingesetzt werden." + +#: wp-admin/freedoms.php:65 +msgid "The 1st Freedom" +msgstr "Die erste Freiheit" + +#. translators: Use this to specify the CSS font family for the default font. +#: wp-admin/edit-form-blocks.php:185 +msgctxt "CSS Font Family for Editor Font" +msgid "Noto Serif" +msgstr "Noto Serif" + +#. translators: First post content. %s: Site link. +#: wp-admin/includes/upgrade.php:228 +msgid "Welcome to WordPress. This is your first post. Edit or delete it, then start writing!" +msgstr "Willkommen bei WordPress. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!" + +#. translators: First page content. %s: Site admin URL. +#: wp-admin/includes/upgrade.php:319 +msgid "As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!" +msgstr "Als neuer WordPress-Benutzer solltest du dein Dashboard aufrufen, um diese Seite zu löschen und neue Seiten und Beiträge für deine Website erstellen. Viel Spaß!" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:313 +msgid "The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community." +msgstr "Das Unternehmen XYZ wurde 1971 gegründet und versorgt die Öffentlichkeit seither mit qualitativ hochwertigen Produkten. An seinem Standort in einer kleinen Großstadt beschäftigt der Betrieb über 2.000 Menschen und unterstützt die Stadtbewohner in vielfacher Hinsicht." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:308 +msgid "...or something like this:" +msgstr "...oder so etwas wie das hier:" + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:303 +msgid "Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.)" +msgstr "Hallo! Tagsüber arbeite ich als Fahrradkurier, nachts bin ich ein aufstrebender Schauspieler und dies hier ist meine Website. Ich lebe in Berlin, habe einen großen Hund namens Jack, mag Piña Coladas, jedoch weniger (ohne Schirm) im Regen stehen gelassen zu werden." + +#. translators: First page content. +#: wp-admin/includes/upgrade.php:298 +msgid "This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:" +msgstr "Dies ist eine Beispiel-Seite. Sie unterscheidet sich von Beiträgen, da sie stets an derselben Stelle bleibt und (bei den meisten Themes) in der Website-Navigation angezeigt wird. Die meisten starten mit einem Impressum, der Datenschutzerklärung oder einer „Über uns“-Seite, um sich potenziellen Besuchern der Website vorzustellen. Dort könnte zum Beispiel stehen:" + +#: wp-admin/includes/class-wp-posts-list-table.php:1419 +msgid "Export as JSON" +msgstr "Als JSON exportieren" + +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:1418 +msgid "Export “%s” as JSON" +msgstr "„%s“ als JSON exportieren" + +#: wp-admin/edit.php:361 +msgid "1 block not updated, somebody is editing it." +msgstr "Ein Block wurde nicht aktualisiert, da er gerade von jemandem bearbeitet wird." + +#. translators: %s: Number of blocks. +#: wp-admin/edit.php:369 +msgid "%s block restored from the Trash." +msgid_plural "%s blocks restored from the Trash." +msgstr[0] "%s Block aus dem Papierkorb wiederhergestellt." +msgstr[1] "%s Blöcke aus dem Papierkorb wiederhergestellt." + +#. translators: %s: Number of blocks. +#: wp-admin/edit.php:367 +msgid "%s block moved to the Trash." +msgid_plural "%s blocks moved to the Trash." +msgstr[0] "%s Block in den Papierkorb verschoben." +msgstr[1] "%s Blöcke in den Papierkorb verschoben." + +#. translators: %s: Number of blocks. +#: wp-admin/edit.php:365 +msgid "%s block permanently deleted." +msgid_plural "%s blocks permanently deleted." +msgstr[0] "%s Block endgültig gelöscht." +msgstr[1] "%s Blöcke endgültig gelöscht." + +#. translators: %s: Number of blocks. +#: wp-admin/edit.php:360 +msgid "%s block updated." +msgid_plural "%s blocks updated." +msgstr[0] "%s Block aktualisiert." +msgstr[1] "%s Blöcke aktualisiert." + +#: wp-admin/setup-config.php:283 +msgid "Error: \"Table Prefix\" must not be empty." +msgstr "Fehler: „Tabellenpräfix“ darf nicht leer sein." + +#: wp-admin/includes/meta-boxes.php:1001 +#: wp-admin/includes/class-wp-posts-list-table.php:1721 +#: wp-admin/edit-form-blocks.php:164 +msgid "Default template" +msgstr "Standard-Template" + +#. translators: %s: The name of the plugin that generated this meta box. +#: wp-admin/includes/template.php:1143 wp-admin/includes/template.php:1381 +msgid "This meta box, from the %s plugin, isn't compatible with the block editor." +msgstr "Diese Metabox, von dem %s-Plugin, ist nicht mit dem Block-Editor kompatibel." + +#. translators: Header for the About section in a personal data export. +#: wp-admin/includes/privacy-tools.php:359 +msgctxt "personal data group label" +msgid "About" +msgstr "Über" + +#. translators: Page title of the About WordPress page in the admin. +#: wp-admin/about.php:13 +msgctxt "page title" +msgid "About" +msgstr "Über" + +#: wp-admin/includes/upgrade.php:380 wp-admin/options-privacy.php:58 +msgid "Privacy Policy" +msgstr "Datenschutzerklärung" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to preview Privacy +#. Policy page. +#: wp-admin/options-privacy.php:161 +msgid "Edit or preview your Privacy Policy page content." +msgstr "Bearbeite den Inhalt der Seite deiner Datenschutzerklärung oder sieh dir eine Voransicht an." + +#: wp-admin/includes/file.php:39 wp-admin/options-privacy.php:123 +msgid "Privacy Policy Page" +msgstr "Seite für Datenschutzerklärung" + +#. translators: %s: Page title. +#: wp-admin/includes/misc.php:1435 +msgid "%s (Draft)" +msgstr "%s (Entwurf)" + +#: wp-admin/options-privacy.php:25 +msgid "Privacy Policy page updated successfully." +msgstr "Seite für Datenschutzerklärung erfolgreich aktualisiert." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2343 +msgid "The suggested privacy policy content should be added by using the %s (or later) action. Please see the inline documentation." +msgstr "Der vorgeschlagene Inhalt der Datenschutzerklärung sollte mit der %s-Aktion (oder später) hinzugefügt werden. Bitte lies die Inline-Dokumentation." + +#. translators: %s: admin_init +#: wp-admin/includes/plugin.php:2332 +msgid "The suggested privacy policy content should be added only in wp-admin by using the %s (or later) action." +msgstr "Der vorgeschlagene Inhalt der Datenschutzerklärung sollte nur in wp-admin mit der %s-Aktion (oder später) hinzugefügt werden." + +#: wp-admin/includes/privacy-tools.php:321 +msgid "Unable to create export folder." +msgstr "Kann Export-Ordner nicht erstellen." + +#. translators: %s: Privacy Policy Guide URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:144 +msgid "The suggested privacy policy text has changed. Please review the guide and update your privacy policy." +msgstr "Der Textvorschlag für die Datenschutzerklärung hat sich geändert. Bitte lies den Leitfaden und aktualisiere deine Datenschutzerklärung." + +#: wp-admin/options-privacy.php:239 +msgid "There are no pages." +msgstr "Es sind keine Seiten vorhanden." + +#: wp-admin/options-privacy.php:237 +msgid "Or:" +msgstr "Oder:" + +#: wp-admin/options-privacy.php:133 +msgid "After your Privacy Policy page is set, we suggest that you edit it." +msgstr "Nachdem deine Seite zur Datenschutzerklärung eingerichtet wurde, empfehlen wir dir, sie anzupassen." + +#. translators: 1: Privacy Policy guide URL, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-admin/options-privacy.php:175 +msgid "Need help putting together your new Privacy Policy page? Check out our guide%3$s for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Brauchst du Hilfe beim Zusammenstellen deiner neuen Seite zur Datenschutzerklärung? Sieh dir unseren Leitfaden an%3$s mit Empfehlungen, welcher Inhalt zusammen mit vorgeschlagenen Erklärungen deiner Plugins und Themes eingefügt werden sollte." + +#: wp-admin/privacy-policy-guide.php:20 +msgid "Privacy Policy Guide" +msgstr "Leitfaden zur Datenschutzerklärung" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:622 +msgid "Visitor comments may be checked through an automated spam detection service." +msgstr "Besucher-Kommentare könnten von einem automatisierten Dienst zur Spam-Erkennung untersucht werden." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:572 +msgid "In this subsection you should note what analytics package you use, how users can opt out of analytics tracking, and a link to your analytics provider’s privacy policy, if any." +msgstr "In diesem Unterabschnitt solltest du angeben, welche Analysedienste du verwendest, wie Benutzer das Analyse-Tracking ablehnen können sowie einen Link zur Datenschutzerklärung deines Analysedienst-Anbieters einfügen, falls vorhanden." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:529 +msgid "In this subsection you should note what information may be disclosed by users who can upload media files. All uploaded files are usually publicly accessible." +msgstr "In diesem Unterabschnitt solltest du angeben, welche Informationen von Benutzern offengelegt werden, die Mediendateien hochladen können. Auf alle hochgeladenen Dateien kann in der Regel öffentlich zugegriffen werden." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:516 +msgid "In this subsection you should note what information is captured through comments. We have noted the data which WordPress collects by default." +msgstr "In diesem Unterabschnitt solltest du angeben, welche Informationen in Kommentaren erfasst werden. Wir haben die Daten angegeben, die WordPress standardmäßig sammelt." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:500 +msgid "In this section you should note what personal data you collect from users and site visitors. This may include personal data, such as name, email address, personal account preferences; transactional data, such as purchase information; and technical data, such as information about cookies." +msgstr "In diesem Abschnitt solltest du angeben, welche personenbezogenen Daten du von Benutzern und Besuchern deiner Website sammelst. Dies können personenbezogene Daten wie Name, E-Mail-Adresse, persönliche Kontoeinstellungen, Transaktionsdaten wie z. B. Kaufinformationen sowie technische Daten wie z. B. Informationen über Cookies sein." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:473 +msgid "Suggested text:" +msgstr "Textvorschlag:" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:450 +msgid "We have suggested the sections you will need. Under each section heading you will find a short summary of what information you should provide, which will help you to get started. Some sections include suggested policy content, others will have to be completed with information from your theme and plugins." +msgstr "Wir haben die Abschnitte vorgeschlagen, die du brauchen wirst. Unterhalb jeder Abschnittsüberschrift wirst du eine kurze Zusammenfassung der Informationen finden, die du angeben solltest. Dies wird dir den Start erleichtern. Einige Abschnitte enthalten vorgeschlagene Inhalte zum Datenschutz, andere müssen mit Informationen aus deinem Theme und deinen Plugins ergänzt werden." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-privacy-policy-content.php:413 +msgid "Source: %s" +msgstr "Quelle: %s" + +#. translators: %s: Date of privacy policy text update. +#: wp-admin/includes/class-wp-privacy-policy-content.php:399 +msgid "Updated %s." +msgstr "Aktualisiert am %s." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:393 +msgid "You deactivated this plugin on %s and may no longer need this policy." +msgstr "Du hast dieses Plugin am %s deaktiviert und benötigst möglicherweise dessen Datenschutzerklärung nicht mehr." + +#. translators: %s: Date of plugin deactivation. +#: wp-admin/includes/class-wp-privacy-policy-content.php:390 +msgid "Removed %s." +msgstr "Gelöscht am %s." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:378 +#: wp-admin/includes/class-wp-privacy-policy-content.php:447 +msgid "Introduction" +msgstr "Einführung" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:330 +msgid "Need help putting together your new Privacy Policy page? Check out our guide for recommendations on what content to include, along with policies suggested by your plugins and theme." +msgstr "Brauchst du Hilfe beim Zusammenstellen deiner neuen Seite zur Datenschutzerklärung? Informiere dich in unserem Leitfaden über Empfehlungen zu den zu integrierenden Inhalten, sowie über die von deinen Plugins und deinem Theme vorgeschlagenen Richtlinien." + +#: wp-admin/includes/privacy-tools.php:908 +msgid "Invalid request ID when processing eraser data." +msgstr "Ungültige Anfrage-ID bei der Bearbeitung von zu löschenden Daten." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:65 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:109 +msgid "Erasing Data..." +msgstr "Daten löschen â€¦" + +#: wp-admin/erase-personal-data.php:60 +msgid "Add Data Erasure Request" +msgstr "Antrag für eine Datenlöschung hinzufügen" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:102 +msgid "Send Export Link" +msgstr "Export-Link senden" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:677 +msgid "If you are a member of a regulated industry, or if you are subject to additional privacy laws, you may be required to disclose that information here." +msgstr "Wenn du einer regulierten Branche angehörst oder zusätzlichen Datenschutzgesetzen unterliegst, bist du möglicherweise verpflichtet, diese Informationen hier offenzulegen." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:673 +msgid "Industry regulatory disclosure requirements" +msgstr "Vorausgesetzte Offenlegungspflichten der Industrie" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:669 +msgid "If your web site provides a service which includes automated decision making - for example, allowing customers to apply for credit, or aggregating their data into an advertising profile - you must note that this is taking place, and include information about how that information is used, what decisions are made with that aggregated data, and what rights users have over decisions made without human intervention." +msgstr "Falls deine Website einen Dienst anbietet, der automatisierte Entscheidungsfindung beinhaltet, z. B. für Kreditanfragen von Benutzern oder das Sammeln derer Daten für ein Werbeprofil, musst du darauf hinweisen, dass dies geschiet. Und desweiteren Informationen darüber anbieten, wie diese Informationen genutzt werden, welche Entscheidungen aufgrund dieser zusammengetragenen Daten getroffen werden und welche Rechte Benutzer an den Entscheidungen haben, die ohne menschliches Zutun getroffen werden." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:665 +msgid "What automated decision making and/or profiling we do with user data" +msgstr "Welche automatisierte Entscheidungsfindung und/oder Profilerstellung wir mit Benutzerdaten durchführen" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:661 +msgid "If your web site receives data about users from third parties, including advertisers, this information must be included within the section of your privacy policy dealing with third party data." +msgstr "Falls deine Website von Dritten Daten über Benutzer erhält, inklusive Werbetreibenden, muss diese Information innerhalb des Abschnitts deiner Datenschutzerklärung enthalten sein, der Auskunft über Daten von Dritten gibt." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:657 +msgid "What third parties we receive data from" +msgstr "Von welchen Drittanbietern wir Daten erhalten" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:653 +msgid "In this section you should explain what procedures you have in place to deal with data breaches, either potential or real, such as internal reporting systems, contact mechanisms, or bug bounties." +msgstr "In diesem Bereich solltest du erläutern, welche Maßnahmen du ergriffen hast, um mit potentiellen oder realen Datenlecks umzugehen, beispielsweise interne Reporting-Systeme, Kontaktmechanismen oder Bug-Bounty-Programme." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:649 +msgid "What data breach procedures we have in place" +msgstr "Welche Maßnahmen wir bei Datenschutzverletzungen anbieten" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:645 +msgid "In this section you should explain what measures you have taken to protect your users’ data. This could include technical measures such as encryption; security measures such as two factor authentication; and measures such as staff training in data protection. If you have carried out a Privacy Impact Assessment, you can mention it here too." +msgstr "In diesem Bereich solltest du erläutern, welche Maßnahmen du ergriffen hast, um deine Benutzerdaten zu schützen. Dies umfasst technische Maßnahmen wie Verschlüsselung, Sicherheitsmaßnahmen wie Zwei-Faktor-Authentifizierung und menschliche Faktoren wie Datenschutz-Schulungen für die Mitarbeiter. Wenn du eine Datenschutz-Folgenabschätzung erstellt hast, kannst du sie hier auch erwähnen." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:641 +msgid "How we protect your data" +msgstr "Wie wir deine Daten schützen" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:637 +msgid "If you use your site for commercial purposes and you engage in more complex collection or processing of personal data, you should note the following information in your privacy policy in addition to the information we have already discussed." +msgstr "Wenn du deine Website für kommerzielle Zwecke nutzt und weitergehende personenbezogene Daten sammelst bzw. verarbeitest, solltest du die folgende Information in deine Datenschutzerklärung aufnehmen, zusätzlich zu den Informationen, die wir bereits erwähnt haben." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:633 +msgid "Additional information" +msgstr "Weitere Informationen" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:629 +msgid "In this section you should provide a contact method for privacy-specific concerns. If you are required to have a Data Protection Officer, list their name and full contact details here as well." +msgstr "In diesem Bereich solltest du eine Kontaktmöglichkeit für datenschutzrelevante Anliegen anbieten. Wenn du einen Datenschutzbeauftragten einsetzt, führe den Namen und die vollständigen Kontaktdaten hier ebenfalls auf." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:625 +msgid "Your contact information" +msgstr "Deine Kontakt-Informationen" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:618 +msgid "European data protection law requires data about European residents which is transferred outside the European Union to be safeguarded to the same standards as if the data was in Europe. So in addition to listing where data goes, you should describe how you ensure that these standards are met either by yourself or by your third party providers, whether that is through an agreement such as Privacy Shield, model clauses in your contracts, or binding corporate rules." +msgstr "" +"Das europäische Datenschutzgesetz sieht vor, dass Daten über europäische Bewohner, die außerhalb der EU übertragen werden, mit denselben Standards geschützt werden müssen, als wenn die Daten in Europa verarbeitet würden.\n" +"Zusätzlich zu einer Auflistung, wohin die Daten übertragen werden, solltest du beschreiben, wie die Einhaltung der Standards durch dich oder Drittanbieter gewährleistet wird und ob dies durch eine Vereinbarung wie das Privacy Shield, eigene Vertragsklauseln oder auch Unternehmensrichtlinien erreicht wird." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:616 +msgid "In this section you should list all transfers of your site data outside the European Union and describe the means by which that data is safeguarded to European data protection standards. This could include your web hosting, cloud storage, or other third party services." +msgstr "In diesem Bereich solltest du alle Übertragungen der Daten von deiner Website mit Ziel außerhalb der EU aufführen und die Methoden beschreiben, mit denen die Daten nach dem europäischen Datenschutzbestimmungen geschützt werden. Dies kann dein Webhosting, deinen Cloud-Speicher oder andere Drittanbieter-Dienste betreffen." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:612 +msgid "Where we send your data" +msgstr "Wohin wir deine Daten senden" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:609 +msgid "If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes." +msgstr "Wenn du ein Konto auf dieser Website besitzt oder Kommentare geschrieben hast, kannst du einen Export deiner personenbezogenen Daten bei uns anfordern, inklusive aller Daten, die du uns mitgeteilt hast. Darüber hinaus kannst du die Löschung aller personenbezogenen Daten, die wir von dir gespeichert haben, anfordern. Dies umfasst nicht die Daten, die wir aufgrund administrativer, rechtlicher oder sicherheitsrelevanter Notwendigkeiten aufbewahren müssen." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:605 +msgid "In this section you should explain what rights your users have over their data and how they can invoke those rights." +msgstr "In diesem Abschnitt solltest du erklären, welche Datenschutzrechte die Benutzer deiner Website haben und wie sie diese geltend machen können." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:601 +msgid "What rights you have over your data" +msgstr "Welche Rechte du an deinen Daten hast" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:598 +msgid "For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information." +msgstr "Für Benutzer, die sich auf unserer Website registrieren, speichern wir zusätzlich die persönlichen Informationen, die sie in ihren Benutzerprofilen angeben. Alle Benutzer können jederzeit ihre persönlichen Informationen einsehen, verändern oder löschen (der Benutzername kann nicht verändert werden). Administratoren der Website können diese Informationen ebenfalls einsehen und verändern." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:596 +msgid "If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue." +msgstr "Wenn du einen Kommentar schreibst, wird dieser inklusive Metadaten zeitlich unbegrenzt gespeichert. Auf diese Art können wir Folgekommentare automatisch erkennen und freigeben, anstatt sie in einer Moderations-Warteschlange festzuhalten." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:592 +msgid "In this section you should explain how long you retain personal data collected or processed by the web site. While it is your responsibility to come up with the schedule of how long you keep each dataset for and why you keep it, that information does need to be listed here. For example, you may want to say that you keep contact form entries for six months, analytics records for a year, and customer purchase records for ten years." +msgstr "In diesem Bereich solltest du erläutern, wie lange du die personenbezogenen Daten, die du gesammelt oder verarbeitet hast, aufbewahrst. Während es in deiner Verantwortung liegt, eine Übersicht darüber, wie lange du jeden einzelnen Datensatz aufbewahrst und warum du das machst, zu erstellen, musst du diese hier im Detail aufführen. Beispielsweise kannst du eintragen, dass du Kontaktformulardaten für sechs Monate, Statistikdaten für ein Jahr und Bestelldaten für zehn Jahre aufbewahrst." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:588 +msgid "How long we retain your data" +msgstr "Wie lange wir deine Daten speichern" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:584 +msgid "By default WordPress does not share any personal data with anyone." +msgstr "Standardmäßig teilt WordPress keinerlei personenbezogene Daten mit Dritten." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:582 +msgid "In this section you should name and list all third party providers with whom you share site data, including partners, cloud-based services, payment processors, and third party service providers, and note what data you share with them and why. Link to their own privacy policies if possible." +msgstr "In diesem Abschnitt solltest du alle Drittanbieter mit Namen auflisten, mit denen du Daten der Website teilst, inklusive Partner, Cloud-basierte Dienstleister, Zahlungsdienstleister und Dritt-Dienstanbieter und aufzeigen, welche Daten du mit ihnen teilst und warum. Falls möglich füge Links zu deren eigenen Datenschutzbestimmungen hinzu." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:578 +msgid "Who we share your data with" +msgstr "Mit wem wir deine Daten teilen" + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:574 +msgid "By default WordPress does not collect any analytics data. However, many web hosting accounts collect some anonymous analytics data. You may also have installed a WordPress plugin that provides analytics services. In that case, add information from that plugin here." +msgstr "Standardmäßig sammelt WordPress keine Analysedaten. Allerdings sammeln viele Webhosting-Konten einige anonyme Analysedaten. Möglicherweise hast du auch ein WordPress-Plugin installiert, das Analysedienste bereitstellt. In diesem Fall füge Informationen aus diesem Plugin hier hinzu." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:568 +msgid "Analytics" +msgstr "Analysedienste" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:565 +msgid "These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website." +msgstr "Diese Websites können Daten über dich sammeln, Cookies benutzen, zusätzliche Tracking-Dienste von Dritten einbetten und deine Interaktion mit diesem eingebetteten Inhalt aufzeichnen, inklusive deiner Interaktion mit dem eingebetteten Inhalt, falls du ein Konto hast und auf dieser Website angemeldet bist." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:563 +msgid "Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website." +msgstr "Beiträge auf dieser Website können eingebettete Inhalte beinhalten (z. B. Videos, Bilder, Beiträge etc.). Eingebettete Inhalte von anderen Websites verhalten sich exakt so, als ob der Besucher die andere Website besucht hätte." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:561 +msgid "Embedded content from other websites" +msgstr "Eingebettete Inhalte von anderen Websites" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:558 +msgid "If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day." +msgstr "Wenn du einen Artikel bearbeitest oder veröffentlichst, wird ein zusätzlicher Cookie in deinem Browser gespeichert. Dieser Cookie enthält keine personenbezogenen Daten und verweist nur auf die Beitrags-ID des Artikels, den du gerade bearbeitet hast. Der Cookie verfällt nach einem Tag." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:556 +msgid "When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed." +msgstr "Wenn du dich anmeldest, werden wir einige Cookies einrichten, um deine Anmeldeinformationen und Anzeigeoptionen zu speichern. Anmelde-Cookies verfallen nach zwei Tagen und Cookies für die Anzeigeoptionen nach einem Jahr. Falls du bei der Anmeldung „Angemeldet bleiben“ auswählst, wird deine Anmeldung zwei Wochen lang aufrechterhalten. Mit der Abmeldung aus deinem Konto werden die Anmelde-Cookies gelöscht." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:554 +msgid "If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser." +msgstr "Falls du ein Konto hast und dich auf dieser Website anmeldest, werden wir ein temporäres Cookie setzen, um festzustellen, ob dein Browser Cookies akzeptiert. Dieses Cookie enthält keine personenbezogenen Daten und wird verworfen, wenn du deinen Browser schließt." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:552 +msgid "If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year." +msgstr "Wenn du einen Kommentar auf unserer Website schreibst, kann das eine Einwilligung sein, deinen Namen, E-Mail-Adresse und Website in Cookies zu speichern. Dies ist eine Komfortfunktion, damit du nicht, wenn du einen weiteren Kommentar schreibst, all diese Daten erneut eingeben musst. Diese Cookies werden ein Jahr lang gespeichert." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:548 +msgid "In this subsection you should list the cookies your web site uses, including those set by your plugins, social media, and analytics. We have provided the cookies which WordPress installs by default." +msgstr "In diesem Unterabschnitt solltest du die Cookies auflisten, die deine Website benutzt, inklusive solcher, die deine Plugins, soziale Medien und Analysedienste setzen. Wir haben die Cookies angegeben, die WordPress standardmäßig installiert." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:544 +msgid "Cookies" +msgstr "Cookies" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:522 +msgid "An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment." +msgstr "Aus deiner E-Mail-Adresse kann eine anonymisierte Zeichenfolge erstellt (auch Hash genannt) und dem Gravatar-Dienst übergeben werden, um zu prüfen, ob du diesen benutzt. Die Datenschutzerklärung des Gravatar-Dienstes findest du hier: https://automattic.com/privacy/. Nachdem dein Kommentar freigegeben wurde, ist dein Profilbild öffentlich im Kontext deines Kommentars sichtbar." + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:520 +msgid "When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection." +msgstr "Wenn Besucher Kommentare auf der Website schreiben, sammeln wir die Daten, die im Kommentar-Formular angezeigt werden, außerdem die IP-Adresse des Besuchers und den User-Agent-String (damit wird der Browser identifiziert), um die Erkennung von Spam zu unterstützen." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:540 +msgid "By default, WordPress does not include a contact form. If you use a contact form plugin, use this subsection to note what personal data is captured when someone submits a contact form, and how long you keep it. For example, you may note that you keep contact form submissions for a certain period for customer service purposes, but you do not use the information submitted through them for marketing purposes." +msgstr "Standardmäßig beinhaltet WordPress kein Kontaktformular. Falls du ein Kontaktformular-Plugin benutzt, nutze diesen Unterabschnitt, um anzugeben, welche personenbezogenen Daten bei der Übermittlung eines Kontaktformulars aufgezeichnet werden und wie lange du sie speicherst. Du könntest zum Beispiel angeben, dass übermittelte Kontaktformulare für den Kundenservice für eine bestimmte Zeit gespeichert werden, während du solche nicht für Marketing-Zwecke verwendest." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:536 +msgid "Contact forms" +msgstr "Kontaktformulare" + +#. translators: Default privacy policy text. +#: wp-admin/includes/class-wp-privacy-policy-content.php:533 +msgid "If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website." +msgstr "Wenn du ein registrierter Benutzer bist und Fotos auf diese Website lädst, solltest du vermeiden, Fotos mit einem EXIF-GPS-Standort hochzuladen. Besucher dieser Website könnten Fotos, die auf dieser Website gespeichert sind, herunterladen und deren Standort-Informationen extrahieren." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:508 +msgid "By default WordPress does not collect any personal data about visitors, and only collects the data shown on the User Profile screen from registered users. However some of your plugins may collect personal data. You should add the relevant information below." +msgstr "Standardmäßig sammelt WordPress keine personenbezogenen Daten über Benutzer und sammelt nur die Daten, die im Profil eines registrierten Benutzers angezeigt werden. Einige deiner Plugins können aber zusätzliche personenbezogene Daten sammeln, füge die relevanten Informationen unten hinzu." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:506 +msgid "Personal data is not just created by a user’s interactions with your site. Personal data is also generated from technical processes such as contact forms, comments, cookies, analytics, and third party embeds." +msgstr "Personenbezogene Daten werden nicht nur bei Interaktionen eines Benutzers mit deiner Website erstellt. Personenbezogene Daten werden auch bei technischen Prozessen wie bei Kontaktformularen, Kommentaren, Cookies, Analysewerkzeugen und Einbettungen von Drittanbietern erzeugt." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:504 +msgid "In addition to listing what personal data you collect, you need to note why you collect it. These explanations must note either the legal basis for your data collection and retention or the active consent the user has given." +msgstr "Zusätzlich zur der Auflistung der Art personenbezogener Daten, die du sammelst, musst du den Grund dafür darlegen. Diese Erklärungen müssen entweder die Rechtsgrundlage der Sammlung und Speicherung von Daten erwähnen oder die Einverständniserklärung, in die der Benutzer eingewilligt hat." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:502 +msgid "You should also note any collection and retention of sensitive personal data, such as data concerning health." +msgstr "Du musst auch jede Erfassung und Speicherung sensibler personenbezogener Daten, wie Gesundheitsdaten, deutlich machen." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:496 +msgid "What personal data we collect and why we collect it" +msgstr "Welche personenbezogenen Daten wir sammeln und warum wir sie sammeln" + +#. translators: Default privacy policy text. %s: Site URL. +#: wp-admin/includes/class-wp-privacy-policy-content.php:493 +msgid "Our website address is: %s." +msgstr "Die Adresse unserer Website ist: %s." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:489 +msgid "The amount of information you may be required to show will vary depending on your local or national business regulations. You may, for example, be required to display a physical address, a registered address, or your company registration number." +msgstr "Der Umfang der Informationen, für die es erforderlich sein kann, sie anzuzeigen, wird in Abhängigkeit von deinen lokalen oder nationalen Geschäftsordnungen variieren. Es kann zum Beispiel erforderlich sein, deine physische Adresse, eine registrierte Adresse oder die Registernummer deines Unternehmens anzugeben." + +#. translators: Privacy policy tutorial. +#: wp-admin/includes/class-wp-privacy-policy-content.php:487 +msgid "In this section you should note your site URL, as well as the name of the company, organization, or individual behind it, and some accurate contact information." +msgstr "In diesem Abschnitt solltest du die URL deiner Website nennen sowie den Namen des Unternehmens, der Organisation oder des Individuums hinter dem Projekt und auch korrekte Kontakt-Informationen." + +#. translators: Default privacy policy heading. +#: wp-admin/includes/class-wp-privacy-policy-content.php:483 +msgid "Who we are" +msgstr "Wer wir sind" + +#: wp-admin/includes/class-wp-privacy-policy-content.php:452 +msgid "It is your responsibility to write a comprehensive privacy policy, to make sure it reflects all national and international legal requirements on privacy, and to keep your policy current and accurate." +msgstr "Es ist deine Verantwortung, eine umfassende Datenschutzerklärung zu schreiben, die alle nationalen und internationalen gesetzlichen Vorgaben abdeckt und diese Datenschutzerklärung aktuell und korrekt zu halten." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:451 +msgid "Please edit your privacy policy content, making sure to delete the summaries, and adding any information from your theme and plugins. Once you publish your policy page, remember to add it to your navigation menu." +msgstr "Bitte bearbeite den Inhalt deiner Datenschutzerklärung, lösche die Zusammenfassungen und füge Informationen deiner Themes und Plugins hinzu. Sobald du deine Seite zum Datenschutz veröffentlicht hast, füge sie bitte deinem Navigationsmenü hinzu." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:449 +msgid "This text template will help you to create your web site’s privacy policy." +msgstr "Dieser Mustertext kann dir helfen, die Datenschutzerklärung für deine Website zu erstellen." + +#: wp-admin/includes/class-wp-privacy-policy-content.php:448 +msgid "Hello," +msgstr "Hallo," + +#: wp-admin/options-privacy.php:125 +msgid "As a website owner, you may need to follow national or international privacy laws. For example, you may need to create and display a Privacy Policy." +msgstr "Als Betreiber einer Website wirst du nationalen oder internationalen Datenschutzgesetzen Folge leisten müssen. Beispielsweise wirst du eine Datenschutzerklärung erstellen und anzeigen müssen." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:67 +msgid "Force Erasure has failed." +msgstr "Erzwungenes Löschen ist gescheitert." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:105 +msgid "Email could not be sent." +msgstr "E-Mail konnte nicht gesendet werden." + +#: wp-admin/includes/privacy-tools.php:377 +msgctxt "date/time" +msgid "On" +msgstr "Am" + +#: wp-admin/includes/privacy-tools.php:373 +msgctxt "website URL" +msgid "At URL" +msgstr "Auf URL" + +#: wp-admin/includes/privacy-tools.php:369 +msgctxt "website name" +msgid "For site" +msgstr "Für Website" + +#: wp-admin/includes/privacy-tools.php:365 +msgctxt "email address" +msgid "Report generated for" +msgstr "Bericht erstellt für" + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:4824 +msgid "Exporter array at index %s does not include a friendly name." +msgstr "Der Funktion zum Datenexport im Index %s des Arrays fehlt ein Anzeigename." + +#: wp-admin/erase-personal-data.php:13 +msgid "Sorry, you are not allowed to erase data on this site." +msgstr "Du bist leider nicht berechtigt, Daten auf dieser Website zu löschen." + +#: wp-admin/export-personal-data.php:13 +msgid "Sorry, you are not allowed to export personal data on this site." +msgstr "Du bist leider nicht berechtigt, personenbezogene Daten auf dieser Website zu exportieren." + +#: wp-admin/includes/ajax-actions.php:4991 +msgid "Eraser index is out of range." +msgstr "Index der Funktion zur Datenlöschung ist außerhalb des Bereichs." + +#: wp-admin/includes/ajax-actions.php:4950 +msgid "Missing eraser index." +msgstr "Index der Funktion zur Datenlöschung fehlt." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4875 +msgid "Expected done (boolean) in response array from exporter: %s." +msgstr "Erwartetes done (boolesch) in Antwort-Array der Funktion zum Datenexport: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4868 +msgid "Expected data array in response array from exporter: %s." +msgstr "Erwartet wurde ein Daten-Array im Antwort-Array der Funktion zum Datenexport: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4861 +msgid "Expected data in response array from exporter: %s." +msgstr "Daten erwartet im Antwort-Array der Funktion zum Datenexport: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4854 +msgid "Expected response as an array from exporter: %s." +msgstr "Erwartet wurde ein Array als Antwort der Funktion zum Datenexport: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4840 +msgid "Exporter callback is not a valid callback: %s." +msgstr "Rückruffunktion der Funktion zum Datenexport ist kein gültiger Callback: %s." + +#. translators: %s: Exporter friendly name. +#: wp-admin/includes/ajax-actions.php:4833 +msgid "Exporter does not include a callback: %s." +msgstr "Funktion zum Datenexport enthält keine gültige Rückruffunktion: %s." + +#. translators: %s: Exporter array index. +#: wp-admin/includes/ajax-actions.php:4817 +msgid "Expected an array describing the exporter at index %s." +msgstr "Erwartet wurde ein Array zur Beschreibung der Funktion zum Datenexport im Index %s." + +#: wp-admin/includes/ajax-actions.php:4803 +msgid "Exporter index is out of range." +msgstr "Der Exporter-Index ist außerhalb des Bereichs." + +#: wp-admin/includes/ajax-actions.php:4799 +msgid "Exporter index cannot be negative." +msgstr "Index der Funktion zum Datenexport kann nicht negativ sein." + +#: wp-admin/includes/ajax-actions.php:4793 +msgid "An exporter has improperly used the registration filter." +msgstr "Eine Funktion zum Datenexport hat den Registrierungs-Filter unzulässig benutzt." + +#: wp-admin/includes/ajax-actions.php:4764 +#: wp-admin/includes/ajax-actions.php:4956 +msgid "Missing page index." +msgstr "Fehlender Seiten-Index." + +#: wp-admin/includes/ajax-actions.php:4758 +msgid "Missing exporter index." +msgstr "Index der Funktion zum Export fehlt." + +#: wp-admin/includes/ajax-actions.php:4749 +#: wp-admin/includes/ajax-actions.php:4940 +msgid "Invalid request type." +msgstr "Ungültiger Anfragetyp." + +#: wp-admin/options-privacy.php:246 +msgid "Create New Page" +msgstr "Neue Seite erstellen" + +#: wp-admin/options-privacy.php:227 +msgid "Use This Page" +msgstr "Diese Seite benutzen" + +#: wp-admin/options-privacy.php:192 +msgid "Select a Privacy Policy page" +msgstr "Eine Seite für die Datenschutzerklärung auswählen" + +#: wp-admin/options-privacy.php:190 +msgid "Change your Privacy Policy page" +msgstr "Deine Seite für die Datenschutzerklärung ändern" + +#. translators: 1: URL to edit Privacy Policy page, 2: URL to view Privacy +#. Policy page. +#: wp-admin/options-privacy.php:154 +msgid "Edit or view your Privacy Policy page content." +msgstr "Den Inhalt deiner Seite für die Datenschutzerklärung bearbeiten oder anzeigen." + +#: wp-admin/options-privacy.php:134 +msgid "We would also suggest reviewing your Privacy Policy from time to time, especially after installing or updating any themes or plugins. There may be changes or new suggested information for you to consider adding to your policy." +msgstr "Wir empfehlen, deine Datenschutzerklärung von Zeit zu Zeit zu überprüfen, besonders nach einer Aktualisierung. Möglicherweise gibt es Änderungen oder neue vorgeschlagene Informationen, die du deiner Datenschutzerklärung hinzufügen solltest." + +#: wp-admin/options-privacy.php:130 +msgid "However, it is your responsibility to use those resources correctly, to provide the information that your Privacy Policy requires, and to keep that information current and accurate." +msgstr "Dennoch liegt es in deiner Verantwortung, solche Ressourcen korrekt zu nutzen, die Informationen anzugeben, die deine Datenschutzerklärung erfordert und diese Informationen aktuell und korrekt zu halten." + +#: wp-admin/options-privacy.php:129 +msgid "The new page will include help and suggestions for your Privacy Policy." +msgstr "Die neue Seite wird Hilfe und Vorschläge für deine Datenschutzerklärung beinhalten." + +#: wp-admin/options-privacy.php:126 +msgid "If you already have a Privacy Policy page, please select it below. If not, please create one." +msgstr "Falls du bereits eine Seite für die Datenschutzerklärung hast, wähle sie bitte unten aus. Falls nicht, erstelle eine Seite." + +#. translators: %s: URL to Pages Trash. +#: wp-admin/options-privacy.php:104 +msgid "The currently selected Privacy Policy page is in the Trash. Please create or select a new Privacy Policy page or restore the current page." +msgstr "Die aktuell ausgewählte Seite für die Datenschutzerklärung befindet sich im Papierkorb. Bitte erstelle oder wähle eine neue Seite für die Datenschutzerklärung. Du kannst auch die vorliegende Seite wiederherstellen." + +#: wp-admin/options-privacy.php:94 +msgid "The currently selected Privacy Policy page does not exist. Please create or select a new page." +msgstr "Die aktuell ausgewählte Seite für die Datenschutzerklärung existiert nicht. Bitte erstelle oder wähle eine neue Seite." + +#: wp-admin/options-privacy.php:70 +msgid "Unable to create a Privacy Policy page." +msgstr "Kann Seite für Datenschutzerklärung nicht erstellen." + +#. translators: Privacy Policy page slug. +#: wp-admin/includes/upgrade.php:382 +msgid "privacy-policy" +msgstr "datenschutzerklaerung" + +#. translators: %s: URL to Customizer -> Menus. +#: wp-admin/options-privacy.php:42 +msgid "Privacy Policy page setting updated successfully. Remember to update your menus!" +msgstr "Die Einstellungen der Seite für Datenschutzerklärung wurden erfolgreich aktualisiert. Denk daran, deine Menüs zu aktualisieren!" + +#. translators: Do not translate EXPIRATION, LINK, SITENAME, SITEURL: those are +#. placeholders. +#: wp-admin/includes/privacy-tools.php:630 +msgid "" +"Howdy,\n" +"\n" +"Your request for an export of personal data has been completed. You may\n" +"download your personal data by clicking on the link below. For privacy\n" +"and security, we will automatically delete the file on ###EXPIRATION###,\n" +"so please download it before then.\n" +"\n" +"###LINK###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"Deine Anfrage für den Export personenbezogener Daten wurde abgeschlossen. Du kannst deine personenbezogenen Daten durch Klick auf den Link unten herunterladen. Aus Gründen des Datenschutzes und der Sicherheit wird diese Datei am ###EXPIRATION### automatisch gelöscht. Lade sie also bitte vorher herunter.\n" +"\n" +"###LINK###\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/privacy-tools.php:511 +msgid "Unable to add data to HTML file." +msgstr "Kann der HTML-Datei keine Daten hinzufügen." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:104 +msgid "Email sent." +msgstr "E-Mail gesendet." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:103 +msgid "Sending Email..." +msgstr "Versende E-Mail..." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:61 +msgid "Download Personal Data Again" +msgstr "Personenbezogene Daten erneut herunterladen" + +#: wp-admin/includes/privacy-tools.php:761 +msgid "Invalid request ID when merging exporter data." +msgstr "Ungültige Anfrage-ID beim Zusammenfügen von Daten der Funktion zum Datenexport." + +#: wp-admin/includes/privacy-tools.php:714 +msgid "Unable to send personal data export email." +msgstr "Kann Export-E-Mail mit personenbezogenen Daten nicht senden." + +#. translators: Personal data export notification email subject. %s: Site +#. title. +#: wp-admin/includes/privacy-tools.php:604 +msgid "[%s] Personal Data Export" +msgstr "[%s] Export personenbezogener Daten" + +#: wp-admin/includes/privacy-tools.php:559 +msgid "Invalid request ID when sending personal data export email." +msgstr "Ungültige Anfrage-ID beim Senden der E-Mail für den Export personenbezogener Daten." + +#: wp-admin/includes/privacy-tools.php:532 +msgid "Unable to open export file (archive) for writing." +msgstr "Kann Export-Datei (Archiv) nicht zum Schreiben öffnen." + +#: wp-admin/includes/privacy-tools.php:433 +msgid "Personal Data Export" +msgstr "Export personenbezogener Daten" + +#. translators: %s: User's email address. +#: wp-admin/includes/privacy-tools.php:349 +msgid "Personal Data Export for %s" +msgstr "Export personenbezogener Daten für %s" + +#: wp-admin/includes/privacy-tools.php:413 +msgid "Unable to open export file (HTML report) for writing." +msgstr "Kann Export-Datei (HTML-Bericht) nicht zum Schreiben öffnen." + +#: wp-admin/includes/privacy-tools.php:329 +msgid "Unable to protect export folder from browsing." +msgstr "Kann den Export-Ordner nicht vor dem Durchsuchen schützen." + +#: wp-admin/includes/privacy-tools.php:313 +msgid "Invalid email address when generating export file." +msgstr "Ungültige E-Mail-Adresse bei der Erstellung der Export-Datei." + +#: wp-admin/includes/privacy-tools.php:307 +msgid "Invalid request ID when generating export file." +msgstr "Ungültige Anfrage-ID bei der Erstellung der Export-Datei." + +#: wp-admin/includes/privacy-tools.php:300 +msgid "Unable to generate export file. ZipArchive not available." +msgstr "Kann Export-Datei nicht erstellen. ZipArchive ist nicht verfügbar." + +#: wp-admin/includes/ajax-actions.php:4754 +msgid "A valid email address must be given." +msgstr "Eine gültige E-Mail-Adresse muss angegeben werden." + +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:64 +msgid "Force Erase Personal Data" +msgstr "Löschen personenbezogener Daten erzwingen" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:125 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:132 +msgid "Remove request" +msgstr "Anfrage entfernen" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:85 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:91 +msgid "Waiting for confirmation" +msgstr "Warten auf Bestätigung" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:60 +msgid "Downloading Data..." +msgstr "Lade Daten herunter..." + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:59 +msgid "Download Personal Data" +msgstr "Personenbezogene Daten herunterladen" + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:262 +msgid "Re-sent %d request" +msgid_plural "Re-sent %d requests" +msgstr[0] "%d Anfrage erneut gesendet" +msgstr[1] "%d Anfragen erneut gesendet" + +#. translators: %d: Number of requests. +#: wp-admin/includes/class-wp-privacy-requests-table.php:245 +msgid "Deleted %d request" +msgid_plural "Deleted %d requests" +msgstr[0] "%d Anfrage gelöscht" +msgstr[1] "%d Anfragen gelöscht" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:45 +msgid "Requested" +msgstr "Angefragt" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:43 +msgid "Requester" +msgstr "Antragstellende Person" + +#: wp-admin/erase-personal-data.php:66 wp-admin/export-personal-data.php:66 +msgid "Send Request" +msgstr "Anfrage senden" + +#: wp-admin/erase-personal-data.php:64 wp-admin/export-personal-data.php:64 +msgid "Username or email address" +msgstr "Benutzername oder E-Mail-Adresse" + +#: wp-admin/erase-personal-data.php:61 wp-admin/export-personal-data.php:61 +msgid "An email will be sent to the user at this email address asking them to verify the request." +msgstr "Dem Benutzer wird hier an diese E-Mail-Adresse eine E-Mail geschickt, mit der Bitte, die Anfrage zu bestätigen." + +#: wp-admin/export-personal-data.php:60 +msgid "Add Data Export Request" +msgstr "Antrag für einen Datenexport hinzufügen" + +#: wp-admin/includes/privacy-tools.php:169 +msgid "Confirmation request initiated successfully." +msgstr "Bestätigungs-Anfrage erfolgreich initiiert." + +#: wp-admin/includes/privacy-tools.php:130 +msgid "Unable to add this request. A valid email address or username must be supplied." +msgstr "Kann diese Anfrage nicht hinzufügen. Eine gültige E-Mail-Adresse oder Benutzername muss angegeben werden." + +#: wp-admin/includes/privacy-tools.php:91 +msgid "Confirmation request sent again successfully." +msgstr "Bestätigungs-Anfrage erfolgreich erneut versendet." + +#: wp-admin/includes/privacy-tools.php:31 +#: wp-admin/includes/privacy-tools.php:158 +msgid "Unable to initiate confirmation request." +msgstr "Kann Bestätigungs-Anfrage nicht initiieren." + +#: wp-admin/includes/ajax-actions.php:4736 +#: wp-admin/includes/ajax-actions.php:4926 +msgid "Invalid request ID." +msgstr "Ungültige Anfrage-ID." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5100 +msgid "Expected done flag in response array from %1$s eraser (index %2$d)." +msgstr "Erwartetes done flag in Antwort-Array der Funktion zur Datenlöschung %1$s (Index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5089 +msgid "Expected messages key to reference an array in response array from %1$s eraser (index %2$d)." +msgstr "Erwarteter messages-Schlüssel in Antwort-Array der Funktion zur Datenlöschung %1$s (Index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5078 +msgid "Expected messages key in response array from %1$s eraser (index %2$d)." +msgstr "Erwarteter messages-Schlüssel in Antwort-Array der Funktion zur Datenlöschung %1$s (Index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5067 +msgid "Expected items_retained key in response array from %1$s eraser (index %2$d)." +msgstr "Erwarteter items_retained-Schlüssel in Antwort-Array der Funktion zur Datenlöschung %1$s (Index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5056 +msgid "Expected items_removed key in response array from %1$s eraser (index %2$d)." +msgstr "Erwarteter items_removed-Schlüssel in Antwort-Array der Funktion zur Datenlöschung %1$s (Index %2$d)." + +#. translators: 1: Eraser friendly name, 2: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5045 +msgid "Did not receive array from %1$s eraser (index %2$d)." +msgstr "Kein Array der Datenlöschungs-Funktion %1$s (Index %2$d) erhalten." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5009 +msgid "Eraser array at index %d does not include a friendly name." +msgstr "Der Funktion zur Datenlöschung im Index %d des Arrays fehlt ein Anzeigename." + +#. translators: %d: Eraser array index. +#: wp-admin/includes/ajax-actions.php:5004 +msgid "Expected an array describing the eraser at index %d." +msgstr "Erwartet wurde ein Array, dass die Funktion zur Datenlöschung im Index %d beschreibt." + +#: wp-admin/includes/ajax-actions.php:4807 +#: wp-admin/includes/ajax-actions.php:4995 +msgid "Page index cannot be less than one." +msgstr "Seiten-Index kann nicht kleiner als 1 sein." + +#: wp-admin/includes/ajax-actions.php:4987 +msgid "Eraser index cannot be less than one." +msgstr "Index der Funktion zur Datenlöschung kann nicht kleiner als 1 sein." + +#: wp-admin/includes/ajax-actions.php:4946 +msgid "Invalid email address in request." +msgstr "Ungültige E-Mail-Adresse in der Anfrage." + +#: wp-admin/includes/plugin-install.php:676 +msgid "Requires PHP Version:" +msgstr "Erforderliche PHP-Version:" + +#: wp-admin/customize.php:80 +msgid "This changeset cannot be further modified." +msgstr "Dieses Änderungs-Set kann nicht weiter modifiziert werden." + +#. translators: %s: https://wordpress.org/about/stats +#: wp-admin/privacy.php:50 +msgid "This data is used to provide general enhancements to WordPress, which includes helping to protect your site by finding and automatically installing new updates. It is also used to calculate statistics, such as those shown on the WordPress.org stats page." +msgstr "Diese Daten werden genutzt, um durchgängig Verbesserungen an WordPress zu ermöglichen, welche auch das Finden und automatische Installieren von neuen Updates beinhalten, um deine Website zu schützen. Auch werden die Daten verwendet, um Statistiken zu erstellen, wie solche, die auf der Seite mit den Statistiken bei WordPress.org zu sehen sind." + +#. translators: %s: Link to Custom CSS section in the Customizer. +#: wp-admin/theme-editor.php:205 +msgid "There’s no need to change your CSS here — you can edit and live preview CSS changes in the built-in CSS editor." +msgstr "Es gibt keine Notwendigkeit, dein CSS hier zu ändern. Du kannst CSS-Änderungen mit dem eingebauten CSS-Editor vornehmen und dir diese direkt als Vorschau anzeigen lassen." + +#: wp-admin/theme-editor.php:200 +msgid "Did you know?" +msgstr "Hast du das gewusst?" + +#: wp-admin/credits.php:137 +msgid "Noteworthy Contributors" +msgstr "Hervorzuhebende Mitwirkende" + +#: wp-admin/theme-editor.php:373 +msgid "If you decide to go ahead with direct edits anyway, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Solltest du dich dennoch dazu entscheiden, direkt zu editieren, empfehlen wir dir mittels Dateimanager eine Kopie mit neuem Namen zu erstellen und das Original zu behalten. So hast du die Möglichkeit, eine funktionierende Version wiederherzustellen, falls etwas schief geht." + +#: wp-admin/plugin-editor.php:327 +msgid "If you absolutely have to make direct edits to this plugin, use a file manager to create a copy with a new name and hang on to the original. That way, you can re-enable a functional version if something goes wrong." +msgstr "Falls du dieses Plugin tatsächlich direkt ändern musst, empfehlen wir dir mittels Dateimanager eine Kopie mit neuem Namen zu erstellen und das Original zu behalten. So hast du die Möglichkeit, eine funktionierende Version wiederherzustellen, falls etwas schief geht." + +#: wp-admin/plugin-editor.php:326 +msgid "You appear to be making direct edits to your plugin in the WordPress dashboard. We recommend that you don’t! Editing plugins directly may introduce incompatibilities that break your site and your changes may be lost in future updates." +msgstr "Du bist scheinbar gerade dabei, direkte Änderungen an deinem Plugin im WordPress-Dashboard vorzunehmen. Wir empfehlen dir, das nicht zu tun! Direkte Änderungen an Plugins können Inkompatibilitäten verursachen, die dazu führen, dass deine Website nicht mehr funktioniert und deine Änderungen könnten bei zukünftigen Updates verloren gehen." + +#. translators: 1: Codex URL, 2: URL to Reading Settings screen. +#: wp-admin/options-writing.php:223 +msgid "WordPress is not notifying any Update Services because of your site’s visibility settings." +msgstr "WordPress benachrichtigt derzeit keine Update-Dienste aufgrund deiner Website-Einstellungen zur Sichtbarkeit für Suchmaschinen." + +#: wp-admin/options-writing.php:210 wp-admin/options-writing.php:224 +msgid "https://codex.wordpress.org/Update_Services" +msgstr "https://codex.wordpress.org/Update_Services" + +#. translators: 1: .htaccess, 2: Documentation URL, 3: CTRL + a +#: wp-admin/options-permalink.php:409 +msgid "If your %1$s file was writable, we could do this automatically, but it isn’t so these are the mod_rewrite rules you should have in your %1$s file. Click in the field and press %3$s to select all." +msgstr "Wenn die %1$s-Datei beschreibbar wäre, könnte WordPress das automatisch machen. Das ist nicht der Fall. Darum findest du hier die mod_rewrite-Regeln für deine %1$s-Datei. Klicke in das Feld und verwende %3$s, um alles auszuwählen." + +#. translators: 1: Documentation URL, 2: web.config, 3: CTRL + a +#: wp-admin/options-permalink.php:377 +msgid "If the root directory of your site was writable, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your %2$s file. Create a new file, called %2$s in the root directory of your site. Click in the field and press %3$s to select all. Then insert this code into the %2$s file." +msgstr "Wenn das Hauptverzeichnis deiner Website beschreibbar wäre, könnte WordPress das automatisch machen. Das ist nicht der Fall. Darum findest du hier die mod_rewrite-Regeln für deine %2$s-Datei. Erstelle eine neue Datei namens %2$s im Stammverzeichnis deiner Website. Klicke in das Feld und verwende %3$s, um alles auszuwählen. Füge diese dann in die %2$s-Datei ein." + +#. translators: 1: web.config, 2: Documentation URL, 3: CTRL + a, 4: Element +#. code. +#: wp-admin/options-permalink.php:351 +msgid "If your %1$s file was writable, we could do this automatically, but it isn’t so this is the url rewrite rule you should have in your %1$s file. Click in the field and press %3$s to select all. Then insert this rule inside of the %4$s element in %1$s file." +msgstr "Wenn deine %1$s-Datei beschreibbar wäre, könnte WordPress sie automatisch bearbeiten. Das ist nicht der Fall. Darum findest du hier die mod_rewrite-Regeln, die du in deine %1$s-Datei einfügen musst. Klicke in das Feld und verwende %3$s, um alles auszuwählen. Füge diese Regel dann im %4$s-Element der %1$s-Datei hinzu." + +#. translators: %s: Documentation URL. +#: wp-admin/options-general.php:99 +msgid "Enter the address here if you want your site home page to be different from your WordPress installation directory." +msgstr "Gib hier die Adresse ein, wenn die Startseite deiner Website von deinem WordPress-Installationsverzeichnis abweichen soll." + +#. translators: %s: https://wordpress.org/about/privacy +#: wp-admin/privacy.php:60 +msgid "We take privacy and transparency very seriously. To learn more about what data we collect, and how we use it, please visit WordPress.org/about/privacy." +msgstr "Wir nehmen Datenschutz und Transparenz sehr ernst. Um mehr darüber zu erfahren, welche Daten wir erheben und was wir damit machen, besuche bitte WordPress.org/about/privacy (engl.)." + +#: wp-admin/freedoms.php:54 wp-admin/freedoms.php:108 +msgid "https://wordpress.org/about/license/" +msgstr "https://wordpress.org/about/license/" + +#: wp-admin/privacy.php:44 +msgid "From time to time, your WordPress site may send data to WordPress.org — including, but not limited to — the version of WordPress you are using, and a list of installed plugins and themes." +msgstr "Von Zeit zu Zeit kann deine WordPress-Website Daten an WordPress.org senden – inklusive, aber nicht begrenzt auf die Version von WordPress, die du nutzt und eine Liste der installierten Plugins und Themes." + +#. translators: Attachment information. %s: Date the attachment was uploaded. +#: wp-admin/includes/meta-boxes.php:415 +msgid "Uploaded on: %s" +msgstr "Hochgeladen am: %s" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-plugin-upgrader.php:77 +#: wp-admin/includes/class-theme-upgrader.php:75 +msgid "Downloading installation package from %s…" +msgstr "Herunterladen des Installationspakets von %s …" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-language-pack-upgrader.php:117 +msgid "Downloading translation from %s…" +msgstr "Herunterladen der Übersetzung von %s…" + +#. translators: %s: Package URL. +#: wp-admin/includes/class-plugin-upgrader.php:60 +#: wp-admin/includes/class-theme-upgrader.php:59 +#: wp-admin/includes/class-core-upgrader.php:33 +msgid "Downloading update from %s…" +msgstr "Herunterladen der Aktualisierung von %s…" + +#. translators: 1: wp-admin/includes/template.php, 2: add_meta_box(), 3: +#. add_meta_boxes +#: wp-admin/includes/template.php:2520 +msgid "Likely direct inclusion of %1$s in order to use %2$s. This is very wrong. Hook the %2$s call into the %3$s action instead." +msgstr "Vermutlich direkte Einbindung von %1$s, um %2$s zu benutzen. Das ist sehr falsch. Den %2$s-Aufruf bitte stattdessen als Hook in die %3$s-Action einklinken." + +#: wp-admin/includes/template.php:2178 +msgid "Customization Draft" +msgstr "Customizer-Entwurf" + +#. translators: %s: URL to the Customizer. +#: wp-admin/includes/meta-boxes.php:289 +msgid "This draft comes from your unpublished customization changes. You can edit, but there’s no need to publish now. It will be published automatically with those changes." +msgstr "Dieser Entwurf stammt aus deinen nicht veröffentlichten Customizer Änderungen. Du kannst ihn bearbeiten, musst ihn aber nicht sofort veröffentlichen. Er wird automatisch mit diesen Änderungen veröffentlicht." + +#: wp-admin/theme-editor.php:251 +msgid "Theme Files" +msgstr "Theme-Dateien" + +#: wp-admin/includes/misc.php:388 wp-admin/includes/misc.php:477 +msgid "folder" +msgstr "Ordner" + +#: wp-admin/includes/file.php:571 +msgid "Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP." +msgstr "Kommunikation mit der Website, um auf fatale Fehler zu prüfen, nicht möglich, daher wurde die PHP-Änderung rückgängig gemacht. Du wirst deine veränderte PHP-Datei mit anderen Mitteln hochladen müssen, wie per SFTP." + +#: wp-admin/press-this.php:75 wp-admin/press-this.php:81 +msgid "Installation Required" +msgstr "Installation erforderlich" + +#. translators: %s: Plugin filename. +#: wp-admin/includes/plugin.php:1035 +msgid "Could not fully remove the plugin %s." +msgstr "Das Plugin %s konnte nicht vollständig entfernt werden." + +#: wp-admin/user-new.php:324 +msgid "User has been created, but could not be added to this site." +msgstr "Der Benutzer wurde erstellt, konnte aber nicht zur Website hinzugefügt werden." + +#: wp-admin/user-new.php:321 +msgid "That user could not be added to this site." +msgstr "Der Benutzer konnte nicht zu dieser Website hinzugefügt werden." + +#: wp-admin/user-edit.php:287 +msgid "Disable syntax highlighting when editing code" +msgstr "Die Syntaxhervorhebung beim Bearbeiten von Code deaktivieren" + +#: wp-admin/user-edit.php:284 +msgid "Syntax Highlighting" +msgstr "Syntaxhervorhebung" + +#: wp-admin/setup-config.php:418 wp-admin/setup-config.php:451 +msgid "Run the installation" +msgstr "Installation durchführen" + +#: wp-admin/privacy.php:61 +msgid "https://wordpress.org/about/privacy/" +msgstr "https://wordpress.org/about/privacy/" + +#: wp-admin/press-this.php:80 +msgid "Press This is not available. Please contact your site administrator." +msgstr "Press This ist nicht verfügbar. Bitte kontaktiere den Administrator deiner Website." + +#. translators: %s: URL to Press This bookmarklet on the main site. +#: wp-admin/press-this.php:68 +msgid "Press This is not installed. Please install Press This from the main site." +msgstr "Press This ist nicht installiert. Bitte installiere Press This von der Haupt-Website." + +#: wp-admin/press-this.php:44 +msgid "Activate Press This" +msgstr "Press This aktivieren" + +#: wp-admin/theme-editor.php:377 wp-admin/plugin-editor.php:331 +msgid "I understand" +msgstr "Ich verstehe" + +#: wp-admin/theme-editor.php:356 wp-admin/plugin-editor.php:325 +msgid "Heads up!" +msgstr "Achtung!" + +#: wp-admin/plugin-editor.php:282 +msgid "Warning: Making changes to active plugins is not recommended." +msgstr "Warnung: Das Ändern aktiver Plugins wird nicht empfohlen." + +#: wp-admin/theme-editor.php:284 wp-admin/plugin-editor.php:263 +msgid "Selected file content:" +msgstr "Inhalt der ausgewählten Datei:" + +#: wp-admin/theme-editor.php:193 wp-admin/plugin-editor.php:188 +msgid "There was an error while trying to update the file. You may need to fix something and try updating again." +msgstr "Bei der Aktualisierung der Datei trat ein Fehler auf. Du musst vermutlich etwas beheben und es erneut versuchen." + +#. translators: %s: Select field to choose the front page. +#: wp-admin/options-reading.php:108 +msgid "Homepage: %s" +msgstr "Homepage: %s" + +#: wp-admin/options-permalink.php:293 +msgid "Available tags:" +msgstr "Verfügbare Platzhalter:" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:289 +msgid "%s (already used in permalink structure)" +msgstr "%s (bereits in der Permalink-Struktur verwendet)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:286 +msgid "%s added to permalink structure" +msgstr "%s zur Permalink-Struktur hinzugefügt" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:273 +msgid "%s (A sanitized version of the author name.)" +msgstr "%s (Eine bereinigte Version des Autor-Namens.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:271 +msgid "%s (Category slug. Nested sub-categories appear as nested directories in the URL.)" +msgstr "%s (Kategorie-Titelform. Verschachtelte Unterkategorien erscheinen als verschachtelte Verzeichnisse in der URL.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:269 +msgid "%s (The sanitized post title (slug).)" +msgstr "%s (Der bereinigte Beitrags-Titel (Titelform).)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:267 +msgid "%s (The unique ID of the post, for example 423.)" +msgstr "%s (Die eindeutige ID des Beitrags, zum Beispiel 423.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:265 +msgid "%s (Second of the minute, for example 33.)" +msgstr "%s (Sekunde einer Minute, zum Beispiel 33.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:263 +msgid "%s (Minute of the hour, for example 43.)" +msgstr "%s (Minute einer Stunde, zum Beispiel 43.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:261 +msgid "%s (Hour of the day, for example 15.)" +msgstr "%s (Stunde des Tages, zum Beispiel 15.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:259 +msgid "%s (Day of the month, for example 28.)" +msgstr "%s (Tag des Monats, zum Beispiel 28.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:257 +msgid "%s (Month of the year, for example 05.)" +msgstr "%s (Monat des Jahres, zum Beispiel 05.)" + +#. translators: %s: Permalink structure tag. +#: wp-admin/options-permalink.php:255 +msgid "%s (The year of the post, four digits, for example 2004.)" +msgstr "%s (Das Jahr des Beitrags, vier Ziffern, zum Beispiel 2004.)" + +#: wp-admin/includes/theme-install.php:245 +msgid "Theme Installation" +msgstr "Theme-Installation" + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1747 +msgid "%s is already editing this post." +msgstr "%s bearbeitet diesen Beitrag bereits." + +#. translators: %s: User's display name. +#: wp-admin/includes/post.php:1744 +msgid "%s is already editing this post. Do you want to take over?" +msgstr "%s bearbeitet diesen Beitrag bereits. Möchtest du übernehmen?" + +#: wp-admin/includes/plugin.php:497 +msgid "Custom installation script." +msgstr "Individuelles Installationsskript." + +#: wp-admin/includes/plugin-install.php:683 +msgid "Active Installations:" +msgstr "Aktive Installationen:" + +#: wp-admin/includes/plugin-install.php:598 wp-admin/update.php:126 +msgid "Plugin Installation" +msgstr "Plugin-Installation" + +#: wp-admin/includes/ms.php:1145 +msgid "Settings — This page shows a list of all settings associated with this site. Some are created by WordPress and others are created by plugins you activate. Note that some fields are grayed out and say Serialized Data. You cannot modify these values due to the way the setting is stored in the database." +msgstr "Einstellungen – Diese Seite zeigt eine Liste aller Einstellungen, die mit dieser Website verknüpft sind. Einige werden von WordPress und andere werden von Plugins, die du aktiviert hast, erstellt. Beachte, dass einige Felder ausgegraut sind und „SERIALIZED DATA“ beinhalten. Du kannst diese Werte, aufgrund der Art und Weise, wie sie in der Datenbank gespeichert sind, nicht ändern." + +#. translators: %s: URL to Network Themes screen. +#: wp-admin/includes/ms.php:1142 +msgid "Themes — This area shows themes that are not already enabled across the network. Enabling a theme in this menu makes it accessible to this site. It does not activate the theme, but allows it to show in the site’s Appearance menu. To enable a theme for the entire network, see the Network Themes screen." +msgstr "Themes – Dieser Bereich zeigt Themes, die noch nicht netzwerkweit aktiviert sind. Die Aktivierung eines Themes in diesem Menü macht es für diese Website zugänglich. Es aktiviert nicht das Theme, sondern ermöglicht, es im Menü der Website unter Design anzuzeigen. Um ein Theme für das gesamte Netzwerk zu aktivieren, nutze die Netzwerk-Themes-Ansicht." + +#: wp-admin/includes/ms.php:1139 +msgid "Users — This displays the users associated with this site. You can also change their role, reset their password, or remove them from the site. Removing the user from the site does not remove the user from the network." +msgstr "Benutzer – Hier werden die mit dieser Website verknüpften Benutzer angezeigt. Du kannst auch ihre Rolle ändern, ihr Passwort zurücksetzen oder sie von der Website entfernen. Das Entfernen des Benutzers von der Website entfernt ihn jedoch nicht aus dem Netzwerk." + +#: wp-admin/includes/ms.php:1138 +msgid "Info — The site URL is rarely edited as this can cause the site to not work properly. The Registered date and Last Updated date are displayed. Network admins can mark a site as archived, spam, deleted and mature, to remove from public listings or disable." +msgstr "Info – Die URL einer Website wird selten verändert, denn das kann verursachen, dass die Website nicht mehr funktioniert. Das Registrierungsdatum und das Datum der letzten Änderung werden angezeigt. Netzwerk-Administratoren können eine Website als archiviert, Spam, gelöscht und nicht jugendfrei markieren, um diese aus öffentlichen Listen zu entfernen oder zu deaktivieren." + +#: wp-admin/includes/ms.php:1137 +msgid "The menu is for editing information specific to individual sites, particularly if the admin area of a site is unavailable." +msgstr "Das Menü dient der Bearbeitung bestimmter Informationen individueller Websites, besonders, wenn der Administrator-Bereich einer Website nicht verfügbar ist." + +#: wp-admin/includes/file.php:504 +msgid "Unable to write to file." +msgstr "Kann nicht in die Datei schreiben." + +#. translators: 1: Line number, 2: File path. +#: wp-admin/includes/file.php:311 +msgid "Your PHP code changes were rolled back due to an error on line %1$s of file %2$s. Please fix and try saving again." +msgstr "Deine PHP-Code-Änderungen wurden aufgrund eines Fehlers in Zeile %1$s der Datei %2$s zurückgesetzt. Bitte beheben und versuchen, erneut zu speichern." + +#. translators: If a Rosetta site exists (e.g. https://es.wordpress.org/news/), +#. then use that. Otherwise, leave untranslated. +#: wp-admin/includes/dashboard.php:1255 +msgctxt "Events and News dashboard widget" +msgid "https://wordpress.org/news/" +msgstr "https://de.wordpress.org/news/" + +#: wp-admin/includes/dashboard.php:75 wp-admin/includes/dashboard.php:606 +msgid "Your Recent Drafts" +msgstr "Deine letzten Entwürfe" + +#: wp-admin/includes/class-wp-users-list-table.php:546 +#: wp-admin/includes/class-wp-ms-users-list-table.php:307 +msgctxt "name" +msgid "Unknown" +msgstr "Unbekannt" + +#. translators: %s: Author's display name. +#: wp-admin/includes/class-wp-users-list-table.php:468 +msgid "View posts by %s" +msgstr "Beiträge von %s anschauen" + +#: wp-admin/includes/class-wp-terms-list-table.php:543 +msgid "No description" +msgstr "Keine Beschreibung" + +#. translators: %s: Number of installations. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:752 +msgid "%s Active Installations" +msgstr "%s aktive Installationen" + +#: wp-admin/includes/class-theme-upgrader.php:81 +msgid "Theme installation failed." +msgstr "Theme-Installation fehlgeschlagen." + +#: wp-admin/includes/class-plugin-upgrader.php:83 +msgid "Plugin installation failed." +msgstr "Plugin-Installation fehlgeschlagen." + +#: wp-admin/includes/class-plugin-installer-skin.php:110 +msgid "Activate Plugin & Return to Press This" +msgstr "Plugin aktivieren & zurück zu Press This" + +#: wp-admin/customize.php:71 +msgid "Your scheduled changes just published" +msgstr "Deine geplanten Änderungen wurden gerade veröffentlicht" + +#. translators: %s: Theme name. +#: wp-admin/themes.php:540 wp-admin/themes.php:888 wp-admin/themes.php:1101 +#: wp-admin/theme-install.php:350 wp-admin/theme-install.php:413 +#: wp-admin/js/updates.js:1362 +msgctxt "theme" +msgid "Activate %s" +msgstr "%s aktivieren" + +#: wp-admin/options-discussion.php:54 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new posts" +msgstr "Link-Benachrichtigungen von anderen Blogs (Pingbacks und Trackbacks) zu neuen Beiträgen erlauben" + +#: wp-admin/menu-header.php:278 wp-admin/js/common.js:1901 +msgid "Collapse Main menu" +msgstr "Hauptmenü einklappen" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:798 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:589 +#: wp-admin/js/updates.js:730 +msgctxt "plugin" +msgid "Network Activate %s" +msgstr "%s netzwerkweit aktivieren" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:852 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:576 +#: wp-admin/js/updates.js:741 +msgctxt "plugin" +msgid "Activate %s" +msgstr "%s aktivieren" + +#: wp-admin/includes/class-wp-media-list-table.php:249 +msgid "No media files found." +msgstr "Es wurden keine Mediendateien gefunden." + +#: wp-admin/import.php:133 wp-admin/import.php:182 wp-admin/js/updates.js:844 +msgid "Run Importer" +msgstr "Importer ausführen" + +#. translators: %s: Importer name. +#: wp-admin/import.php:132 wp-admin/import.php:181 wp-admin/js/updates.js:840 +msgid "Run %s" +msgstr "%s ausführen" + +#: wp-admin/includes/class-wp-debug-data.php:120 +msgctxt "comment status" +msgid "Open" +msgstr "Offen" + +#. translators: %s: Meetup organization documentation URL. +#: wp-admin/includes/dashboard.php:1407 +msgid "There aren’t any events scheduled near you at the moment. Would you like to organize a WordPress event?" +msgstr "Momentan sind keine Veranstaltungen in deiner Nähe geplant. Möchtest du ein WordPress-Event organisieren (engl.)?" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:34 +msgid "Edit User %s" +msgstr "Benutzer %s bearbeiten" + +#. translators: %s: Widget title. +#: wp-admin/includes/widgets.php:249 +msgid "Edit widget: %s" +msgstr "Widget bearbeiten: %s" + +#: wp-admin/includes/dashboard.php:1399 wp-admin/includes/dashboard.php:1408 +msgid "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" +msgstr "https://make.wordpress.org/community/handbook/meetup-organizer/welcome/" + +#. translators: 1: The city the user searched for, 2: Meetup organization +#. documentation URL. +#: wp-admin/includes/dashboard.php:1397 +msgid "There aren’t any events scheduled near %1$s at the moment. Would you like to organize a WordPress event?" +msgstr "Momentan sind keine Veranstaltungen in der Nähe von %1$s geplant. Möchtest du ein WordPress-Event organisieren (engl.)?" + +#. translators: %s: The name of a city. +#: wp-admin/includes/dashboard.php:1350 +msgid "Attend an upcoming event near %s." +msgstr "Besuche eine Veranstaltung in der Nähe von %s:" + +#: wp-admin/includes/dashboard.php:1320 +msgid "Cincinnati" +msgstr "Hamburg" + +#: wp-admin/includes/dashboard.php:1308 +msgid "City:" +msgstr "Stadt:" + +#: wp-admin/includes/dashboard.php:1301 +msgid "Edit city" +msgstr "Stadt bearbeiten" + +#: wp-admin/includes/dashboard.php:1243 +msgid "WordCamps" +msgstr "WordCamps" + +#: wp-admin/includes/dashboard.php:1231 +msgid "Meetups" +msgstr "Meetups" + +#: wp-admin/includes/dashboard.php:80 +msgid "WordPress Events and News" +msgstr "WordPress-Veranstaltungen und Neuigkeiten" + +#. translators: Date format for upcoming events on the dashboard. Include the +#. day of the week. See https://www.php.net/date +#: wp-admin/includes/class-wp-community-events.php:379 +#: wp-admin/includes/class-wp-community-events.php:384 +msgid "l, M j, Y" +msgstr "l, j. M. Y" + +#: wp-admin/includes/class-wp-community-events.php:122 +msgid "Unknown API error." +msgstr "Unbekannter API-Fehler." + +#. translators: %d: Numeric HTTP status code, e.g. 400, 403, 500, 504, etc. +#: wp-admin/includes/class-wp-community-events.php:117 +msgid "Invalid API response code (%d)." +msgstr "Ungültiger API-Antwortcode (%d)" + +#: wp-admin/edit-tags.php:493 wp-admin/edit-tag-form.php:183 +msgid "Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band." +msgstr "Weise einen übergeordneten Begriff zu, um eine Hierarchie zu erstellen. Der Begriff Jazz könnte beispielsweise der übergeordnete Begriff für Bebop und Big Band sein." + +#: wp-admin/users.php:180 wp-admin/users.php:229 +msgid "Sorry, you are not allowed to delete users." +msgstr "Du bist leider nicht berechtigt, Benutzer zu löschen." + +#: wp-admin/user-new.php:23 wp-admin/user-new.php:157 +msgid "Sorry, you are not allowed to create users." +msgstr "Du bist leider nicht berechtigt, Benutzer zu erstellen." + +#: wp-admin/customize.php:233 +msgid "The Customizer allows you to preview changes to your site before publishing them. You can navigate to different pages on your site within the preview. Edit shortcuts are shown for some editable elements." +msgstr "Der Customizer ermöglicht dir eine Vorschau der Änderungen an deiner Website vor dem Veröffentlichen. Du kannst innerhalb der Vorschau unterschiedliche Seiten deiner Website ansteuern. Es werden Buttons neben den editierbaren Elementen angezeigt." + +#: wp-admin/customize.php:247 +msgctxt "short (~12 characters) label for hide controls button" +msgid "Hide Controls" +msgstr "Ausblenden" + +#: wp-admin/theme-install.php:70 +msgid "Expand Sidebar" +msgstr "Seitenleiste einblenden" + +#: wp-admin/nav-menus.php:1042 +msgid "Display location" +msgstr "Position im Theme" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:432 +msgid "ID #%1$s: %2$s Sorry, you are not allowed to remove this user." +msgstr "ID #%1$s: %2$s Du bist leider nicht berechtigt diesen Benutzer zu entfernen." + +#: wp-admin/user-edit.php:51 +msgid "You can select the language you wish to use while using the WordPress administration screen without affecting the language site visitors see." +msgstr "Du kannst die Sprache auswählen, die du im WordPress-Administrationsbereich (Backend) benutzen willst, ohne Auswirkungen auf die Sprache, die Besucher deiner Website (im Frontend) zu sehen bekommen." + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:67 +msgid "If you need to re-install version %s, you can do so here:" +msgstr "Falls du Version %s neu installieren musst, dann kannst du das hier machen:" + +#: wp-admin/update-core.php:63 +msgid "You are using a development version of WordPress. You can update to the latest nightly build automatically:" +msgstr "Du verwendest die Entwicklungs-Version von WordPress. Du kannst automatisch auf den neuesten Nightly Build aktualisieren:" + +#: wp-admin/theme-install.php:237 +msgid "Edit Filters" +msgstr "Filter bearbeiten" + +#: wp-admin/theme-install.php:209 wp-admin/theme-install.php:232 +msgid "Clear current filters" +msgstr "Aktuelle Filter entfernen" + +#. translators: Accessibility text. +#: wp-admin/theme-install.php:72 +msgid "Select one or more Theme features to filter by" +msgstr "Wähle ein oder mehrere Funktionen nach denen die Themes gefiltert werden" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/theme.php:827 wp-admin/theme-install.php:450 +msgid "(%s ratings)" +msgstr "(%s Bewertungen)" + +#: wp-admin/includes/template.php:2274 +msgid "Current Background Image" +msgstr "Derzeit aktives Hintergrundbild" + +#: wp-admin/includes/template.php:2261 +msgid "Current Header Image" +msgstr "Das derzeitige Header-Bild" + +#: wp-admin/includes/plugin-install.php:338 +msgid "Search plugins..." +msgstr "Plugins durchsuchen ..." + +#: wp-admin/includes/meta-boxes.php:138 +msgid "Set status" +msgstr "Status setzen" + +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-posts-list-table.php:945 +msgid "“%s” is locked" +msgstr "„%s“ ist gesperrt" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:747 +#: wp-admin/includes/plugin-install.php:693 +msgctxt "Active plugin installations" +msgid "Less Than 10" +msgstr "Weniger als 10" + +#: wp-admin/includes/ajax-actions.php:2513 +msgid "Sorry, you are not allowed to attach files to this post." +msgstr "Du bist leider nicht berechtigt, Dateien an Beiträge anzuhängen." + +#: wp-admin/includes/plugin-install.php:273 +#: wp-admin/includes/plugin-install.php:700 wp-admin/freedoms.php:101 +#: wp-admin/plugins.php:550 wp-admin/plugin-install.php:89 +msgid "https://wordpress.org/plugins/" +msgstr "https://de.wordpress.org/plugins/" + +#: wp-admin/customize.php:72 wp-admin/customize.php:81 +msgid "Customize New Changes" +msgstr "Neue Änderungen anpassen" + +#: wp-admin/includes/class-custom-background.php:446 +#: wp-admin/includes/class-custom-background.php:447 +msgctxt "Background Scroll" +msgid "Scroll" +msgstr "Scrollen" + +#: wp-admin/includes/class-custom-background.php:438 +#: wp-admin/includes/class-custom-background.php:439 +msgctxt "Background Repeat" +msgid "Repeat" +msgstr "Wiederholen" + +#: wp-admin/options-reading.php:52 wp-admin/edit-tags.php:314 +#: wp-admin/link-manager.php:79 wp-admin/options-writing.php:53 +#: wp-admin/includes/class-custom-background.php:100 +#: wp-admin/includes/class-custom-image-header.php:135 wp-admin/my-sites.php:52 +#: wp-admin/options-general.php:49 wp-admin/comment.php:71 +#: wp-admin/theme-editor.php:55 wp-admin/plugin-editor.php:144 +#: wp-admin/nav-menus.php:659 wp-admin/update-core.php:847 +#: wp-admin/options-permalink.php:62 wp-admin/user-new.php:269 +#: wp-admin/index.php:108 wp-admin/plugins.php:589 wp-admin/themes.php:208 +#: wp-admin/edit-comments.php:197 wp-admin/media.php:97 +#: wp-admin/revision.php:157 wp-admin/upload.php:76 wp-admin/upload.php:253 +#: wp-admin/edit-form-advanced.php:318 wp-admin/edit-form-advanced.php:336 +#: wp-admin/edit-form-advanced.php:354 wp-admin/tools.php:56 +#: wp-admin/import.php:32 wp-admin/widgets.php:84 wp-admin/options-media.php:38 +#: wp-admin/edit-link-form.php:77 wp-admin/user-edit.php:68 +#: wp-admin/users.php:76 wp-admin/media-new.php:61 +#: wp-admin/theme-install.php:132 wp-admin/options-discussion.php:32 +#: wp-admin/edit.php:277 wp-admin/edit.php:302 wp-admin/plugin-install.php:110 +#: wp-admin/export.php:58 wp-admin/network.php:81 +#: wp-admin/network/themes.php:325 wp-admin/network/upgrade.php:32 +#: wp-admin/network/settings.php:64 +msgid "Support" +msgstr "Support-Foren" + +#. translators: %s: Number of failed updates. +#: wp-admin/includes/update.php:897 +msgid "%s updates failed." +msgstr "%s Aktualisierungen fehlgeschlagen." + +#. translators: %s: Number of failed updates. +#: wp-admin/includes/update.php:892 +msgid "%s update failed." +msgstr "%s Aktualisierung fehlgeschlagen." + +#: wp-admin/includes/class-wp-plugins-list-table.php:448 +msgid "Search installed plugins..." +msgstr "Installierte Plugins durchsuchen ..." + +#: wp-admin/plugin-install.php:91 +msgid "You can find new plugins to install by searching or browsing the directory right here in your own Plugins section." +msgstr "Du findest neue Plugins zur Installation über eine Suche oder Durchblättern des Verzeichnisses gleich hier in deinem eigenen Plugin-Bereich." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/plugin-install.php:88 +msgid "Plugins hook into WordPress to extend its functionality with custom features. Plugins are developed independently from the core WordPress application by thousands of developers all over the world. All plugins in the official WordPress Plugin Directory are compatible with the license WordPress uses." +msgstr "Plugins klinken sich in WordPress ein, um die Funktionalität von WordPress um individuelle Funktionen zu erweitern. Plugins werden unabhängig vom WordPress-Core von tausenden Personen auf der ganzen Welt entwickelt. Alle Plugins im offiziellen WordPress-Plugin-Verzeichnis sind mit der von WordPress genutzten Lizenz (GPL) kompatibel." + +#: wp-admin/includes/plugin-install.php:331 +msgid "Search plugins by:" +msgstr "Suche Plugins nach:" + +#: wp-admin/includes/import.php:227 +msgid "Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file." +msgstr "Beiträge, Seiten, Kommentare, Individuelle Felder, Kategorien und Tags aus einer WordPress-Export-Datei importieren." + +#: wp-admin/includes/import.php:221 +msgid "Import posts & media from Tumblr using their API." +msgstr "Beiträge und Medien von Tumblr über deren API importieren." + +#: wp-admin/includes/import.php:215 +msgid "Import posts from an RSS feed." +msgstr "Beiträge von einem RSS-Feed importieren." + +#: wp-admin/includes/import.php:209 +msgid "Import posts and comments from a Movable Type or TypePad blog." +msgstr "Beiträge und Kommentare von einem Movable Type- oder TypePad-Blog importieren." + +#: wp-admin/includes/import.php:203 +msgid "Import posts from LiveJournal using their API." +msgstr "Beiträge von LiveJournal über deren API importieren." + +#: wp-admin/includes/import.php:197 +msgid "Convert existing categories to tags or tags to categories, selectively." +msgstr "Konvertiere wahlweise existierende Kategorien in Schlagwörter oder Schlagwörter in Kategorien." + +#: wp-admin/includes/import.php:191 +msgid "Import posts, comments, and users from a Blogger blog." +msgstr "Beiträge, Kommentare und Benutzer von einem Blogger-Blog importieren." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:830 +msgctxt "plugin" +msgid "Deactivate %s" +msgstr "%s deaktivieren" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:809 +#: wp-admin/includes/class-wp-plugins-list-table.php:863 +msgctxt "plugin" +msgid "Delete %s" +msgstr "%s löschen" + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-plugins-list-table.php:787 +msgctxt "plugin" +msgid "Network Deactivate %s" +msgstr "%s netzwerkweit deaktivieren" + +#: wp-admin/user-new.php:238 +msgid "By default, new users will receive an email letting them know they’ve been added as a user for your site. This email will also contain a password reset link. Uncheck the box if you don’t want to send the new user a welcome email." +msgstr "Neue Benutzer erhalten standardmäßig eine E-Mail, die ihnen mitteilt, dass sie als Benutzer deiner Website hinzugefügt wurden. Diese E-Mail enthält auch einen Link zum Zurücksetzen des Passworts. Wähle diese Option ab, wenn du einem neuen Benutzer keine Willkommens-E-Mail senden möchtest." + +#: wp-admin/user-new.php:236 +msgid "New users are automatically assigned a password, which they can change after logging in. You can view or edit the assigned password by clicking the Show Password button. The username cannot be changed once the user has been added." +msgstr "Neue Benutzer bekommen automatisch ein Passwort zugewiesen, welches sie nach dem Anmelden ändern können. Du kannst das zugewiesene Passwort durch Klicken auf den „Passwort anzeigen“-Button anzeigen oder ändern. Der Benutzername kann nicht geändert werden, sobald der Benutzer hinzugefügt wurde." + +#. translators: %s: Plugin name. +#: wp-admin/includes/update.php:960 +msgctxt "plugin" +msgid "%s was successfully deleted." +msgstr "%s wurde erfolgreich gelöscht." + +#: wp-admin/plugins.php:546 +msgid "The search for installed plugins will search for terms in their name, description, or author." +msgstr "Die Suche nach installierte Plugins beinhaltet die Suche in deren Namen, Beschreibung oder Autor." + +#: wp-admin/includes/theme.php:309 +msgid "Custom Logo" +msgstr "Individuelles Logo" + +#: wp-admin/users.php:368 wp-admin/users.php:400 +#: wp-admin/network/site-users.php:120 +msgid "Sorry, you are not allowed to remove users." +msgstr "Du bist leider nicht berechtigt, Benutzer zu löschen." + +#: wp-admin/user-new.php:16 wp-admin/user-new.php:56 +#: wp-admin/network/user-new.php:14 +msgid "Sorry, you are not allowed to add users to this network." +msgstr "Du bist leider nicht berechtigt, Benutzer zu diesem Netzwerk hinzuzufügen." + +#: wp-admin/user-edit.php:660 +msgid "Confirm use of potentially weak password" +msgstr "Bestätige die Verwendung eines potenziell schwachen Passworts" + +#: wp-admin/customize.php:35 +msgid "Sorry, you are not allowed to edit this changeset." +msgstr "Du bist leider nicht berechtigt, dieses Änderungs-Set zu bearbeiten." + +#: wp-admin/includes/ajax-actions.php:4154 wp-admin/update.php:202 +#: wp-admin/update.php:223 +msgid "Sorry, you are not allowed to update themes for this site." +msgstr "Du bist leider nicht berechtigt, Themes dieser Website zu aktualisieren." + +#: wp-admin/update-core.php:23 wp-admin/update-core.php:917 +#: wp-admin/update-core.php:953 wp-admin/update-core.php:991 +#: wp-admin/update-core.php:1031 +msgid "Sorry, you are not allowed to update this site." +msgstr "Du bist leider nicht berechtigt, diese Website zu aktualisieren." + +#: wp-admin/themes.php:395 wp-admin/themes.php:734 +msgid "New version available. " +msgstr "Es ist eine neue Version verfügbar. " + +#: wp-admin/theme-install.php:161 +msgid "The Theme Installer screen requires JavaScript." +msgstr "Die „Themes installieren“-Ansicht erfordert JavaScript." + +#: wp-admin/includes/file.php:425 wp-admin/theme-editor.php:18 +msgid "Sorry, you are not allowed to edit templates for this site." +msgstr "Du bist leider nicht berechtigt, Templates dieser Website zu bearbeiten." + +#: wp-admin/setup-config.php:321 +msgid "Error: \"Table Prefix\" is invalid." +msgstr "Fehler: „Tabellenpräfix“ ist ungültig." + +#: wp-admin/plugins.php:225 +msgid "Sorry, you are not allowed to deactivate plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu deaktivieren." + +#: wp-admin/plugins.php:92 +msgid "Sorry, you are not allowed to activate plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu aktivieren." + +#: wp-admin/includes/file.php:393 wp-admin/plugin-editor.php:18 +msgid "Sorry, you are not allowed to edit plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu bearbeiten." + +#: wp-admin/options.php:248 +msgid "Sorry, you are not allowed to modify unregistered settings for this site." +msgstr "Du bist leider nicht berechtigt, nicht registrierte Einstellungen dieser Website anzupassen." + +#: wp-admin/options-reading.php:13 wp-admin/options-writing.php:13 +#: wp-admin/options-general.php:16 wp-admin/options-permalink.php:13 +#: wp-admin/options.php:50 wp-admin/options-media.php:13 +#: wp-admin/options-discussion.php:12 wp-admin/network.php:19 +msgid "Sorry, you are not allowed to manage options for this site." +msgstr "Du bist leider nicht berechtigt, Einstellungen dieser Website zu verwalten." + +#: wp-admin/nav-menus.php:681 wp-admin/widgets.php:405 +msgid "Manage with Live Preview" +msgstr "Verwalten mit Live-Vorschau" + +#: wp-admin/ms-delete-site.php:17 +msgid "Sorry, you are not allowed to delete this site." +msgstr "Du bist leider nicht berechtigt, diese Website zu löschen." + +#: wp-admin/link-add.php:13 +msgid "Sorry, you are not allowed to add links to this site." +msgstr "Du bist leider nicht berechtigt, Links zu dieser Website hinzuzufügen." + +#: wp-admin/includes/upgrade.php:271 +msgid "" +"Hi, this is a comment.\n" +"To get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\n" +"Commenter avatars come from Gravatar." +msgstr "" +"Hallo, dies ist ein Kommentar.\n" +"Um mit dem Freischalten, Bearbeiten und Löschen von Kommentaren zu beginnen, besuche bitte die Kommentare-Ansicht im Dashboard.\n" +"Die Avatare der Kommentatoren kommen von Gravatar." + +#: wp-admin/includes/upgrade.php:268 +msgid "A WordPress Commenter" +msgstr "Ein WordPress-Kommentator" + +#. translators: %s: Theme name. +#: wp-admin/includes/update.php:968 +msgctxt "theme" +msgid "%s was successfully deleted." +msgstr "%s wurde erfolgreich gelöscht." + +#. translators: %s: Number of themes. +#: wp-admin/includes/update.php:882 +msgid "%s themes successfully updated." +msgstr "%s Themes wurden erfolgreich aktualisiert." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/update.php:877 +msgid "%s plugins successfully updated." +msgstr "%s Plugins wurden erfolgreich aktualisiert." + +#. translators: %s: Number of themes. +#: wp-admin/includes/update.php:870 +msgid "%s theme successfully updated." +msgstr "%s Theme wurde erfolgreich aktualisiert." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/update.php:865 +msgid "%s plugin successfully updated." +msgstr "%s Plugin wurde erfolgreich aktualisiert." + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version. +#: wp-admin/includes/update.php:316 +msgid "WordPress %2$s is available! Please notify the site administrator." +msgstr "WordPress %2$s ist verfügbar! Bitte informiere den Administrator." + +#: wp-admin/includes/update.php:311 +msgid "Please update WordPress now" +msgstr "Bitte aktualisiere WordPress jetzt" + +#. translators: 1: URL to WordPress release notes, 2: New WordPress version, 3: +#. URL to network admin, 4: Accessibility text. +#: wp-admin/includes/update.php:307 +msgid "WordPress %2$s is available! Please update now." +msgstr "WordPress %2$s ist verfügbar! Bitte aktualisiere jetzt." + +#: wp-admin/includes/theme.php:299 +msgid "Portfolio" +msgstr "Portfolio" + +#: wp-admin/includes/theme.php:298 +msgid "Photography" +msgstr "Fotografie" + +#: wp-admin/includes/theme.php:297 wp-admin/includes/dashboard.php:1256 +msgid "News" +msgstr "News" + +#: wp-admin/includes/theme.php:295 +msgid "Food & Drink" +msgstr "Essen & Trinken" + +#: wp-admin/includes/theme.php:294 +msgid "Entertainment" +msgstr "Unterhaltung" + +#: wp-admin/includes/theme.php:293 +msgid "Education" +msgstr "Bildung" + +#: wp-admin/includes/theme.php:292 +msgid "E-Commerce" +msgstr "E-Commerce" + +#: wp-admin/includes/theme.php:291 +msgid "Blog" +msgstr "Blog" + +#: wp-admin/includes/theme.php:313 +msgid "Footer Widgets" +msgstr "Footer-Widgets" + +#: wp-admin/includes/theme.php:322 +msgid "Grid Layout" +msgstr "Raster-Layout" + +#: wp-admin/includes/template.php:2550 +msgid "This will replace the current editor content with the last backup version. You can use undo and redo in the editor to get the old content back or to return to the restored version." +msgstr "Das wird den aktuellen Editor-Inhalt mit dem Inhalt der letzten gespeicherten Version ersetzen. Du kannst die Funktionen Rückgängig oder Wiederherstellen im Editor nutzen, um den alten Inhalt zurück zu holen oder um zur wiederhergestellten Version zurückzukehren." + +#: wp-admin/includes/template.php:1922 +msgid "Close media attachment panel" +msgstr "„Medien hinzufügen“-Bedienfeld schließen" + +#: wp-admin/includes/ms.php:1054 +msgid "Info" +msgstr "Info" + +#: wp-admin/includes/meta-boxes.php:1021 +msgid "Need help? Use the Help tab above the screen title." +msgstr "Brauchst du Hilfe? Benutze den Tab „Hilfe“ oben am Bildschirm." + +#: wp-admin/includes/menu.php:350 wp-admin/my-sites.php:17 +#: wp-admin/network/site-info.php:32 wp-admin/network/user-new.php:37 +#: wp-admin/network/index.php:17 wp-admin/network/site-users.php:50 +#: wp-admin/network/upgrade.php:38 wp-admin/network/users.php:14 +#: wp-admin/network/users.php:24 wp-admin/network/users.php:46 +#: wp-admin/network/users.php:60 wp-admin/network/users.php:150 +#: wp-admin/network/site-themes.php:57 wp-admin/network/settings.php:17 +#: wp-admin/network/site-settings.php:32 wp-admin/network/sites.php:14 +#: wp-admin/network/sites.php:140 +msgid "Sorry, you are not allowed to access this page." +msgstr "Du bist leider nicht berechtigt, auf diese Seite zuzugreifen." + +#: wp-admin/includes/file.php:51 +msgid "Embed Footer Template" +msgstr "Embed Footer-Template" + +#: wp-admin/includes/file.php:50 +msgid "Embed Header Template" +msgstr "Embed Header-Template" + +#: wp-admin/includes/file.php:49 +msgid "Embed Content Template" +msgstr "Embed Content-Template" + +#: wp-admin/includes/file.php:48 +msgid "Embed 404 Template" +msgstr "Embed 404-Template" + +#: wp-admin/includes/file.php:47 +msgid "Embed Template" +msgstr "Embed Template" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:571 +msgctxt "plugin" +msgid "Active" +msgstr "Aktiv" + +#: wp-admin/includes/class-wp-media-list-table.php:524 +msgid "(Private post)" +msgstr "(Privater Beitrag)" + +#: wp-admin/link-manager.php:12 wp-admin/link-manager.php:91 +#: wp-admin/includes/bookmark.php:32 wp-admin/includes/bookmark.php:329 +msgid "Sorry, you are not allowed to edit the links for this site." +msgstr "Du bist leider nicht berechtigt, die Links dieser Website zu bearbeiten." + +#: wp-admin/privacy-policy-guide.php:13 wp-admin/options-privacy.php:13 +msgid "Sorry, you are not allowed to manage privacy on this site." +msgstr "Du bist leider nicht berechtigt, den Datenschutz dieser Website zu verwalten." + +#: wp-admin/includes/ajax-actions.php:4579 +msgid "Plugin could not be deleted." +msgstr "Plugin konnte nicht gelöscht werden." + +#: wp-admin/includes/ajax-actions.php:4433 wp-admin/update.php:29 +#: wp-admin/update.php:57 wp-admin/update.php:79 +msgid "Sorry, you are not allowed to update plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu aktualisieren." + +#: wp-admin/includes/ajax-actions.php:4309 +#: wp-admin/includes/ajax-actions.php:4418 +#: wp-admin/includes/ajax-actions.php:4526 +msgid "No plugin specified." +msgstr "Kein Plugin angegeben." + +#: wp-admin/includes/ajax-actions.php:4285 +msgid "Theme could not be deleted." +msgstr "Theme konnte nicht gelöscht werden." + +#: wp-admin/includes/ajax-actions.php:4247 +msgid "Sorry, you are not allowed to delete themes on this site." +msgstr "Du bist leider nicht berechtigt, Theme auf dieser Website zu löschen." + +#: wp-admin/includes/ajax-actions.php:4030 wp-admin/update.php:251 +#: wp-admin/update.php:291 wp-admin/update.php:324 +#: wp-admin/theme-install.php:16 +msgid "Sorry, you are not allowed to install themes on this site." +msgstr "Du bist leider nicht berechtigt, Themes auf dieser Website zu installieren." + +#: wp-admin/includes/ajax-actions.php:4017 +#: wp-admin/includes/ajax-actions.php:4140 +#: wp-admin/includes/ajax-actions.php:4235 +msgid "No theme specified." +msgstr "Kein Theme angegeben." + +#: wp-admin/admin.php:305 wp-admin/import.php:15 +msgid "Sorry, you are not allowed to import content into this site." +msgstr "Du bist leider nicht berechtigt, Inhalte in diese Website zu importieren." + +#: wp-admin/export.php:13 +msgid "Sorry, you are not allowed to export the content of this site." +msgstr "Du bist leider nicht berechtigt, Inhalte von dieser Website zu exportieren." + +#: wp-admin/edit.php:244 +msgid "You can filter the list of posts by post status using the text links above the posts list to only show posts with that status. The default view is to show all posts." +msgstr "Du kannst die Beitragsliste nach Beitragsstatus filtern, indem du die Text-Links über der Beitragsliste benutzt um nur Beiträge des gewählten Status anzuzeigen. Die Standardansicht ist alle Beiträge anzuzeigen." + +#: wp-admin/customize.php:206 +msgid "Close the Customizer and go back to the previous page" +msgstr "Schließe den Customizer und gehe zur vorherigen Seite zurück" + +#: wp-admin/includes/class-custom-image-header.php:1029 +msgid "Sorry, you are not allowed to customize headers." +msgstr "Du bist leider nicht berechtigt, Header anzupassen." + +#: wp-admin/credits.php:142 +msgid "Release Deputy" +msgstr "Stellvertretende Release-Leitung" + +#: wp-admin/credits.php:141 +msgid "Release Design Lead" +msgstr "Release-Leitung Design" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:806 +msgid "Allow trackbacks and pingbacks on this page" +msgstr "Trackbacks und Pingbacks auf diese Seite erlauben." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:782 +msgid "Custom fields can be used to add extra metadata to a post that you can use in your theme." +msgstr "Individuelle Felder können verwendet werden, um zusätzliche Metadaten zu einem Beitrag hinzuzufügen, die dann in deinem Theme verwendet werden können." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:745 +msgid "Trackbacks are a way to notify legacy blog systems that you’ve linked to them. If you link other WordPress sites, they’ll be notified automatically using pingbacks, no other action necessary." +msgstr "Trackbacks sind eine Möglichkeit, Blog-Systeme zu informieren, dass du diese verlinkt hast. Wenn zu anderen WordPress-Websites verlinkt wird, werden diese automatisch mittels Pingbacks informiert, es sind keine weiteren Maßnahmen erforderlich." + +#. translators: %s: Documentation URL. +#: wp-admin/includes/meta-boxes.php:707 +msgid "Excerpts are optional hand-crafted summaries of your content that can be used in your theme. Learn more about manual excerpts." +msgstr "Textauszüge sind optionale, von Hand erstellte Zusammenfassungen deiner Inhalte, die in deinem Theme verwendet werden können. Erfahre mehr über manuelle Textauszüge (engl.)." + +#: wp-admin/edit-form-advanced.php:293 +msgid "The Text mode allows you to enter HTML along with your post text. Note that <p> and <br> tags are converted to line breaks when switching to the Text editor to make it less cluttered. When you type, a single line break can be used instead of typing <br>, and two line breaks instead of paragraph tags. The line breaks are converted back to tags automatically." +msgstr "Der Text-Modus ermöglicht es dir den Beitragstext mit HTML zu formatieren. Beachte, dass <p> und <br> Tags in Zeilenumbrüche konvertiert werden, wenn du zurück auf den Texteditor schaltest. Bei der Eingabe kann ein einzelner Zeilenumbruch anstatt <br> zu tippen verwendet werden und zwei Umbrüche anstelle von Absatz-Tags. Die Zeilenumbrüche werden automatisch in Tags zurück gewandelt." + +#: wp-admin/edit-form-advanced.php:292 +msgid "Visual mode gives you an editor that is similar to a word processor. Click the Toolbar Toggle button to get a second row of controls." +msgstr "Der visuelle Modus bietet dir einen Editor, der einem Textverarbeitungsprogramm ähnelt. Klicke auf die Schaltfläche „Werkzeugleiste umschalten“, um eine zweite Reihe von Formatierungsoptionen zu erhalten." + +#: wp-admin/upload.php:355 +msgid "Error saving media file." +msgstr "Fehler beim Speichern der Mediendatei." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:347 +msgid "%s media file restored from the Trash." +msgid_plural "%s media files restored from the Trash." +msgstr[0] "%s Mediendatei aus dem Papierkorb wiederhergestellt." +msgstr[1] "%s Mediendateien aus dem Papierkorb wiederhergestellt." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:334 +msgid "%s media file moved to the Trash." +msgid_plural "%s media files moved to the Trash." +msgstr[0] "%s Mediendatei in den Papierkorb verschoben." +msgstr[1] "%s Mediendateien in den Papierkorb verschoben." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:322 +msgid "%s media file permanently deleted." +msgid_plural "%s media files permanently deleted." +msgstr[0] "%s Mediendatei endgültig gelöscht." +msgstr[1] "%s Mediendateien endgültig gelöscht." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:310 +msgid "%s media file detached." +msgid_plural "%s media files detached." +msgstr[0] "%s Mediendatei getrennt." +msgstr[1] "%s Mediendateien getrennt." + +#: wp-admin/upload.php:307 +msgid "Media file detached." +msgstr "Mediendatei getrennt." + +#. translators: %s: Number of media files. +#: wp-admin/upload.php:298 +msgid "%s media file attached." +msgid_plural "%s media files attached." +msgstr[0] "%s Mediendatei angehängt." +msgstr[1] "%s Mediendateien angehängt." + +#: wp-admin/upload.php:295 +msgid "Media file attached." +msgstr "Mediendatei angehängt." + +#: wp-admin/media.php:108 wp-admin/upload.php:288 wp-admin/upload.php:353 +#: wp-admin/edit-form-advanced.php:208 +msgid "Media file updated." +msgstr "Mediendatei aktualisiert." + +#. translators: 1: Theme name, 2: Version number. +#. translators: 1: Plugin name, 2: Version number. +#: wp-admin/includes/theme.php:210 wp-admin/includes/theme.php:223 +#: wp-admin/includes/theme.php:236 wp-admin/includes/update.php:478 +#: wp-admin/includes/update.php:491 wp-admin/includes/update.php:505 +#: wp-admin/includes/update.php:524 wp-admin/includes/update.php:671 +#: wp-admin/includes/update.php:684 wp-admin/includes/update.php:697 +#: wp-admin/update-core.php:403 +msgid "View %1$s version %2$s details" +msgstr "Details der Version %2$s von %1$s anzeigen" + +#. translators: 1: Relative date, 2: Time. +#: wp-admin/includes/dashboard.php:982 +msgctxt "dashboard" +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#: wp-admin/edit-form-advanced.php:374 +msgid "Publish — You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). The Password protected option allows you to set an arbitrary password for each post. The Private option hides the post from everyone except editors and administrators. Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post." +msgstr "Veröffentlichen – Du kannst die Konditionen zur Veröffentlichung deines Beitrags in der Veröffentlichen-Box festlegen. Klicke bei Status, Sichtbarkeit und (sofort) Veröffentlichen auf den Bearbeiten-Link, um mehr Optionen einzublenden. Die Sichtbarkeit beinhaltet Optionen für den Passwortschutz eines Beitrags oder die Festlegung, dass der Beitrag dauerhaft oben gehalten werden soll (sticky). Die Einstellung zum Passwortschutz ermöglicht dir, für jeden Beitrag ein beliebiges Passwort festzulegen. Die Einstellung Privat versteckt Beiträge für jeden außer für Administratoren und Redakteure. (Sofort) Veröffentlichen ermöglicht dir, ein künftiges oder zurückliegendes Datum und eine Uhrzeit festzulegen, damit du die Veröffentlichung deines Beitrags planen oder Beiträge zurückdatieren kannst." + +#. translators: %s: New email. +#: wp-admin/user-edit.php:521 +msgid "There is a pending change of your email to %s." +msgstr "Eine Änderung deiner E-Mail-Adresse in %s steht noch aus." + +#: wp-admin/user-edit.php:208 +msgid "Error while saving the new email address. Please try again." +msgstr "Fehler beim Speichern der neuen E-Mail-Adresse. Bitte versuche es nochmal." + +#: wp-admin/upload.php:229 +msgid "You can narrow the list by file type/status or by date using the dropdown menus above the media table." +msgstr "Du kannst die Liste nach Dateityp/-status oder Datum eingrenzen, indem du die Drop-down-Menüs über der Medientabelle verwendest." + +#: wp-admin/themes.php:575 wp-admin/network/themes.php:424 +msgid "The following themes are installed but incomplete." +msgstr "Die folgenden Themes sind installiert, aber nicht vollständig." + +#: wp-admin/themes.php:271 +msgid "New theme activated." +msgstr "Neues Theme aktiviert." + +#: wp-admin/themes.php:267 +msgid "Settings saved and theme activated." +msgstr "Einstellungen gespeichert und Theme aktiviert." + +#: wp-admin/freedoms.php:102 wp-admin/themes.php:156 +#: wp-admin/theme-install.php:99 +msgid "https://wordpress.org/themes/" +msgstr "https://de.wordpress.org/themes/" + +#: wp-admin/users.php:188 +msgid "Sorry, you are not allowed to delete that user." +msgstr "Du bist leider nicht berechtigt, diesen Benutzer zu löschen." + +#: wp-admin/setup-config.php:229 +msgid "Your database password." +msgstr "Dein Datenbank-Passwort." + +#: wp-admin/setup-config.php:224 +msgid "Your database username." +msgstr "Dein Datenbank-Benutzername." + +#: wp-admin/setup-config.php:219 +msgid "The name of the database you want to use with WordPress." +msgstr "Der Name der Datenbank, die du für WordPress verwenden möchtest." + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:364 +msgctxt "plugin" +msgid "%1$s by %2$s" +msgstr "%1$s von %2$s" + +#. translators: 1: Plugin name, 2: Plugin author. +#: wp-admin/plugins.php:360 +msgid "%1$s by %2$s (will also delete its data)" +msgstr "%1$s von %2$s (es werden auch alle zugehörigen Daten gelöscht)" + +#. translators: %s: New admin email. +#: wp-admin/options-general.php:123 +msgid "There is a pending change of the admin email to %s." +msgstr "Eine Änderung der Administratoren-E-Mail-Adresse in %s steht noch aus." + +#: wp-admin/install.php:419 +msgid "WordPress has been installed. Thank you, and enjoy!" +msgstr "WordPress wurde installiert. Vielen Dank, und nun viel Spaß!" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/install.php:309 +msgid "The constant %s cannot be defined when installing WordPress." +msgstr "Die Konstante %s kann während der Installation von WordPress nicht definiert werden." + +#. translators: %s: wp-config.php +#: wp-admin/install.php:296 +msgid "Your %s file has an empty database table prefix, which is not supported." +msgstr "Deine Datei %s hat ein leeres Datenbank-Tabellenpräfix, was nicht unterstützt wird." + +#: wp-admin/index.php:160 +msgid "Dismiss the welcome panel" +msgstr "Den Willkommen-Bereich ausblenden" + +#: wp-admin/includes/theme-install.php:185 +msgid "Theme zip file" +msgstr "ZIP-Datei des Themes" + +#: wp-admin/includes/template.php:1921 +msgid "Attach to existing content" +msgstr "An bestehenden Inhalt anhängen" + +#: wp-admin/includes/post.php:1562 +msgid "Click the image to edit or update" +msgstr "Bild zum Bearbeiten oder Ändern anklicken." + +#. translators: 1: Number of stars (used to determine singular/plural), 2: +#. Number of reviews. +#: wp-admin/includes/plugin-install.php:741 +msgid "Reviews with %1$d star: %2$s. Opens in a new tab." +msgid_plural "Reviews with %1$d stars: %2$s. Opens in a new tab." +msgstr[0] "Bewertungen mit %1$d Stern: %2$s. Wird in neuem Fenster geöffnet." +msgstr[1] "Bewertungen mit %1$d Sternen: %2$s. Wird in neuem Fenster geöffnet." + +#: wp-admin/includes/plugin-install.php:733 +msgid "Read all reviews on WordPress.org or write your own!" +msgstr "Lies alle Bewertungen auf WordPress.org oder schreib deine Eigene!" + +#: wp-admin/includes/plugin-install.php:732 +msgid "Reviews" +msgstr "Bewertungen" + +#. translators: %s: URL to "Features as Plugins" page. +#: wp-admin/includes/plugin-install.php:407 +msgid "You are using a development version of WordPress. These feature plugins are also under development. Learn more." +msgstr "Du benutzt eine Entwicklungsversion von WordPress. Diese Feature-Plugins sind ebenfalls in der Entwicklung. Erfahre mehr (engl.)." + +#: wp-admin/includes/image-edit.php:212 +msgid "Thumbnail Settings Help" +msgstr "Hilfe Vorschaubild-Einstellungen" + +#: wp-admin/includes/image-edit.php:197 +msgid "selection height" +msgstr "Höhe für die Auswahl" + +#: wp-admin/includes/image-edit.php:194 +msgid "selection width" +msgstr "Breite für die Auswahl" + +#: wp-admin/includes/image-edit.php:186 +msgid "crop ratio height" +msgstr "Höhe für den Bildausschnitt" + +#: wp-admin/includes/image-edit.php:183 +msgid "crop ratio width" +msgstr "Breite für den Bildausschnitt" + +#: wp-admin/includes/image-edit.php:167 +msgid "Image Crop Help" +msgstr "Hilfe für Bildausschnitte" + +#: wp-admin/includes/image-edit.php:129 +msgid "scale height" +msgstr "Höhe skalieren" + +#: wp-admin/includes/image-edit.php:126 +msgid "scale width" +msgstr "Breite skalieren" + +#: wp-admin/includes/image-edit.php:124 +msgid "New dimensions:" +msgstr "Neue Abmessungen:" + +#: wp-admin/includes/image-edit.php:106 +msgid "Scale Image Help" +msgstr "Hilfe für Bild-Skalierung" + +#: wp-admin/includes/file.php:37 +msgid "Single Page" +msgstr "Einzelseite" + +#: wp-admin/includes/file.php:35 +msgid "Singular Template" +msgstr "Singular-Template" + +#: wp-admin/includes/file.php:33 +msgid "Date Template" +msgstr "Datums-Template" + +#: wp-admin/includes/file.php:28 +msgid "Taxonomy Template" +msgstr "Taxonomie-Template" + +#: wp-admin/includes/dashboard.php:1633 +msgid "Dismiss the browser warning panel" +msgstr "Den Bereich für Browser-Warnungen ausblenden" + +#: wp-admin/includes/dashboard.php:1050 +msgid "View more comments" +msgstr "Zeige mehr Kommentare" + +#. translators: 1: Type of comment, 2: Post link, 3: Notification if the +#. comment is pending. +#: wp-admin/includes/dashboard.php:842 +msgctxt "dashboard" +msgid "%1$s on %2$s %3$s" +msgstr "%1$s zu %2$s %3$s" + +#: wp-admin/includes/dashboard.php:741 +msgid "View this comment" +msgstr "Diesen Kommentar anzeigen" + +#: wp-admin/includes/class-core-upgrader.php:30 +msgid "Another update is currently in progress." +msgstr "Momentan wird eine andere Aktualisierung durchgeführt." + +#: wp-admin/includes/class-plugin-upgrader-skin.php:85 +#: wp-admin/update-core.php:975 wp-admin/update-core.php:1014 +msgid "Update progress" +msgstr "Aktualisierungsvorgang" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:501 +msgid "View “%s” archive" +msgstr "Archiv „%s“ ansehen" + +#. translators: %s: Taxonomy term name. +#: wp-admin/includes/class-wp-terms-list-table.php:492 +msgid "Delete “%s”" +msgstr "Lösche „%s“" + +#. translators: %s: Taxonomy term name. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-terms-list-table.php:483 +#: wp-admin/includes/class-wp-posts-list-table.php:1355 +msgid "Quick edit “%s” inline" +msgstr "Schnellanpassung für „%s“ (inline)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:415 +msgid "Search for plugins in the WordPress Plugin Directory." +msgstr "Suche nach Plugins im WordPress-Plugin-Verzeichnis." + +#. translators: %s: Plugin search term. +#: wp-admin/includes/class-wp-plugins-list-table.php:411 +msgid "No plugins found for “%s”." +msgstr "Kein Plugin für „%s“ gefunden." + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:751 +#: wp-admin/includes/class-wp-posts-list-table.php:1367 +msgid "Restore “%s” from the Trash" +msgstr "„%s“ aus dem Papierkorb wiederherstellen" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:713 +#: wp-admin/includes/class-wp-media-list-table.php:770 +#: wp-admin/includes/class-wp-posts-list-table.php:1384 +msgid "Delete “%s” permanently" +msgstr "„%s“ endgültig löschen" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:703 +#: wp-admin/includes/class-wp-media-list-table.php:759 +#: wp-admin/includes/class-wp-posts-list-table.php:1375 +msgid "Move “%s” to the Trash" +msgstr "„%s“ in den Papierkorb verschieben" + +#. translators: %s: Attachment title. +#: wp-admin/includes/class-wp-media-list-table.php:554 +#: wp-admin/includes/class-wp-media-list-table.php:731 +msgid "Attach “%s” to existing content" +msgstr "„%s“ mit bestehendem Inhalt verknüpfen" + +#. translators: %s: Title of the post the attachment is attached to. +#: wp-admin/includes/class-wp-media-list-table.php:540 +msgid "Detach from “%s”" +msgstr "Verknüpfung mit „%s“ aufheben" + +#. translators: %s: Taxonomy term name. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-terms-list-table.php:414 +#: wp-admin/includes/class-wp-media-list-table.php:414 +#: wp-admin/includes/class-wp-posts-list-table.php:1032 +msgid "“%s” (Edit)" +msgstr "„%s“ (Bearbeiten)" + +#: wp-admin/includes/class-wp-media-list-table.php:160 +msgctxt "attachment filter" +msgid "Trash" +msgstr "Papierkorb" + +#: wp-admin/includes/class-wp-comments-list-table.php:780 +msgid "Quick edit this comment inline" +msgstr "Schnellanpassung dieses Kommentars inline vornehmen" + +#: wp-admin/includes/class-wp-comments-list-table.php:768 +#: wp-admin/includes/dashboard.php:699 +msgid "Edit this comment" +msgstr "Diesen Kommentar bearbeiten" + +#: wp-admin/includes/class-wp-comments-list-table.php:731 +msgid "Restore this comment from the spam" +msgstr "Diesen Kommentar aus dem Spamfilter wiederherstellen" + +#. translators: 1: User login, 2: User email address. +#: wp-admin/includes/ajax-actions.php:325 +msgctxt "user autocomplete result" +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: %s: Importer slug. +#: wp-admin/import.php:67 +msgid "The %s importer is invalid or is not installed." +msgstr "Der %s-Importer ist ungültig oder nicht installiert." + +#: wp-admin/edit-form-comment.php:117 +msgctxt "comment status" +msgid "Pending" +msgstr "Ausstehend" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:596 +msgid "Suggested height is %s." +msgstr "Vorgeschlagene Höhe ist %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:585 +msgid "Suggested width is %s." +msgstr "Vorgeschlagene Breite ist %s." + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:572 +msgid "Images should be at least %s tall." +msgstr "Bilder sollten mindestens %s hoch sein." + +#. translators: %d: Custom header width. +#. translators: %d: Custom header height. +#: wp-admin/includes/class-custom-image-header.php:563 +#: wp-admin/includes/class-custom-image-header.php:575 +#: wp-admin/includes/class-custom-image-header.php:588 +#: wp-admin/includes/class-custom-image-header.php:599 +msgid "%d pixels" +msgstr "%d Pixel" + +#. translators: %s: Size in pixels. +#: wp-admin/includes/class-custom-image-header.php:560 +msgid "Images should be at least %s wide." +msgstr "Bilder sollten mindestens %s breit sein." + +#: wp-admin/user-new.php:574 +msgid "Send the new user an email about their account." +msgstr "Der Benutzer soll eine E-Mail zu seinem Konto erhalten." + +#: wp-admin/user-new.php:571 +msgid "Send User Notification" +msgstr "Benutzer benachrichtigen" + +#. translators: %s: Menu name. +#: wp-admin/nav-menus.php:1055 +msgctxt "menu location" +msgid "(Currently set to: %s)" +msgstr "(Aktueller Wert: %s)" + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:329 +msgid "Version %s addressed one security issue." +msgstr "Version %s behob ein Sicherheitsproblem." + +#: wp-admin/user-edit.php:587 +msgid "https://en.gravatar.com/" +msgstr "https://de.gravatar.com/" + +#: wp-admin/user-edit.php:578 +msgid "Profile Picture" +msgstr "Profilbild" + +#: wp-admin/about.php:66 wp-admin/about.php:326 +msgid "Maintenance and Security Releases" +msgstr "Wartungs- und Sicherheits-Updates" + +#: wp-admin/about.php:323 +msgid "Security Releases" +msgstr "Sicherheits-Updates" + +#: wp-admin/about.php:320 +msgid "Maintenance Releases" +msgstr "Wartungs-Updates" + +#: wp-admin/options-permalink.php:222 +msgid "Plain" +msgstr "Einfach" + +#. translators: %s: Documentation URL. +#: wp-admin/options-permalink.php:198 +msgid "WordPress offers you the ability to create a custom URL structure for your permalinks and archives. Custom URL structures can improve the aesthetics, usability, and forward-compatibility of your links. A number of tags are available, and here are some examples to get you started." +msgstr "WordPress bietet die Möglichkeit, individuelle URL-Strukturen für deine Permalinks und Archive zu erstellen. Individuelle URL-Strukturen verbessern Aussehen, Benutzerfreundlichkeit und Vorwärtskompatibilität der Links. Eine Reihe an Platzhaltern ist verfügbar, hier sind einige Beispiele, um dir den Einstieg zu erleichtern." + +#: wp-admin/options-permalink.php:33 +msgid "Permalinks can contain useful information, such as the post date, title, or other elements. You can choose from any of the suggested permalink formats, or you can craft your own if you select Custom Structure." +msgstr "Permalinks können hilfreiche Informationen wie z. B. das Beitragsdatum, den Beitragstitel oder weitere Eigenschaften enthalten. Du kannst eins der vorgegebenen Permalink-Formate nutzen oder erstelle eine Permalink-Struktur nach deinen Wünschen." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:407 +msgid "You can create the %s file manually and paste the following text into it." +msgstr "Du kannst die Datei %s manuell erstellen und den nachfolgenden Text dort einfügen." + +#. translators: %s: localhost +#: wp-admin/setup-config.php:237 +msgid "You should be able to get this info from your web host, if %s doesn’t work." +msgstr "Sollte %s nicht funktionieren, erfrage bitte den korrekten Wert beim Support deines Webhostings." + +#. translators: %s: Documentation URL. +#: wp-admin/setup-config.php:193 +msgid "Need more help? We got it." +msgstr "Du benötigst mehr Hilfe? Dann bitte hier entlang." + +#. translators: 1: wp-config-sample.php, 2: wp-config.php +#: wp-admin/setup-config.php:184 +msgid "If for any reason this automatic file creation doesn’t work, don’t worry. All this does is fill in the database information to a configuration file. You may also simply open %1$s in a text editor, fill in your information, and save it as %2$s." +msgstr "Sollte die automatische Erstellung dieser Datei aus irgendeinem Grund nicht funktionieren, keine Sorge. Es werden lediglich Datenbank-Informationen in einer Konfigurationsdatei gespeichert. Alternativ öffnest du die Datei %1$s einfach in einem Texteditor, ergänzt die notwendigen Informationen und speicherst die Datei als %2$s." + +#. translators: %s: wp-config.php +#: wp-admin/setup-config.php:176 +msgid "We’re going to use this information to create a %s file." +msgstr "Diese Informationen werden für die Erstellung der Datei %s genutzt." + +#. translators: %s: wp-content/uploads +#: wp-admin/options-media.php:123 +msgid "Default is %s" +msgstr "Vorgabe ist %s" + +#. translators: 1: .po, 2: .mo +#: wp-admin/includes/class-language-pack-upgrader.php:351 +msgid "The language pack is missing either the %1$s or %2$s files." +msgstr "Dem Sprachpaket fehlt entweder die Datei %1$s oder %2$s." + +#. translators: %s: index.php +#: wp-admin/includes/class-theme-upgrader.php:586 +msgid "The theme is missing the %s file." +msgstr "Dem Theme fehlt die Datei %s." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:573 +msgid "The %s stylesheet doesn’t contain a valid theme header." +msgstr "Das Stylesheet %s enthält keinen gültigen Theme-Header." + +#. translators: %s: style.css +#: wp-admin/includes/class-theme-upgrader.php:548 +msgid "The theme is missing the %s stylesheet." +msgstr "Dem Theme fehlt das Stylesheet %s." + +#: wp-admin/theme-install.php:196 +msgid "If you have marked themes as favorites on WordPress.org, you can browse them here." +msgstr "Wenn du Themes auf WordPress.org als Favoriten markiert hast, kannst du sie hier durchstöbern." + +#: wp-admin/theme-install.php:179 +msgctxt "themes" +msgid "Favorites" +msgstr "Favoriten" + +#: wp-admin/maint/repair.php:71 +msgid "Database repair results" +msgstr "Ergebnisse der Datenbank-Reparatur" + +#: wp-admin/maint/repair.php:30 +msgid "Allow automatic database repair" +msgstr "Erlaube eine automatische Reparatur der Datenbank" + +#: wp-admin/setup-config.php:448 +msgid "Successful database connection" +msgstr "Erfolgreiche Datenbank-Verbindung" + +#: wp-admin/setup-config.php:212 +msgid "Set up your database connection" +msgstr "Richte deine Datenbank-Verbindung ein" + +#: wp-admin/setup-config.php:163 +msgid "Before getting started" +msgstr "Bevor du loslegst" + +#: wp-admin/maint/repair.php:159 +msgid "WordPress database repair" +msgstr "Reparatur der WordPress-Datenbank" + +#: wp-admin/maint/repair.php:64 +msgid "Check secret keys" +msgstr "Prüfe geheime Schlüssel" + +#. translators: %s: Nav menu title. +#: wp-admin/includes/nav-menu.php:1244 +msgid "%s has been updated." +msgstr "%s wurde aktualisiert." + +#. translators: %s: Walker class name. +#: wp-admin/includes/nav-menu.php:1060 +msgid "The Walker class named %s does not exist." +msgstr "Es gibt keine Walker-Klasse mit der Bezeichnung %s." + +#. translators: 1: Drop-in constant name, 2: wp-config.php +#: wp-admin/includes/class-wp-plugins-list-table.php:762 +msgid "Requires %1$s in %2$s file." +msgstr "Benötigt %1$s in Datei %2$s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:289 +msgid "Standard time begins on: %s." +msgstr "Normalzeit beginnt am: %s." + +#. translators: %s: Date and time. +#: wp-admin/options-general.php:287 +msgid "Daylight saving time begins on: %s." +msgstr "Sommerzeit beginnt am: %s." + +#. translators: %s: File name. +#: wp-admin/includes/media.php:1705 +msgid "You are about to delete %s." +msgstr "Du bist dabei, %s zu löschen." + +#. translators: %s: mu-plugins directory name. +#: wp-admin/includes/class-wp-plugins-list-table.php:663 +msgid "Files in the %s directory are executed automatically." +msgstr "Dateien im Verzeichnis %s werden automatisch ausgeführt." + +#: wp-admin/widgets.php:492 +msgid "This will clear all items from the inactive widgets list. You will not be able to restore any customizations." +msgstr "Damit werden alle Elemente von deiner Liste inaktiver Widgets gelöscht. Du wirst keine Anpassungen wiederherstellen können." + +#: wp-admin/widgets.php:482 +msgid "Clear Inactive Widgets" +msgstr "Inaktive Widgets löschen" + +#: wp-admin/users.php:146 wp-admin/network/site-users.php:164 +msgid "One of the selected users is not a member of this site." +msgstr "Einer der ausgewählten Benutzer ist kein Mitglied dieser Website." + +#: wp-admin/users.php:83 wp-admin/network/users.php:238 +msgid "Users list" +msgstr "Benutzerliste" + +#: wp-admin/users.php:82 wp-admin/network/users.php:237 +msgid "Users list navigation" +msgstr "Navigation der Benutzerliste" + +#: wp-admin/users.php:81 wp-admin/network/users.php:236 +msgid "Filter users list" +msgstr "Benutzerliste filtern" + +#: wp-admin/upload.php:260 +msgid "Media items list" +msgstr "Medienelementliste" + +#: wp-admin/upload.php:259 +msgid "Media items list navigation" +msgstr "Navigation der Medienelementeliste" + +#: wp-admin/upload.php:258 +msgid "Filter media items list" +msgstr "Medienelementliste filtern" + +#: wp-admin/themes.php:651 +msgid "Install Parent Theme" +msgstr "Eltern-Theme installieren" + +#: wp-admin/theme-install.php:241 wp-admin/network/themes.php:332 +msgid "Themes list" +msgstr "Themesliste" + +#: wp-admin/theme-install.php:168 wp-admin/network/themes.php:330 +msgid "Filter themes list" +msgstr "Themesliste filtern" + +#: wp-admin/plugins.php:702 +msgid "All selected plugins are up to date." +msgstr "Alle ausgewählten Plugins sind aktuell." + +#: wp-admin/plugins.php:596 wp-admin/plugin-install.php:117 +msgid "Plugins list" +msgstr "Pluginliste" + +#: wp-admin/plugins.php:595 wp-admin/plugin-install.php:116 +msgid "Plugins list navigation" +msgstr "Navigation der Pluginliste" + +#: wp-admin/plugins.php:594 wp-admin/plugin-install.php:115 +msgid "Filter plugins list" +msgstr "Plugin-Liste filtern" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:211 +msgid "Browsing %s (inactive)" +msgstr "Durchstöbere %s (inaktiv)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:208 +msgid "Editing %s (inactive)" +msgstr "Bearbeite %s (inaktiv)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:203 +msgid "Browsing %s (active)" +msgstr "Durchstöbere %s (aktiv)" + +#. translators: %s: Plugin file name. +#: wp-admin/plugin-editor.php:200 +msgid "Editing %s (active)" +msgstr "Bearbeite %s (aktiv)" + +#. translators: %s: Local time. +#: wp-admin/options-general.php:256 +msgid "Local time is %s." +msgstr "Die Ortszeit ist %s." + +#: wp-admin/my-sites.php:72 wp-admin/network/menu.php:53 +#: wp-admin/network/sites.php:369 +msgctxt "site" +msgid "Add New" +msgstr "Neu hinzufügen" + +#: wp-admin/link-manager.php:84 +msgid "Links list" +msgstr "Linkliste" + +#. translators: %s: WordPress version. +#: wp-admin/includes/update.php:265 +msgid "Get Version %s" +msgstr "Version %s herunterladen" + +#. translators: %s: Meta box title. +#: wp-admin/includes/template.php:1361 +msgid "Toggle panel: %s" +msgstr "Bedienfeld umschalten: %s" + +#: wp-admin/includes/post.php:1787 +msgid "Saving revision…" +msgstr "Speichere Revision …" + +#: wp-admin/includes/post.php:1486 +msgid "Edit permalink" +msgstr "Permalink bearbeiten" + +#. translators: 1: Site Wide Only: true, 2: Network: true +#: wp-admin/includes/plugin.php:91 +msgid "The %1$s plugin header is deprecated. Use %2$s instead." +msgstr "Der Plugin-Header %1$s ist veraltet. Verwende stattdessen %2$s." + +#: wp-admin/includes/class-wp-site-health.php:1007 +#: wp-admin/includes/class-wp-site-health.php:1717 +msgid "Warning" +msgstr "Warnung" + +#: wp-admin/includes/template.php:1322 wp-admin/options.php:351 +#: wp-admin/includes/network.php:128 wp-admin/includes/network.php:203 +#: wp-admin/includes/network.php:263 wp-admin/includes/network.php:312 +#: wp-admin/includes/network.php:325 wp-admin/includes/network.php:427 +#: wp-admin/includes/network.php:615 wp-admin/includes/network.php:667 +msgid "Warning:" +msgstr "Warnung:" + +#: wp-admin/includes/ms.php:983 +msgid "Once you hit “Confirm Deletion”, these users will be permanently removed." +msgstr "Sobald du „Löschen bestätigen“ klickst, werden diese Benutzer endgültig entfernt." + +#: wp-admin/includes/ms.php:981 +msgid "Once you hit “Confirm Deletion”, the user will be permanently removed." +msgstr "Sobald du „Löschen bestätigen“ klickst, wird der Benutzer endgültig entfernt." + +#: wp-admin/includes/ms.php:966 +msgid "User has no sites or content and will be deleted." +msgstr "Der Benutzer hat keine Website oder Inhalte und wird gelöscht." + +#. translators: %s: Link to user's site. +#: wp-admin/includes/ms.php:951 +msgid "Site: %s" +msgstr "Website: %s" + +#: wp-admin/includes/ms.php:930 +msgid "Select a user" +msgstr "Wähle einen Benutzer" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:914 +msgid "What should be done with content owned by %s?" +msgstr "Was soll mit dem Inhalt passieren, der %s gehört?" + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:895 +msgid "Warning! User cannot be deleted. The user %s is a network administrator." +msgstr "Warnung! Benutzer kann nicht gelöscht werden. Der Benutzer %s ist ein Netzwerk-Administrator." + +#. translators: %s: User login. +#: wp-admin/includes/ms.php:885 +msgid "Warning! User %s cannot be deleted." +msgstr "Warnung! Benutzer %s kann nicht gelöscht werden." + +#: wp-admin/includes/ms.php:864 +msgid "You have chosen to delete the following users from all networks and sites." +msgstr "Du hast ausgewählt, die folgenden Benutzer aus allen Netzwerken und Websites zu löschen." + +#: wp-admin/includes/ms.php:862 +msgid "You have chosen to delete the user from all networks and sites." +msgstr "Du hast ausgewählt, den Benutzer aus allen Netzwerken und Websites zu löschen." + +#: wp-admin/includes/media.php:984 +msgid "Invalid image URL." +msgstr "Ungültige Bild-URL" + +#: wp-admin/includes/file.php:17 +msgid "Theme Header" +msgstr "Theme-Header" + +#: wp-admin/includes/file.php:18 +msgid "Theme Footer" +msgstr "Theme-Footer" + +#. translators: Date and time format for recent posts on the dashboard, from a +#. different calendar year, see https://www.php.net/date +#: wp-admin/includes/dashboard.php:969 +msgid "M jS Y" +msgstr "d.m.Y" + +#. translators: 1: Comment author, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:813 +msgid "From %1$s %2$s" +msgstr "Von %1$s %2$s" + +#: wp-admin/includes/dashboard.php:603 +msgid "View all drafts" +msgstr "Alle Entwürfe anzeigen" + +#: wp-admin/includes/class-wp-users-list-table.php:627 +msgctxt "no user roles" +msgid "None" +msgstr "Keine" + +#: wp-admin/includes/class-wp-users-list-table.php:243 +msgid "No role" +msgstr "Keine Rolle" + +#. translators: 1: Title of an update, 2: Error message. +#: wp-admin/includes/class-bulk-upgrader-skin.php:43 +msgid "An error occurred while updating %1$s: %2$s" +msgstr "Beim Aktualisieren von %1$s ist ein Fehler aufgetreten: %2$s" + +#: wp-admin/includes/class-wp-screen.php:1324 +msgid "View mode" +msgstr "Ansichtsmodus" + +#: wp-admin/includes/class-wp-screen.php:1271 +msgid "Pagination" +msgstr "Seitennummerierung" + +#. translators: %s: Number of columns on the page. +#: wp-admin/includes/class-wp-screen.php:1209 +msgid "%s column" +msgid_plural "%s columns" +msgstr[0] "%s Spalte" +msgstr[1] "%s Spalten" + +#: wp-admin/includes/class-wp-screen.php:1116 +msgid "Boxes" +msgstr "Boxen" + +#: wp-admin/includes/class-wp-screen.php:1002 +msgid "Additional settings" +msgstr "Zusätzliche Einstellungen" + +#: wp-admin/includes/class-wp-screen.php:762 +msgid "Items list" +msgstr "Elementliste" + +#: wp-admin/includes/class-wp-screen.php:761 +msgid "Items list navigation" +msgstr "Navigation der Elementliste" + +#: wp-admin/includes/class-wp-screen.php:760 +msgid "Filter items list" +msgstr "Liste mit Filtern" + +#: wp-admin/includes/class-wp-plugins-list-table.php:821 +msgid "Network Only" +msgstr "Nur für das gesamte Netzwerk aktivierbar" + +#: wp-admin/includes/class-wp-plugins-list-table.php:817 +msgid "Network Active" +msgstr "Netzwerkweit aktiviert" + +#: wp-admin/includes/class-wp-list-table.php:758 +msgid "No pending comments" +msgstr "Keine ausstehenden Kommentare" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:174 +msgid "Failed to initialize a SFTP subsystem session with the SSH2 Server %s" +msgstr "Die Initialisierung einer SFTP-Subsystem-Sitzung mit dem SSH2-Server %s ist fehlgeschlagen." + +#: wp-admin/includes/class-wp-comments-list-table.php:462 +msgctxt "column name" +msgid "Submitted on" +msgstr "Eingereicht am" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:275 +msgctxt "comments" +msgid "Trash (%s)" +msgid_plural "Trash (%s)" +msgstr[0] "Papierkorb (%s)" +msgstr[1] "Papierkorb (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:268 +msgctxt "comments" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Spam (%s)" +msgstr[1] "Spam (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:261 +msgctxt "comments" +msgid "Approved (%s)" +msgid_plural "Approved (%s)" +msgstr[0] "Freigegeben (%s)" +msgstr[1] "Freigegebene (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:254 +msgctxt "comments" +msgid "Pending (%s)" +msgid_plural "Pending (%s)" +msgstr[0] "Ausstehend (%s)" +msgstr[1] "Ausstehend (%s)" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:240 +msgctxt "comments" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%s)" + +#. translators: %s: The new user. +#: wp-admin/includes/ajax-actions.php:1702 +msgid "User %s added" +msgstr "Benutzer %s hinzugefügt" + +#: wp-admin/export.php:214 wp-admin/export.php:261 wp-admin/export.php:301 +msgid "End date:" +msgstr "Ende:" + +#: wp-admin/export.php:178 +msgid "Content to export" +msgstr "Zu exportierender Inhalt" + +#: wp-admin/edit.php:245 +msgid "You can view posts in a simple title list or with an excerpt using the Screen Options tab." +msgstr "Mit Hilfe des Tab „Ansicht anpassen“ kannst du dir Beiträge in einer einfachen Titelliste oder mit einem Textauszug ansehen." + +#. translators: %s: Comment date. +#: wp-admin/edit-form-comment.php:136 +msgid "Submitted on: %s" +msgstr "Abgeschickt am: %s" + +#: wp-admin/edit-form-comment.php:32 +msgctxt "comment" +msgid "Permalink:" +msgstr "Permalink:" + +#: wp-admin/edit-form-advanced.php:206 +msgid "Page draft updated." +msgstr "Seitenentwurf aktualisiert." + +#. translators: %s: Scheduled date for the page. +#: wp-admin/edit-form-advanced.php:205 +msgid "Page scheduled for: %s." +msgstr "Seite geplant für: %s" + +#: wp-admin/edit-form-advanced.php:203 +msgid "Page submitted." +msgstr "Seite abgeschickt." + +#: wp-admin/edit-form-advanced.php:191 +msgid "Post draft updated." +msgstr "Beitragsentwurf aktualisiert." + +#. translators: %s: Scheduled date for the post. +#: wp-admin/edit-form-advanced.php:190 +msgid "Post scheduled for: %s." +msgstr "Beitrag geplant für: %s." + +#: wp-admin/edit-form-advanced.php:188 +msgid "Post submitted." +msgstr "Beitrag abgeschickt." + +#: wp-admin/edit-form-advanced.php:164 +msgid "View page" +msgstr "Seite anzeigen" + +#: wp-admin/edit-form-advanced.php:150 wp-admin/edit-form-advanced.php:157 +msgid "Preview page" +msgstr "Vorschau der Seite" + +#: wp-admin/edit-form-advanced.php:129 wp-admin/edit-form-advanced.php:136 +msgid "Preview post" +msgstr "Beitrags-Vorschau" + +#: wp-admin/edit-comments.php:204 +msgid "Comments list" +msgstr "Kommentarliste" + +#: wp-admin/edit-comments.php:203 +msgid "Comments list navigation" +msgstr "Navigation der Kommentarliste" + +#: wp-admin/edit-comments.php:202 +msgid "Filter comments list" +msgstr "Kommentarliste filtern" + +#: wp-admin/edit-comments.php:187 +msgid "In the Submitted on column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site." +msgstr "In der Spalte Eingereicht am erscheinen das Datum und die Uhrzeit, zu der der Kommentar gesendet wurde. Mit einem Klick auf das Datum/die Uhrzeit gelangst du zum Kommentar auf der Website." + +#: wp-admin/edit-comments.php:185 +msgid "In the Comment column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment." +msgstr "In der Spalte Kommentar hast du bei Mauszeigerkontakt eines Kommentars die Möglichkeit, den Kommentar freizugeben, darauf zu antworten (und ihn freizugeben), Anpassungen (durch QuickEdit) vorzunehmen, ihn zu bearbeiten, als Spam zu markieren oder in den Papierkorb zu legen." + +#. translators: %s: Comments count. +#: wp-admin/edit-comments.php:160 wp-admin/js/edit-comments.js:196 +#: wp-admin/js/edit-comments.js:216 +msgid "Comments (%s)" +msgstr "Kommentare (%s)" + +#. translators: 1: Comments count, 2: Post title. +#: wp-admin/edit-comments.php:144 +msgid "Comments (%1$s) on “%2$s”" +msgstr "Kommentare (%1$s) zu „%2$s“" + +#: wp-admin/includes/ajax-actions.php:5337 +msgid "Sorry, you are not allowed to modify themes." +msgstr "Du bist leider nicht berechtigt, Themes zu ändern." + +#: wp-admin/includes/class-custom-image-header.php:948 +msgid "The current theme does not support a flexible sized header image." +msgstr "Das aktuelle Theme unterstützt kein Header-Bild in flexibler Größe." + +#: wp-admin/includes/class-custom-image-header.php:776 +#: wp-admin/includes/class-custom-image-header.php:940 +msgid "The current theme does not support uploading a custom header image." +msgstr "Das aktuell verwendete Theme unterstützt nicht das Hochladen eines individuellen Header-Bildes." + +#: wp-admin/includes/user.php:525 +msgid "You’re using the auto-generated password for your account. Would you like to change it?" +msgstr "Du verwendest das automatisch generierte Passwort für dein Benutzerkonto. Möchtest du ein eigenes Passwort vergeben?" + +#: wp-admin/users.php:419 +msgid "You have specified this user for removal:" +msgstr "Du hast diesen Benutzer zum Löschen festgelegt:" + +#. translators: %s: User's display name. +#: wp-admin/user-edit.php:696 +msgid "Log %s out of all locations." +msgstr "%s an allen Plätzen abmelden." + +#: wp-admin/user-edit.php:684 +msgid "Did you lose your phone or leave your account logged in at a public computer? You can log out everywhere else, and stay logged in here." +msgstr "Bist du noch an einem öffentlich zugänglichen Computer angemeldet? Hast du dein Smartphone verloren? Hiermit meldest du dich überall ab, bleibst aber hier eingeloggt." + +#: wp-admin/user-edit.php:672 wp-admin/user-edit.php:682 +msgid "Log Out Everywhere Else" +msgstr "Überall sonst abmelden" + +#: wp-admin/user-edit.php:670 wp-admin/user-edit.php:680 +#: wp-admin/user-edit.php:690 +msgid "Sessions" +msgstr "Sessions" + +#: wp-admin/user-new.php:547 wp-admin/user-edit.php:640 +msgid "Cancel password change" +msgstr "Passwortänderung abbrechen" + +#: wp-admin/user-edit.php:631 +msgid "Generate Password" +msgstr "Passwort generieren" + +#: wp-admin/user-edit.php:625 +msgid "Account Management" +msgstr "Benutzerkonten-Verwaltung" + +#. translators: The non-breaking space prevents 1Password from thinking the +#. text "log in" should trigger a password save prompt. +#: wp-admin/install.php:153 +msgid "You will need this password to log in. Please store it in a secure location." +msgstr "Du wirst dieses Passwort zum Anmelden brauchen. Bitte bewahre es an einem sicheren Ort auf." + +#: wp-admin/includes/class-wp-list-table.php:735 +msgid "No approved comments" +msgstr "Keine freigegebenen Kommentare" + +#: wp-admin/includes/class-wp-list-table.php:705 +#: wp-admin/includes/class-wp-list-table.php:735 +#: wp-admin/includes/class-wp-list-table.php:758 +msgid "No comments" +msgstr "Keine Kommentare" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:697 +msgid "%s pending comment" +msgid_plural "%s pending comments" +msgstr[0] "%s ausstehender Kommentar" +msgstr[1] "%s ausstehende Kommentare" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:691 +msgid "%s approved comment" +msgid_plural "%s approved comments" +msgstr[0] "%s freigegebener Kommentar" +msgstr[1] "%s freigegebene Kommentare" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-list-table.php:685 +msgid "%s comment" +msgid_plural "%s comments" +msgstr[0] "%s Kommentar" +msgstr[1] "%s Kommentare" + +#: wp-admin/includes/ajax-actions.php:3877 +msgid "Image could not be processed." +msgstr "Bild konnte nicht verarbeitet werden." + +#: wp-admin/install.php:167 wp-admin/user-new.php:562 +#: wp-admin/user-edit.php:656 +msgid "Confirm Password" +msgstr "Passwort bestätigen" + +#. translators: 1: wp-config.php, 2: Secret key service URL. +#: wp-admin/maint/repair.php:67 +msgid "While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the WordPress.org secret key service." +msgstr "Während du deine %1$s Datei bearbeitest, nimm dir einen Moment Zeit und stelle sicher, dass du alle acht Schlüssel hast und diese eindeutig sind. Du kannst sie generieren, indem du den WordPress.org Secret Key Service nutzt." + +#: wp-admin/includes/update.php:900 +#: wp-admin/includes/class-wp-comments-list-table.php:839 +#: wp-admin/includes/class-wp-list-table.php:543 +#: wp-admin/includes/class-wp-list-table.php:1429 +msgid "Show more details" +msgstr "Mehr Details anzeigen" + +#. translators: %s: Number of menus. +#: wp-admin/nav-menus.php:725 +msgid "Your theme supports %s menu. Select which menu appears in each location." +msgid_plural "Your theme supports %s menus. Select which menu appears in each location." +msgstr[0] "Dein Theme unterstützt %s Menü. Wähle aus, welches Menü an welcher Position genutzt werden soll." +msgstr[1] "Dein Theme unterstützt %s Menüs. Wähle aus, welches Menü an welcher Position genutzt werden soll." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-users-list-table.php:564 +msgid "%s post by this author" +msgid_plural "%s posts by this author" +msgstr[0] "%s Beitrag von diesem Autor" +msgstr[1] "%s Beiträge von diesem Autor" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-installer-skin.php:133 +#: wp-admin/includes/class-theme-upgrader-skin.php:105 +msgid "Live Preview “%s”" +msgstr "Live-Vorschau „%s“" + +#: wp-admin/includes/class-wp-list-table.php:941 +msgid "Last page" +msgstr "Letzte Seite" + +#: wp-admin/includes/class-wp-list-table.php:889 +msgid "First page" +msgstr "Erste Seite" + +#. translators: %s: Post link. +#: wp-admin/edit-form-comment.php:160 +msgid "In response to: %s" +msgstr "Als Antwort auf: %s" + +#: wp-admin/includes/meta-boxes.php:275 wp-admin/edit-form-comment.php:141 +msgid "Date and time" +msgstr "Datum und Uhrzeit" + +#: wp-admin/edit-form-comment.php:115 +msgid "Comment status" +msgstr "Kommentar-Status" + +#: wp-admin/edit-form-advanced.php:360 +msgid "You can also embed media from many popular websites including Twitter, YouTube, Flickr and others by pasting the media URL on its own line into the content of your post/page. Learn more about embeds." +msgstr "Du kannst auch Medien von populären Websites wie z. B. Twitter, YouTube, Flickr und anderen Portalen einbinden, indem du die URL der Medien in einer einzelnen Zeile innerhalb des Textinhaltes einfügst. Bitte schau auch in den Codex, um zu lernen, wie externe Medien eingebettet werden (engl.)." + +#: wp-admin/includes/class-custom-background.php:99 +msgid "Documentation on Custom Background" +msgstr "Dokumentation zu individueller Hintergrund (engl.)" + +#: wp-admin/edit-tags.php:309 +msgid "Documentation on Link Categories" +msgstr "Dokumentation zu Link-Kategorien (engl.)" + +#: wp-admin/edit-link-form.php:76 +msgid "Documentation on Creating Links" +msgstr "Dokumentation zu Links erstellen (engl.)" + +#: wp-admin/link-manager.php:78 +msgid "Documentation on Managing Links" +msgstr "Dokumentation zu Links (engl.)" + +#: wp-admin/includes/class-custom-image-header.php:134 +msgid "Documentation on Custom Header" +msgstr "Dokumentation zu Header (engl.)" + +#: wp-admin/my-sites.php:51 +msgid "Documentation on My Sites" +msgstr "Dokumentation zu Meine Websites (engl.)" + +#: wp-admin/widgets.php:88 +msgid "The theme you are currently using isn’t widget-aware, meaning that it has no sidebars that you are able to change. For information on making your theme widget-aware, please follow these instructions." +msgstr "Dein aktuell genutztes Theme unterstützt keine Widgets. Das bedeutet, dass es keine Seitenleiste gibt, die du ändern könntest. Was du machen musst, damit dein Theme Widgets unterstützt, kannst du hier nachlesen (engl.)." + +#. translators: %s: Codex URL. +#: wp-admin/options-writing.php:209 +msgid "When you publish a new post, WordPress automatically notifies the following site update services. For more about this, see Update Services on the Codex. Separate multiple service URLs with line breaks." +msgstr "Wenn du einen Beitrag veröffentlichst, informiert WordPress die folgenden Dienste automatisch darüber. Um mehr darüber zu erfahren, besuche bitte die Seite Update-Services im Codex. Trenne mehrere URLs jeweils durch einen Zeilenumbruch." + +#: wp-admin/includes/options.php:133 +msgid "The character encoding of your site (UTF-8 is recommended)" +msgstr "Die Zeichenkodierung (engl.) deiner Website (UTF-8 wird empfohlen)" + +#: wp-admin/includes/file.php:2204 +msgid "example: www.wordpress.org" +msgstr "Beispiel: www.wordpress.org" + +#: wp-admin/themes.php:137 +msgid "The search for installed themes will search for terms in their name, description, author, or tag." +msgstr "Bei der Suche nach installierten Themes wird nach Begriffen in deren Namen, Beschreibung, Autor und Schlagwort gesucht." + +#: wp-admin/theme-install.php:102 +msgid "Alternately, you can browse the themes that are Featured, Popular, or Latest. When you find a theme you like, you can preview it or install it." +msgstr "Alternativ kannst du nach empfohlenen, populären oder neuesten Themes suchen. Wenn du ein Theme findest, das dir gefällt, kannst du dir eine Vorschau ansehen oder es direkt installieren." + +#: wp-admin/theme-install.php:101 +msgid "You can Search for themes by keyword, author, or tag, or can get more specific and search by criteria listed in the feature filter." +msgstr "Bei der Suche nach Themes kannst du Stichwörter, Autoren oder Schlagwörter verwenden oder mit den Kriterien, die im Eigenschaften-Filter aufgeführt werden, noch gezielter suchen." + +#. translators: %d: Number of themes. +#: wp-admin/themes.php:234 wp-admin/theme-install.php:67 +msgid "Number of Themes found: %d" +msgstr "Anzahl der gefundenen Themes: %d" + +#: wp-admin/options-general.php:371 +msgid "Custom time format:" +msgstr "Individuelles Zeitformat:" + +#: wp-admin/options-general.php:370 +msgid "enter a custom time format in the following field" +msgstr "Gib im folgenden Feld ein individuelles Zeitformat ein" + +#: wp-admin/options-general.php:334 +msgid "Custom date format:" +msgstr "Individuelles Datumsformat:" + +#: wp-admin/options-general.php:333 +msgid "enter a custom date format in the following field" +msgstr "Gib im folgenden Feld ein individuelles Datumsformat ein" + +#: wp-admin/includes/class-plugin-upgrader.php:66 +msgid "Plugins updated successfully." +msgstr "Die Plugins wurden erfolgreich aktualisiert." + +#. translators: %s: Number of millions. +#: wp-admin/includes/class-wp-plugin-install-list-table.php:743 +#: wp-admin/includes/plugin-install.php:689 +msgctxt "Active plugin installations" +msgid "%s+ Million" +msgid_plural "%s+ Million" +msgstr[0] "%s+ Million" +msgstr[1] "%s+ Millionen" + +#. translators: 1: Error message, 2: Line number. +#: wp-admin/link-parse-opml.php:89 +msgid "XML Error: %1$s at line %2$s" +msgstr "XML-Fehler: %1$s in Zeile %2$s" + +#: wp-admin/includes/class-wp-media-list-table.php:541 +msgid "Detach" +msgstr "Loslösen" + +#: wp-admin/menu-header.php:286 +msgid "Main menu" +msgstr "Hauptmenü" + +#: wp-admin/includes/file.php:2255 +msgid "Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above." +msgstr "Gib das Verzeichnis auf dem Server an, in dem der öffentliche sowie der private Schlüssel liegen. Falls eine Passphrase benötigt wird, gib diese im darüber liegenden Passwort-Feld ein." + +#. translators: %s: Number of users. +#: wp-admin/users.php:490 +msgid "%s user deleted." +msgid_plural "%s users deleted." +msgstr[0] "%s Benutzer gelöscht." +msgstr[1] "%s Benutzer gelöscht." + +#: wp-admin/users.php:313 +msgid "What should be done with content owned by these users?" +msgstr "Was soll mit den Inhalten geschehen, die den folgenden Benutzern gehören?" + +#: wp-admin/users.php:284 +msgid "You have specified these users for deletion:" +msgstr "Du hast folgende Benutzer zum Löschen markiert:" + +#: wp-admin/plugins.php:350 +msgid "You are about to remove the following plugins:" +msgstr "Du bist dabei, folgende Plugins zu entfernen:" + +#: wp-admin/plugins.php:348 +msgid "These plugins may be active on other sites in the network." +msgstr "Diese Plugins könnten auf anderen Websites innerhalb des Netzwerks aktiv sein." + +#: wp-admin/plugins.php:346 +msgid "Delete Plugins" +msgstr "Plugins löschen" + +#: wp-admin/edit.php:348 +msgid "1 page not updated, somebody is editing it." +msgstr "Eine Seite wurde nicht aktualisiert, da sie gerade von jemandem bearbeitet wird." + +#: wp-admin/edit.php:335 +msgid "1 post not updated, somebody is editing it." +msgstr "Ein Beitrag wurde nicht aktualisiert, da er gerade von jemandem bearbeitet wird." + +#: wp-admin/user-edit.php:53 +msgid "You can log out of other devices, such as your phone or a public computer, by clicking the Log Out Everywhere Else button." +msgstr "Durch Anklicken des Buttons „Überall sonst abmelden“ kannst du dich von anderen Geräten wie zum Beispiel deinem Smartphone oder einem öffentlich zugänglichen Computer abmelden." + +#: wp-admin/update-core.php:641 +msgid "New translations are available." +msgstr "Es sind neue Übersetzungen vorhanden." + +#: wp-admin/theme-install.php:455 +msgid "This theme has not been rated yet." +msgstr "Dieses Theme hat noch keine Bewertung." + +#. translators: Date and time format for exact current time, mainly about +#. timezones, see https://www.php.net/date +#: wp-admin/options-general.php:22 +msgctxt "timezone date format" +msgid "Y-m-d H:i:s" +msgstr "j.m.Y G:i:s" + +#: wp-admin/nav-menus.php:630 +msgid "To add a custom link, expand the Custom Links section, enter a URL and link text, and click Add to Menu" +msgstr "Um einen individuellen Link hinzuzufügen, erweitere den Abschnitt für individuelle Links, gib eine URL und einen Link-Text ein und klicke auf „Zum Menü hinzufügen“." + +#. translators: Do not translate USERNAME, URL_DELETE, SITENAME, SITEURL: those +#. are placeholders. +#: wp-admin/ms-delete-site.php:56 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently clicked the 'Delete Site' link on your site and filled in a\n" +"form on that page.\n" +"\n" +"If you really want to delete your site, click the link below. You will not\n" +"be asked to confirm again so only click this link if you are absolutely certain:\n" +"###URL_DELETE###\n" +"\n" +"If you delete your site, please consider opening a new site here\n" +"some time in the future! (But remember your current site and username\n" +"are gone forever.)\n" +"\n" +"Thanks for using the site,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo ###USERNAME###,\n" +"\n" +"du hast gerade den Link „Website löschen“ für deine Website angeklickt und ein Formular auf dieser Seite ausgefüllt.\n" +"\n" +"Wenn du deine Website wirklich löschen möchtest, klicke bitte den nachfolgenden Link an. Du wirst nicht nochmal nach einer Bestätigung gefragt. Deshalb klicke den Link bitte nur, wenn du dir absolut sicher bist: ###URL_DELETE###\n" +"\n" +"Wenn du deine Website löschst, ziehe bitte in Betracht, hier irgendwann in der Zukunft eine neue Website zu eröffnen! (Denke aber daran, dass deine aktuelle Website und dein Benutzername endgültig gelöscht sind.)\n" +"\n" +"Danke, dass du diese Website nutzt,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-admin/includes/theme.php:791 wp-admin/themes.php:911 +msgid "Close details dialog" +msgstr "Dialogfenster mit Detailansicht schließen" + +#: wp-admin/includes/template.php:2631 +msgid "You are currently editing the page that shows your latest posts." +msgstr "Du bearbeitest gerade die Seite, die deine letzten Beiträge anzeigt." + +#: wp-admin/includes/file.php:31 +msgid "Posts Page" +msgstr "Beitragsseite" + +#: wp-admin/includes/class-wp-screen.php:1231 +msgid "Number of items per page:" +msgstr "Einträge pro Seite:" + +#: wp-admin/includes/revision.php:241 wp-admin/includes/revision.php:284 +msgctxt "revision date short format" +msgid "j M @ H:i" +msgstr "j. M @ H:i" + +#: wp-admin/includes/ms.php:302 wp-admin/network/settings.php:386 +msgid "Size in megabytes" +msgstr "Größe in Megabyte" + +#: wp-admin/includes/ms.php:299 +msgid "Site Upload Space Quota" +msgstr "Speicher-Quota für Uploads der Website" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-admin/includes/misc.php:1357 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently requested to have the administration email address on\n" +"your site changed.\n" +"\n" +"If this is correct, please click on the following link to change it:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo ###USERNAME###,\n" +"\n" +"du hast vor kurzem eine Änderung der E-Mail-Adresse des Administrators deiner Website angefordert.\n" +"\n" +"Wenn das richtig ist, klicke bitte zum Ändern auf den folgenden Link:\n" +"###ADMIN_URL###\n" +"\n" +"Wenn du keine Änderung vornehmen möchtest, kannst du diese E-Mail ignorieren und löschen. \n" +"\n" +"Diese E-Mail wurde an die Adresse ###EMAIL### versandt. \n" +"\n" +"Viele Grüße, \n" +"von allen auf ###SITENAME### \n" +"###SITEURL###" + +#: wp-admin/includes/class-wp-automatic-updater.php:1290 +msgid "" +"UPDATE LOG\n" +"==========" +msgstr "" +"AKTUALISIERUNGS-PROTOKOLL\n" +"==========================" + +#: wp-admin/includes/class-wp-automatic-updater.php:1267 +msgid "" +"BETA TESTING?\n" +"=============\n" +"\n" +"This debugging email is sent when you are using a development version of WordPress.\n" +"\n" +"If you think these failures might be due to a bug in WordPress, could you report it?\n" +" * Open a thread in the support forums: https://wordpress.org/support/forum/alphabeta\n" +" * Or, if you're comfortable writing a bug report: https://core.trac.wordpress.org/\n" +"\n" +"Thanks! -- The WordPress Team" +msgstr "" +"BETA-TESTER?\n" +"============\n" +"\n" +"Diese Mail zur Fehlerbehebung wird an dich verschickt, wenn du eine Entwicklungsversion von WordPress verwendest.\n" +"\n" +"Kannst du uns Fehler, die ggf. durch einen Bug in WordPress verursacht werden, bitte mitteilen?\n" +" * Starte einen neuen Thread im Support-Forum: https://wordpress.org/support/forum/alphabeta\n" +" * Oder, wenn es dir leicht fällt, einen Bug-Report zu schreiben: https://core.trac.wordpress.org/\n" +"\n" +"Danke! -- Das WordPress-Team" + +#: wp-admin/includes/revision.php:240 wp-admin/includes/revision.php:283 +msgid "M j, Y @ H:i" +msgstr "j. M Y \\u\\m G:i" + +#: wp-admin/comment.php:212 +msgid "Submitted on" +msgstr "Eingereicht am" + +#. translators: Column name or table row header. +#: wp-admin/includes/class-wp-comments-list-table.php:459 +#: wp-admin/comment.php:186 +msgid "In response to" +msgstr "Als Antwort auf" + +#. translators: 1: Month, 2: Day, 3: Year, 4: Hour, 5: Minute. +#: wp-admin/includes/template.php:833 wp-admin/js/comment.js:89 +#: wp-admin/js/post.js:775 +msgid "%1$s %2$s, %3$s at %4$s:%5$s" +msgstr "%2$s %1$s %3$s um %4$s:%5$s" + +#. translators: Localized Support reference. +#: wp-admin/includes/class-wp-site-health.php:1400 +msgid "https://wordpress.org/support" +msgstr "https://de.wordpress.org/support/" + +#: wp-admin/user-edit.php:674 +msgid "You are only logged in at this location." +msgstr "Du bist nur an diesem Ort angemeldet." + +#: wp-admin/includes/plugin-install.php:402 +msgid "These suggestions are based on the plugins you and other users have installed." +msgstr "Diese Empfehlungen basieren auf Plugins, welche du und andere Anwender installiert haben." + +#: wp-admin/edit-form-advanced.php:295 +msgid "You can enable distraction-free writing mode using the icon to the right. This feature is not available for old browsers or devices with small screens, and requires that the full-height editor be enabled in Screen Options." +msgstr "Du kannst den Modus für das ablenkungsfreie Schreiben über das letzte Icon in der oberen Reihe aktivieren. Diese Funktion ist nicht in älteren Browsern oder Geräten mit kleinen Bildschirmen verfügbar und setzt voraus, dass die Anzeige des Editors in voller Höhe im Tab „Ansicht anpassen“ aktiviert wurde." + +#: wp-admin/user-edit.php:692 +msgid "Log Out Everywhere" +msgstr "Überall abmelden" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:109 +msgctxt "Plugin Installer" +msgid "Recommended" +msgstr "Empfohlen" + +#. translators: New site notification email. 1: New site URL, 2: User login, 3: +#. User password or password reset link, 4: Login URL. +#: wp-admin/includes/upgrade.php:609 +msgid "" +"Your new WordPress site has been successfully set up at:\n" +"\n" +"%1$s\n" +"\n" +"You can log in to the administrator account with the following information:\n" +"\n" +"Username: %2$s\n" +"Password: %3$s\n" +"Log in here: %4$s\n" +"\n" +"We hope you enjoy your new site. Thanks!\n" +"\n" +"--The WordPress Team\n" +"https://wordpress.org/\n" +msgstr "" +"Deine neue WordPress-Website wurde erfolgreich eingerichtet. Du findest sie unter:\n" +"\n" +"%1$s\n" +"\n" +"Du kannst dich jetzt mit folgenden Zugangsdaten im Administrator-Konto anmelden:\n" +"\n" +"Benutzername: %2$s\n" +"Passwort: %3$s\n" +"Melde dich hier an: %4$s\n" +"\n" +"Wir hoffen, dir gefällt deine neue Website. Vielen Dank!\n" +"\n" +"-- Das WordPress-Team\n" +"https://de.wordpress.org/\n" + +#: wp-admin/themes.php:280 +msgid "You cannot delete a theme while it has an active child theme." +msgstr "Du kannst ein Theme nicht löschen, solange ein Child-Theme davon aktiv ist." + +#: wp-admin/options-general.php:34 wp-admin/network/settings.php:55 +msgid "You can set the language, and the translation files will be automatically downloaded and installed (available if your filesystem is writable)." +msgstr "Du kannst eine Sprache auswählen. Die Sprachdateien werden dann automatisch heruntergeladen und installiert (Schreibrechte in deinem Dateisystem vorausgesetzt)." + +#: wp-admin/options-discussion.php:275 +msgid "Mystery Person" +msgstr "Geheimnisvolle Person" + +#: wp-admin/install.php:127 +msgid "Usernames can have only alphanumeric characters, spaces, underscores, hyphens, periods, and the @ symbol." +msgstr "Benutzernamen dürfen nur alphanumerische Zeichen, Leerzeichen, Unterstriche, Bindestriche, Punkte und das @-Zeichen enthalten." + +#: wp-admin/includes/class-wp-screen.php:1004 +msgid "Enable full-height editor and distraction-free functionality." +msgstr "Anzeige des Editors in voller Höhe zulassen und ablenkungsfreies Schreiben aktivieren." + +#: wp-admin/includes/dashboard.php:1476 +msgid "https://planet.wordpress.org/feed/" +msgstr "https://de.planetwp.org/de/small-feed/feed/" + +#: wp-admin/includes/dashboard.php:1467 wp-admin/index.php:88 +msgid "https://planet.wordpress.org/" +msgstr "https://planet.wordpress.org/" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:758 +msgid "Untested with your version of WordPress" +msgstr "Ungetestet mit deiner WordPress-Version" + +#: wp-admin/includes/class-wp-links-list-table.php:117 +#: wp-admin/includes/class-wp-posts-list-table.php:461 +msgid "Filter by category" +msgstr "Nach Kategorie filtern" + +#: wp-admin/includes/meta-boxes.php:1118 +msgid "All categories" +msgstr "Alle Kategorien" + +#: wp-admin/includes/class-wp-comments-list-table.php:491 +msgid "Filter by comment type" +msgstr "Nach Kommentarart filtern" + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:3852 +msgid "%s has been logged out." +msgstr "%s wurde abgemeldet." + +#: wp-admin/includes/ajax-actions.php:3848 +msgid "You are now logged out everywhere else." +msgstr "Du bist nun von allen anderen Geräten abgemeldet." + +#: wp-admin/includes/ajax-actions.php:3839 +msgid "Could not log out user sessions. Please try again." +msgstr "Die Sitzungen konnten nicht abgemeldet werden. Bitte versuche es nochmal." + +#: wp-admin/includes/ajax-actions.php:3726 +msgid "This preview is unavailable in the editor." +msgstr "Die Vorschau ist im Editor nicht verfügbar." + +#: wp-admin/edit-form-advanced.php:294 +msgid "You can insert media files by clicking the button above the post editor and following the directions. You can align or edit images using the inline formatting toolbar available in Visual mode." +msgstr "Du kannst Mediendateien einfügen, indem du den Button oberhalb des Beitrags-Editors anklickst und den Anweisungen folgst. Du kannst Bilder mit Hilfe der Werkzeugleiste für die Inline-Formatierung, die im visuellen Modus verfügbar ist, ausrichten oder bearbeiten." + +#: wp-admin/edit-form-advanced.php:291 +msgid "Post editor — Enter the text for your post. There are two modes of editing: Visual and Text. Choose the mode by clicking on the appropriate tab." +msgstr "Beitrags-Editor – Gib den Text für deinen Beitrag ein. Dafür stehen dir zwei Arten zur Verfügung: ein visueller und ein Text-Modus. Durch Anklicken des entsprechenden Tabs kannst du den Modus auswählen." + +#. translators: %s: URL to header image configuration in Customizer. +#: wp-admin/includes/class-custom-image-header.php:483 +msgid "You can now manage and live-preview Custom Header in the Customizer." +msgstr "Du kannst jetzt Individuelle Header über den Customizer verwalten und in einer Live-Vorschau ansehen." + +#. translators: %s: URL to background image configuration in Customizer. +#: wp-admin/includes/class-custom-background.php:234 +msgid "You can now manage and live-preview Custom Backgrounds in the Customizer." +msgstr "Du kannst jetzt Individuelle Hintergründe über den Customizer verwalten und in einer Live-Vorschau ansehen." + +#: wp-admin/includes/class-wp-screen.php:1132 +msgctxt "Welcome panel" +msgid "Welcome" +msgstr "Willkommen" + +#. translators: %s: Number of users. +#. translators: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:203 +#: wp-admin/includes/class-wp-ms-users-list-table.php:148 +msgctxt "users" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%s)" + +#: wp-admin/includes/class-wp-links-list-table.php:131 +#: wp-admin/edit-link-form.php:114 +msgctxt "link name" +msgid "Name" +msgstr "Name" + +#. translators: %s: Placeholder that must come at the start of the URL. +#: wp-admin/options-permalink.php:321 +msgid "If you like, you may enter custom structures for your category and tag URLs here. For example, using topics as your category base would make your category links like %s/topics/uncategorized/. If you leave these blank the defaults will be used." +msgstr "Wenn du magst, kannst du hier individuelle Strukturen für deine Kategorien- und Schlagwörter-URLs anlegen. Zum Beispiel, wenn du thema als Kategorie-Basis verwendest, sehen die Links so aus: %s/thema/allgemein/. Falls das Feld leer bleibt, werden die Standardwerte verwendet." + +#: wp-admin/credits.php:140 +msgid "Release Lead" +msgstr "Release-Leitung" + +#: wp-admin/upload.php:68 +msgid "Use the arrow buttons at the top of the dialog, or the left and right arrow keys on your keyboard, to navigate between media items quickly." +msgstr "Benutze die Pfeil-Buttons am oberen Rand oder die Pfeiltasten auf deiner Tastatur, um schnell zwischen den Medienelementen zu navigieren." + +#: wp-admin/upload.php:69 +msgid "You can also delete individual items and access the extended edit screen from the details dialog." +msgstr "Vom Dialogfenster mit den Detailinformationen aus kannst du auch eine erweiterte Ansicht zur Bearbeitung aufrufen sowie einzelne Elemente löschen." + +#: wp-admin/upload.php:67 +msgid "Clicking an item will display an Attachment Details dialog, which allows you to preview media and make quick edits. Any changes you make to the attachment details will be automatically saved." +msgstr "Anklicken eines Elements öffnet ein Dialogfeld mit den Anhang-Detailinformationen, das dir eine Vorschau der Medieninhalte und schnelle Änderungen ermöglicht. Jede Detail-Änderung wird automatisch gespeichert." + +#: wp-admin/upload.php:58 +msgid "To delete media items, click the Bulk Select button at the top of the screen. Select any items you wish to delete, then click the Delete Selected button. Clicking the Cancel Selection button takes you back to viewing your media." +msgstr "Um Dateien aus der Mediathek zu löschen, klicke auf den Button „Mehrfachauswahl“ oben am Bildschirm. Wähle dann die Elemente aus, die du löschen möchtest und klicke auf den Button „Ausgewählte löschen“. Indem du auf „Auswahl abbrechen“ klickst, wird diese Aktion abgebrochen und du kommst in die Übersicht der Mediathek zurück." + +#: wp-admin/upload.php:57 wp-admin/upload.php:230 +msgid "You can view your media in a simple visual grid or a list with columns. Switch between these views using the icons to the left above the media." +msgstr "Du kannst deine Mediendateien in einem einfachen Raster oder als Liste mit Spalten ansehen. Zum Wechsel zwischen den beiden Ansichtsarten dienen die Icons links über den Mediendateien." + +#: wp-admin/upload.php:56 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first." +msgstr "Alle Dateien, die du hochgeladen hast, werden in der Mediathek aufgelistet, die zuletzt hochgeladenen zuoberst." + +#: wp-admin/plugin-install.php:101 +msgid "If you just want to get an idea of what’s available, you can browse Featured and Popular plugins by using the links above the plugins list. These sections rotate regularly." +msgstr "Wenn du eine Vorstellung davon bekommen möchtest, welche Plugins verfügbar sind, kannst du mit den Links am oberen linken Bildschirmrand eine Auswahl an vorgestellten und populären Plugins durchstöbern. Diese Abschnitte werden regelmäßig neu bestückt." + +#: wp-admin/plugin-install.php:139 +msgid "Browse Plugins" +msgstr "Plugins durchstöbern" + +#: wp-admin/plugin-install.php:50 +msgid "Add Plugins" +msgstr "Plugins hinzufügen" + +#. translators: 1: WPLANG, 2: wp-config.php +#: wp-admin/options-general.php:191 +msgid "The %1$s constant in your %2$s file is no longer needed." +msgstr "Die Konstante %1$s in deiner Datei %2$s wird nicht länger benötigt." + +#: wp-admin/includes/translation-install.php:24 +msgid "Invalid translation type." +msgstr "Ungültige Übersetzungsart." + +#: wp-admin/install.php:358 +msgid "Welcome to the famous five-minute WordPress installation process! Just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world." +msgstr "" +"Willkommen bei der berühmten 5-Minuten-Installation von WordPress! \n" +"Gib unten einfach die benötigten Informationen ein und schon kannst du starten mit der am besten erweiterbaren und leistungsstarken persönlichen Veröffentlichungsplattform der Welt." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:762 +msgid "Compatible with your version of WordPress" +msgstr "Kompatibel mit deiner WordPress-Version." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:760 +msgid "Incompatible with your version of WordPress" +msgstr "Inkompatibel mit deiner WordPress-Version." + +#. translators: %s: Number of stars. +#: wp-admin/includes/plugin-install.php:759 +msgid "%d star" +msgid_plural "%d stars" +msgstr[0] "%d Stern" +msgstr[1] "%d Sterne" + +#: wp-admin/includes/class-wp-list-table.php:468 +msgid "Select bulk action" +msgstr "Mehrfachaktion wählen" + +#: wp-admin/user-new.php:427 wp-admin/user-new.php:597 +msgid "Add the user without sending an email that requires their confirmation." +msgstr "Benutzer hinzufügen ohne eine E-Mail zu versenden, die bestätigt werden muss." + +#. translators: %s: List view URL. +#: wp-admin/upload.php:102 +msgid "The grid view for the Media Library requires JavaScript. Switch to the list view." +msgstr "Die Raster-Ansicht der Mediathek benötigt JavaScript. Zur Listenansicht wechseln" + +#: wp-admin/update-core.php:268 +msgid "This site is set up to install updates of future beta versions automatically." +msgstr "Diese Website ist so eingerichtet, dass Aktualisierungen künftiger Beta-Versionen automatisch erfolgen." + +#: wp-admin/update-core.php:268 +msgid "BETA TESTERS:" +msgstr "Beta-Tester:" + +#: wp-admin/includes/plugin-install.php:773 +msgid "Contributors" +msgstr "Mitwirkende" + +#: wp-admin/includes/plugin-install.php:704 +#: wp-admin/includes/plugin-install.php:791 +msgid "Donate to this plugin »" +msgstr "Für dieses Plugin spenden »" + +#: wp-admin/includes/plugin-install.php:574 +msgctxt "Plugin installer section title" +msgid "Reviews" +msgstr "Bewertungen" + +#. translators: %s: Support email address. +#: wp-admin/includes/class-wp-automatic-updater.php:782 +msgid "The WordPress team is willing to help you. Forward this email to %s and the team will work with you to make sure your site is working." +msgstr "Das WordPress-Team möchte dir gerne helfen. Leite diese E-Mail an %s weiter. Das Team wird sich mit dir in Verbindung setzen, um sicherzustellen, dass deine Website funktioniert." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:67 +msgctxt "themes" +msgid "Recently Updated" +msgstr "Kürzlich aktualisiert" + +#: wp-admin/includes/class-wp-terms-list-table.php:190 +msgctxt "Number/count of items" +msgid "Count" +msgstr "Anzahl" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1042 +msgid "View details" +msgstr "Details ansehen" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:620 +msgid "More Details" +msgstr "Weitere Details" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:464 +msgctxt "Plugin installer group title" +msgid "Tools" +msgstr "Werkzeuge" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:463 +msgctxt "Plugin installer group title" +msgid "Social" +msgstr "Social" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:462 +msgctxt "Plugin installer group title" +msgid "Performance" +msgstr "Leistung" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:105 +msgctxt "Plugin Installer" +msgid "Beta Testing" +msgstr "Beta-Testen" + +#. translators: %s: URL that could not be embedded. +#: wp-admin/includes/ajax-actions.php:3692 +msgid "%s failed to embed." +msgstr "%s konnte nicht eingebunden werden." + +#: wp-admin/includes/class-wp-automatic-updater.php:797 +msgid "If you reach out to us, we'll also ensure you'll never have this problem again." +msgstr "Wenn du dich an uns wendest, geben wir unser Bestes, damit dieses Problem nicht mehr auftritt." + +#: wp-admin/theme-install.php:235 +msgid "Filtering by:" +msgstr "Filterung nach:" + +#: wp-admin/includes/media.php:3229 +msgid "Displayed on attachment pages." +msgstr "Wird auf Anhangseiten angezeigt." + +#: wp-admin/includes/image-edit.php:214 +msgid "You can edit the image while preserving the thumbnail. For example, you may wish to have a square thumbnail that displays just a section of the image." +msgstr "Du kannst das Bild unter Beibehaltung der Miniaturansicht bearbeiten. Zum Beispiel möchtest du vielleicht ein quadratisches Miniaturbild, das nur einen Ausschnitt des Bildes zeigt." + +#: wp-admin/includes/image-edit.php:176 +msgid "Once you have made your selection, you can adjust it by entering the size in pixels. The minimum selection size is the thumbnail size as set in the Media settings." +msgstr "Nachdem du deine Auswahl getroffen hast, kannst du diese durch Eingabe der Größe in Pixel anpassen. Die minimale Auswahlgröße ist die Miniaturbildgröße, die in den Medien-Einstellungen festgelegt wurde." + +#: wp-admin/includes/image-edit.php:173 +msgid "The aspect ratio is the relationship between the width and height. You can preserve the aspect ratio by holding down the shift key while resizing your selection. Use the input box to specify the aspect ratio, e.g. 1:1 (square), 4:3, 16:9, etc." +msgstr "Das Seitenverhältnis ist die Bildhöhe in Relation zur Bildbreite. Du kannst das Seitenverhältnis beibehalten, indem du die Steuerungstaste gedrückt hältst wenn du eine Größenänderung vornimmst. Verwende das Eingabefeld, um ein Seitenverhältnis festzulegen, z. B. 1:1 (quadratisch), 4:3, 16:9 usw." + +#: wp-admin/includes/image-edit.php:170 +msgid "To crop the image, click on it and drag to make your selection." +msgstr "Um das Bild zu beschneiden, klicke darauf und ziehe, um die Auswahl zu treffen." + +#: wp-admin/includes/image-edit.php:108 +msgid "You can proportionally scale the original image. For best results, scaling should be done before you crop, flip, or rotate. Images can only be scaled down, not up." +msgstr "Du kannst das Originalbild proportional skalieren. Für das beste Ergebnis sollte die Skalierung gemacht werden, bevor du das Bild zuschneidest, spiegelst oder drehst. Bilder können nur nach unten, nicht nach oben skaliert werden." + +#. translators: %s: Alt + F10 +#: wp-admin/edit-form-advanced.php:298 +msgid "Keyboard users: When you’re working in the visual editor, you can use %s to access the toolbar." +msgstr "Tastaturbenutzer: Wenn du im visuellen Editor arbeitest, kannst du mit %s auf die Werkzeugleiste zugreifen." + +#: wp-admin/edit-comments.php:183 +msgid "A red bar on the left means the comment is waiting for you to moderate it." +msgstr "Ein roter Balken auf der linken Seite bedeutet, dass der Kommentar auf deine Moderation wartet." + +#: wp-admin/includes/class-wp-comments-list-table.php:495 +msgid "All comment types" +msgstr "Alle Kommentararten" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:66 +#: wp-admin/theme-install.php:178 +msgctxt "themes" +msgid "Latest" +msgstr "Neueste" + +#: wp-admin/theme-install.php:177 +msgctxt "themes" +msgid "Popular" +msgstr "Populär" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:64 +#: wp-admin/theme-install.php:176 +msgctxt "themes" +msgid "Featured" +msgstr "Vorgestellt" + +#: wp-admin/includes/ms.php:957 wp-admin/users.php:320 +msgid "Attribute all content to:" +msgstr "Diesem Benutzer den gesamten Inhalt zuordnen:" + +#: wp-admin/includes/ms.php:955 wp-admin/users.php:317 +msgid "Delete all content." +msgstr "Den gesamten Inhalt löschen." + +#: wp-admin/users.php:311 +msgid "What should be done with content owned by this user?" +msgstr "Was soll mit dem Inhalt dieses Benutzers passieren?" + +#: wp-admin/users.php:58 +msgid "Delete brings you to the Delete Users screen for confirmation, where you can permanently remove a user from your site and delete their content. You can also delete multiple users at once by using bulk actions." +msgstr "Löschen bringt dich zur „Benutzer löschen“-Ansicht zur Bestätigung deinerseits, dass du einen Benutzer unwiderruflich von deiner Website entfernen und auch dessen Inhalte löschen willst. Du kannst über die Mehrfachaktionen auch mehrere Benutzer auf einmal löschen." + +#: wp-admin/users.php:56 +msgid "Remove allows you to remove a user from your site. It does not delete their content. You can also remove multiple users at once by using bulk actions." +msgstr "Entfernen ermöglicht es dir, einen Benutzer von deiner Website zu entfernen. Dessen Inhalte werden nicht gelöscht. Du kannst auch mehrere Benutzer auf einmal löschen, indem du die Mehrfachaktionen verwendest." + +#: wp-admin/theme-install.php:334 +msgctxt "theme" +msgid "Details & Preview" +msgstr "Details & Vorschau" + +#: wp-admin/theme-install.php:57 +msgid "Search themes..." +msgstr "Themes durchsuchen ..." + +#: wp-admin/theme-install.php:56 +msgid "Search Themes" +msgstr "Themes suchen" + +#: wp-admin/theme-install.php:24 +msgid "Add Themes" +msgstr "Themes hinzufügen" + +#: wp-admin/revision.php:110 +msgid "← Return to editor" +msgstr "← Zurück zum Editor" + +#: wp-admin/maint/repair.php:147 +msgid "https://wordpress.org/support/forum/how-to-and-troubleshooting" +msgstr "https://de.wordpress.org/support/forum/wordpress-deutschland/" + +#: wp-admin/index.php:76 +msgid "At A Glance — Displays a summary of the content on your site and identifies which theme and version of WordPress you are using." +msgstr "Auf einen Blick – Zeigt eine Zusammenfassung der Inhalte deiner Website und zeigt, welches Theme und welche WordPress-Version du verwendest." + +#: wp-admin/index.php:63 +msgid "Box Controls — Click the title bar of the box to expand or collapse it. Some boxes added by plugins may have configurable content, and will show a “Configure” link in the title bar if you hover over it." +msgstr "Boxeinstellungen – Klicke auf die Titelleiste der Box, um sie aus- oder einzuklappen. Plugins können zusätzliche Boxen registrieren, welche einen konfigurierbaren Inhalt haben. Bei Mauszeigerkontakt der Titelleiste dieser Boxen erscheint ein „Konfigurieren“-Link mit Optionen." + +#: wp-admin/themes.php:43 +msgid "Sorry, you are not allowed to resume this theme." +msgstr "Du bist leider nicht berechtigt, das Theme wiederherzustellen." + +#: wp-admin/includes/meta-boxes.php:272 wp-admin/edit-form-comment.php:139 +msgid "Edit date and time" +msgstr "Datum und Uhrzeit ändern" + +#: wp-admin/includes/meta-boxes.php:259 +msgid "Browse revisions" +msgstr "Revisionen durchsuchen" + +#: wp-admin/includes/meta-boxes.php:186 +msgid "Edit visibility" +msgstr "Sichtbarkeit ändern" + +#: wp-admin/includes/meta-boxes.php:134 +msgid "Edit status" +msgstr "Status ändern" + +#: wp-admin/includes/dashboard.php:1925 +msgid "Manage menus" +msgstr "Menüs verwalten" + +#: wp-admin/includes/dashboard.php:1922 +msgid "Manage widgets" +msgstr "Widgets verwalten" + +#: wp-admin/credits.php:55 wp-admin/credits.php:70 +msgid "https://make.wordpress.org/" +msgstr "https://make.wordpress.org/" + +#: wp-admin/includes/ms.php:1159 wp-admin/network/user-new.php:30 +#: wp-admin/network/index.php:56 wp-admin/network/users.php:231 +#: wp-admin/network/site-new.php:33 wp-admin/network/sites.php:46 +msgid "Support Forums" +msgstr "Support-Foren" + +#. translators: %s: https://wordpress.org +#: wp-admin/admin-footer.php:37 +msgid "Thank you for creating with WordPress." +msgstr "Danke für dein Vertrauen in WordPress." + +#: wp-admin/themes.php:232 +msgid "Search installed themes..." +msgstr "Installierte Themes durchsuchen ..." + +#: wp-admin/update-core.php:815 +msgid "Translations — The files translating WordPress into your language are updated for you whenever any other updates occur. But if these files are out of date, you can click the “Update Translations” button." +msgstr "Übersetzungen – Die Dateien, die WordPress in deine Sprache übersetzen, werden für dich aktualisiert, sobald an anderer Stelle Aktualisierungen ausgeführt werden. Du kannst aber auch den Button „Übersetzungen aktualisieren“ klicken, wenn die Dateien nicht mehr aktuell sein sollten." + +#: wp-admin/update-core.php:811 +msgid "In most cases, WordPress will automatically apply maintenance and security updates in the background for you." +msgstr "In den meisten Fällen wird WordPress Wartungs- und Sicherheits-Updates für dich automatisch im Hintergrund ausführen." + +#: wp-admin/update-core.php:811 +msgid "WordPress — Updating your WordPress installation is a simple one-click procedure: just click on the “Update Now” button when you are notified that a new version is available." +msgstr "WordPress – Die Aktualisierung deiner WordPress-Installation ist jetzt noch einfacher: klick auf den Button „Jetzt Aktualisieren“ sobald du einen Hinweis erhältst, dass eine neue Version verfügbar ist." + +#: wp-admin/update-core.php:801 +msgid "If an update is available, you᾿ll see a notification appear in the Toolbar and navigation menu." +msgstr "Sobald eine Aktualisierung verfügbar ist, siehst du einen Hinweis in der Werkzeugleiste und dem Navigationsmenü." + +#: wp-admin/update-core.php:812 +msgid "Themes and Plugins — To update individual themes or plugins from this screen, use the checkboxes to make your selection, then click on the appropriate “Update” button. To update all of your themes or plugins at once, you can check the box at the top of the section to select all before clicking the update button." +msgstr "Themes und Plugins – Um einzelne Themes oder Plugins auf diesem Bildschirm zu aktualisieren, markiere bitte die Auswahlfelder und klicke dann auf den zugehörigen Button „Aktualisierung“. Um alle Themes und Plugins auf einmal zu aktualisieren, wählst du das Kästchen oberhalb der Auswahl aus und klickst dann auf „Aktualisieren“." + +#: wp-admin/update-core.php:800 +msgid "On this screen, you can update to the latest version of WordPress, as well as update your themes, plugins, and translations from the WordPress.org repositories." +msgstr "In dieser Ansicht kannst du WordPress auf die neueste Version aktualisieren. Deine Themes, Plugins und Übersetzungen kannst du hier ebenfalls auf den neuesten Stand bringen." + +#. translators: %s: https://wordpress.org/themes +#: wp-admin/themes.php:155 +msgid "If you would like to see more themes to choose from, click on the “Add New” button and you will be able to browse or search for additional themes from the WordPress Theme Directory. Themes in the WordPress Theme Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Falls du weitere Themes zur Auswahl sehen möchten, klicke auf den Button „Hinzufügen“ und du kannst dann nach weiteren Themes im WordPress Theme-Verzeichnis stöbern und suchen. Alle Themes im WordPress-Theme-Verzeichnis wurden von Dritten designt und entwickelt und sind kompatibel, mit der von WordPress genutzten Lizenz (GPL). Ach ja, und sie sind auch noch kostenlos!" + +#. translators: 1: Number of megabytes, 2: Percentage. +#: wp-admin/includes/dashboard.php:1570 +msgid "%1$s MB (%2$s%%) Space Used" +msgstr "%1$s MB (%2$s %%) verwendeter Speicherplatz" + +#. translators: %s: Number of megabytes. +#: wp-admin/includes/dashboard.php:1556 +msgid "%s MB Space Allowed" +msgstr "%s MB freier Speicherplatz" + +#. translators: Date and time format for recent posts on the dashboard, see +#. https://www.php.net/date +#: wp-admin/includes/dashboard.php:972 +msgid "M jS" +msgstr "d.m." + +#. translators: %s: Number of pages. +#: wp-admin/includes/dashboard.php:290 +msgid "%s Page" +msgid_plural "%s Pages" +msgstr[0] "%s Seite" +msgstr[1] "%s Seiten" + +#. translators: %s: Number of posts. +#: wp-admin/includes/dashboard.php:287 +msgid "%s Post" +msgid_plural "%s Posts" +msgstr[0] "%s Beitrag" +msgstr[1] "%s Beiträge" + +#: wp-admin/options-reading.php:45 +msgid "When this setting is in effect, a reminder is shown in the At a Glance box of the Dashboard that says, “Search engines discouraged,” to remind you that your site is not being crawled." +msgstr "Mit dieser Einstellung wird in der Box „Auf einen Blick“ im Dashboard ein Hinweis „Suchmaschinen ausgeschlossen“ eingeblendet, der dich daran erinnern soll, dass deine Website von Suchmaschinen nicht aufgesucht wird." + +#: wp-admin/includes/dashboard.php:61 +msgid "At a Glance" +msgstr "Auf einen Blick" + +#: wp-admin/themes.php:526 wp-admin/themes.php:873 +msgctxt "theme" +msgid "Active:" +msgstr "Aktiv:" + +#: wp-admin/includes/theme.php:303 +msgid "Accessibility Ready" +msgstr "Für Barrierefreiheit geeignet" + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:918 wp-admin/themes.php:1081 +msgid "This is a child theme of %s." +msgstr "Dies ist ein Child-Theme von %s." + +#: wp-admin/themes.php:174 +msgid "When previewing on smaller monitors, you can use the collapse icon at the bottom of the left-hand pane. This will hide the pane, giving you more room to preview your site in the new theme. To bring the pane back, click on the collapse icon again." +msgstr "Bei Vorschau auf kleineren Bildschirmen kannst du das Einklapp-Icon unten in der Menüleiste links verwenden. Dadurch wird die Menüleiste ausgeblendet, was dir mehr Platz zur Vorschau deiner Website mit dem neuen Theme gibt. Um die Menüleiste wieder einzublenden, klicke erneut auf das Einklapp-Icon." + +#: wp-admin/themes.php:173 +msgid "The theme being previewed is fully interactive — navigate to different pages to see how the theme handles posts, archives, and other page templates. The settings may differ depending on what theme features the theme being previewed supports. To accept the new settings and activate the theme all in one step, click the Publish & Activate button above the menu." +msgstr "Das in der Vorschau angezeigte Theme ist völlig interaktiv – navigiere zu unterschiedlichen Seiten, um dir anzuschauen, wie das Theme mit Beiträgen, Archiven und anderen Seiten-Templates umgeht. Die Einstellungsmöglichkeiten können je nach Theme abweichen, was davon abhängt, welche Funktionen das gezeigte Theme enthält. Um in einem Schwung die neuen Einstellungen zu übernehmen und das Theme zu aktualisieren, klicke über dem Menü auf den Button „Aktivieren & Veröffentlichen“." + +#: wp-admin/themes.php:172 +msgid "Tap or hover on any theme then click the Live Preview button to see a live preview of that theme and change theme options in a separate, full-screen view. You can also find a Live Preview button at the bottom of the theme details screen. Any installed theme can be previewed and customized in this way." +msgstr "Klicke auf oder fahre mit der Maus über ein beliebiges Theme und klicke dann auf Live-Vorschau, um das Theme in einer Vorschau sehen und Anpassungen in einer separaten Vollbildanzeige vornehmen zu können. Du findest den Button für eine Live-Vorschau auch am unteren Rand des Bildschirms mit den Theme-Details. Jedes Theme kann auf diese Weise vorher betrachtet und mit dem Customizer angepasst werden." + +#: wp-admin/themes.php:136 +msgid "The current theme is displayed highlighted as the first theme." +msgstr "Das aktuelle Theme wird hervorgehoben als erstes Theme angezeigt." + +#: wp-admin/themes.php:135 +msgid "Click Customize for the current theme or Live Preview for any other theme to see a live preview" +msgstr "Auf „Customizer“ klicken beim aktuellen Theme oder bei den übrigen Themes auf „Live-Vorschau“, um eine Voransicht zu erhalten." + +#: wp-admin/themes.php:134 +msgid "Click on the theme to see the theme name, version, author, description, tags, and the Delete link" +msgstr "Auf das Theme klicken, um Name, Version, Autor, Beschreibung, Schlagwörter und den Link zum Löschen anzuzeigen." + +#: wp-admin/themes.php:133 +msgid "Hover or tap to see Activate and Live Preview buttons" +msgstr "Durch Antippen oder bei Mauszeigerkontakt der Buttons „Aktivieren“ oder „Live-Vorschau“ sichtbar machen." + +#: wp-admin/themes.php:131 +msgid "This screen is used for managing your installed themes. Aside from the default theme(s) included with your WordPress installation, themes are designed and developed by third parties." +msgstr "Diese Ansicht wird dazu verwendet, deine installierten Themes zu verwalten. Neben Standard-Themes, die in deiner WordPress-Installation enthalten sind, werden Themes meist von Drittanbietern gestaltet und entwickelt." + +#: wp-admin/widgets.php:445 +msgid "To activate a widget drag it to a sidebar or click on it. To deactivate a widget and delete its settings, drag it back." +msgstr "Zieh ein Widget in eine Seitenleiste oder klicke darauf, um es zu aktivieren. Zieh es wieder zurück, um das Widget zu deaktivieren und seine Einstellungen zu löschen." + +#. translators: %s: The rating. +#: wp-admin/includes/template.php:2607 +msgid "%s rating" +msgstr "%s Bewertung" + +#. translators: 1: The rating, 2: The number of ratings. +#: wp-admin/includes/template.php:2603 +msgid "%1$s rating based on %2$s rating" +msgid_plural "%1$s rating based on %2$s ratings" +msgstr[0] "%1$s Bewertung bezogen auf %2$s Bewertung" +msgstr[1] "%1$s Bewertung bezogen auf %2$s Bewertungen" + +#: wp-admin/my-sites.php:45 +msgid "This screen shows an individual user all of their sites in this network, and also allows that user to set a primary site. They can use the links under each site to visit either the front end or the dashboard for that site." +msgstr "In dieser Ansicht werden einem Benutzer alle Websites angezeigt, auf die er in diesem Netzwerk Zugriff hat. Des Weiteren kann hier eine Website als primäre Website (auch: Haupt-Website) festgelegt werden. Die Links unter jeder Website ermöglichen den Zugriff auf das Dashboard oder Frontend der jeweiligen Website." + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1323 +msgid "Error: [%1$s] %2$s" +msgstr "Fehler: [%1$s] %2$s" + +#. translators: 1: Error code, 2: Error message. +#: wp-admin/includes/class-wp-automatic-updater.php:1320 +msgid "Rollback Error: [%1$s] %2$s" +msgstr "Wiederherstellungsfehler: [%1$s] %2$s" + +#: wp-admin/includes/class-wp-automatic-updater.php:1249 +msgid "The following translations failed to update:" +msgstr "Bei folgenden Übersetzungen ist die Aktualisierung fehlgeschlagen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1248 +msgid "The following themes failed to update:" +msgstr "Bei folgenden Themes ist die Aktualisierung fehlgeschlagen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1247 +msgid "The following plugins failed to update:" +msgstr "Bei folgenden Plugins ist die Aktualisierung fehlgeschlagen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1235 +msgid "The following translations were successfully updated:" +msgstr "Folgende Übersetzungen wurden erfolgreich aktualisiert:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1234 +msgid "The following themes were successfully updated:" +msgstr "Folgende Themes wurden erfolgreich aktualisiert:" + +#: wp-admin/includes/class-wp-automatic-updater.php:1233 +msgid "The following plugins were successfully updated:" +msgstr "Folgende Plugins wurden erfolgreich aktualisiert: " + +#: wp-admin/widgets.php:566 +msgid "Add Widget" +msgstr "Widget hinzufügen" + +#: wp-admin/includes/theme.php:790 wp-admin/themes.php:910 +msgid "Show next theme" +msgstr "Nächstes Theme anzeigen" + +#: wp-admin/includes/theme.php:789 wp-admin/themes.php:909 +msgid "Show previous theme" +msgstr "Vorheriges Theme anzeigen" + +#: wp-admin/includes/theme.php:839 wp-admin/themes.php:997 +msgid "Update Available" +msgstr "Aktualisierung verfügbar" + +#: wp-admin/themes.php:230 wp-admin/theme-install.php:55 +msgid "Add New Theme" +msgstr "Neues Theme hinzufügen" + +#: wp-admin/themes.php:226 +msgid "" +"Are you sure you want to delete this theme?\n" +"\n" +"Click 'Cancel' to go back, 'OK' to confirm the delete." +msgstr "" +"Bist du sicher, dass du dieses Theme löschen willst?\n" +"\n" +"Klicke ‚Abbrechen‘, um zurückzugehen, ‚OK‘, um das Löschen zu bestätigen." + +#: wp-admin/post.php:82 +msgid "Unable to submit this form, please refresh and try again." +msgstr "Dieses Formular kann nicht übertragen werden. Bitte lade es neu und versuche es nochmal." + +#: wp-admin/index.php:82 +msgid "Quick Draft — Allows you to create a new post and save it as a draft. Also displays links to the 3 most recent draft posts you've started." +msgstr "Schneller Entwurf – Ermöglicht dir, neue Beiträge zu erstellen und als Entwurf zu speichern. Außerdem werden dir Links zu den letzten 3 Entwürfen angezeigt, die du begonnen hast." + +#: wp-admin/index.php:79 +msgid "Activity — Shows the upcoming scheduled posts, recently published posts, and the most recent comments on your posts and allows you to moderate them." +msgstr "Aktivität – Zeigt anstehende, geplante und vor kurzem veröffentlichte Beiträge, sowie die neuesten Kommentare auf deine Beiträge und ermöglicht dir, diese zu moderieren." + +#: wp-admin/index.php:61 +msgid "Screen Options — Use the Screen Options tab to choose which Dashboard boxes to show." +msgstr "Ansicht anpassen – Verwende den Tab „Ansicht anpassen“, um auszuwählen, welche Boxen im Dashboard angezeigt werden sollen." + +#: wp-admin/includes/dashboard.php:1563 wp-admin/includes/dashboard.php:1578 +msgid "Manage Uploads" +msgstr "Uploads verwalten" + +#: wp-admin/includes/deprecated.php:1379 +msgid "Popular Plugin" +msgstr "Beliebtes Plugin" + +#: wp-admin/includes/dashboard.php:966 +msgid "Tomorrow" +msgstr "Morgen" + +#: wp-admin/includes/dashboard.php:902 +msgid "No activity yet!" +msgstr "Bisher keine Aktivitäten!" + +#: wp-admin/includes/dashboard.php:893 +msgid "Recently Published" +msgstr "Kürzlich veröffentlicht" + +#: wp-admin/includes/dashboard.php:884 +msgid "Publishing Soon" +msgstr "In Kürze veröffentlichen" + +#: wp-admin/includes/dashboard.php:548 +msgid "What’s on your mind?" +msgstr "Was beschäftigt dich?" + +#. translators: 1: Version number, 2: Theme name. +#: wp-admin/includes/update.php:352 +msgid "WordPress %1$s running %2$s theme." +msgstr "WordPress %1$s verwendet das Theme %2$s." + +#: wp-admin/includes/dashboard.php:75 +msgid "Quick Draft" +msgstr "Schneller Entwurf" + +#: wp-admin/includes/dashboard.php:70 +msgid "Activity" +msgstr "Aktivität" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1256 +msgid "FAILED: %s" +msgstr "Fehlgeschlagen: %s" + +#. translators: %s: Name of plugin / theme / translation. +#: wp-admin/includes/class-wp-automatic-updater.php:1241 +msgid "SUCCESS: %s" +msgstr "Erfolg bei: %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1219 +msgid "FAILED: WordPress failed to update to %s" +msgstr "Fehler! Die Aktualisierung von WordPress auf Version %s ist fehlgeschlagen" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:1216 +msgid "SUCCESS: WordPress was successfully updated to %s" +msgstr "Erfolg! WordPress wurde erfolgreich auf %s aktualisiert" + +#. translators: %s: Network home URL. +#: wp-admin/includes/class-wp-automatic-updater.php:1209 +msgid "WordPress site: %s" +msgstr "WordPress-Website: %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:811 +msgid "Your site was running version %s." +msgstr "Deine Website läuft mit Version %s." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:757 +msgid "Your site at %1$s experienced a critical failure while trying to update WordPress to version %2$s." +msgstr "Deine Website %1$s hat einen kritischen Fehler gemeldet, als versucht wurde WordPress auf Version %2$s zu aktualisieren." + +#. translators: %s: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:725 +msgid "WordPress %s is also now available." +msgstr "WordPress %s ist ebenfalls verfügbar." + +#: wp-admin/includes/update-core.php:941 wp-admin/includes/update-core.php:1088 +#: wp-admin/includes/update-core.php:1113 +#: wp-admin/includes/class-core-upgrader.php:160 +#: wp-admin/includes/class-wp-upgrader.php:165 +msgid "The update cannot be installed because we will be unable to copy some files. This is usually due to inconsistent file permissions." +msgstr "Die Aktualisierung konnte nicht installiert werden, da einige Dateien nicht kopiert werden konnten. Dies liegt meist an inkonsistenten Dateiberechtigungen." + +#: wp-admin/includes/class-language-pack-upgrader.php:114 +#: wp-admin/update-core.php:632 +msgid "Your translations are all up to date." +msgstr "Alle Übersetzungen sind auf dem neuesten Stand." + +#: wp-admin/update-core.php:631 wp-admin/update-core.php:639 +msgid "Translations" +msgstr "Übersetzungen" + +#: wp-admin/update-core.php:242 +msgid "Future security updates will be applied automatically." +msgstr "Zukünftige Sicherheitsaktualisierungen werden automatisch durchgeführt." + +#. translators: %s: Error code. +#: wp-admin/includes/class-wp-automatic-updater.php:830 +msgid "Error code: %s" +msgstr "Fehler-Code: %s" + +#: wp-admin/includes/class-wp-automatic-updater.php:813 +msgid "Your hosting company, support forum volunteers, or a friendly developer may be able to use this information to help you:" +msgstr "Dein Webhosting-Anbieter, Freiwillige im WordPress-Support-Forum oder eine freundliche Person mit Programmier-Kenntnissen können dir vielleicht mit diesen Informationen weiterhelfen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:812 +msgid "We have some data that describes the error your site encountered." +msgstr "Wir haben einige Informationen, die den Fehler, der auf deiner Website aufgetaucht ist, beschreiben." + +#: wp-admin/includes/class-wp-automatic-updater.php:806 +#: wp-admin/includes/class-wp-automatic-updater.php:1158 +msgid "The WordPress Team" +msgstr "Das WordPress-Team" + +#: wp-admin/includes/class-wp-automatic-updater.php:802 +msgid "You also have some plugins or themes with updates available. Update them now:" +msgstr "Es stehen auch Aktualisierungen für einige deiner Plugins oder Themes zur Verfügung. Aktualisiere sie jetzt:" + +#: wp-admin/includes/class-wp-automatic-updater.php:787 +#: wp-admin/includes/class-wp-automatic-updater.php:1156 +msgid "If you experience any issues or need support, the volunteers in the WordPress.org support forums may be able to help." +msgstr "Wenn du irgendwelche Fehler feststellst oder Unterstützung benötigst, steht dir das WordPress.org-Supportforum mit seinen freiwilligen Helfern zur Verfügung." + +#: wp-admin/includes/class-wp-automatic-updater.php:793 +#: wp-admin/update-core.php:801 +msgid "Keeping your site updated is important for security. It also makes the internet a safer place for you and your readers." +msgstr "Für die Sicherheit deiner Website ist es wichtig, sie auf dem neuesten Stand zu halten. Damit machst du auch das Internet für dich und deine Besucher sicherer." + +#: wp-admin/includes/class-wp-automatic-updater.php:772 +msgid "Please check out your site now. It's possible that everything is working. If it says you need to update, you should do so:" +msgstr "Bitte prüfe deine Website jetzt. Möglicherweise funktioniert alles. Wenn du den Hinweis bekommst, dass du aktualisieren musst, solltest du das machen:" + +#: wp-admin/includes/class-wp-automatic-updater.php:770 +msgid "This means your site may be offline or broken. Don't panic; this can be fixed." +msgstr "Das bedeutet, dass deine Website entweder offline oder defekt ist. Keine Panik, das lässt sich reparieren." + +#. translators: 1: Home URL, 2: WordPress latest version. +#: wp-admin/includes/class-wp-automatic-updater.php:764 +msgid "Your site at %1$s experienced a critical failure while trying to update to the latest version of WordPress, %2$s." +msgstr "Deine Website %1$s hat einen kritischen Fehler gemeldet, als versucht wurde WordPress auf die neueste Version %2$s zu aktualisieren." + +#: wp-admin/includes/class-wp-automatic-updater.php:726 +#: wp-admin/includes/class-wp-automatic-updater.php:749 +msgid "Updating is easy and only takes a few moments:" +msgstr "Die Aktualisierung ist einfach und dauert nur wenige Augenblicke:" + +#: wp-admin/includes/class-wp-automatic-updater.php:746 +msgid "We tried but were unable to update your site automatically." +msgstr "Wir haben es versucht, konnten deine Website aber nicht automatisch aktualisieren." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:736 +msgid "Please update your site at %1$s to WordPress %2$s." +msgstr "Bitte aktualisiere deine Website unter %1$s auf WordPress %2$s." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:720 +msgid "For more on version %s, see the About WordPress screen:" +msgstr "Um mehr über Version %s zu erfahren, schau dir die Seite „Über WordPress“ an:" + +#: wp-admin/includes/class-wp-automatic-updater.php:714 +msgid "No further action is needed on your part." +msgstr "Es sind keine weiteren Aktionen deinerseits notwendig." + +#. translators: 1: Home URL, 2: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:708 +msgid "Howdy! Your site at %1$s has been updated automatically to WordPress %2$s." +msgstr "" +"Hallo! \n" +"\n" +"Deine Website unter %1$s wurde automatisch auf WordPress %2$s aktualisiert." + +#. translators: Site down notification email subject. 1: Site title. +#: wp-admin/includes/class-wp-automatic-updater.php:691 +msgid "[%1$s] URGENT: Your site may be down due to a failed update" +msgstr "[%1$s] DRINGEND: Deine Website ist möglicherweise wegen einer fehlerhaften Aktualisierung nicht verfügbar." + +#. translators: Update available notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:686 +msgid "[%1$s] WordPress %2$s is available. Please update!" +msgstr "[%1$s] WordPress %2$s ist verfügbar. Bitte aktualisieren!" + +#. translators: Site updated notification email subject. 1: Site title, 2: +#. WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:680 +msgid "[%1$s] Your site has updated to WordPress %2$s" +msgstr "[%1$s] Deine Website wurde auf WordPress %2$s aktualisiert" + +#. translators: %s: Project name (plugin, theme, or WordPress). +#: wp-admin/includes/class-wp-automatic-updater.php:359 +msgid "Translations for %s" +msgstr "Übersetzungen für %s" + +#. translators: 1: Project name (plugin, theme, or WordPress), 2: Language. +#: wp-admin/includes/class-wp-automatic-updater.php:361 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:51 +msgid "Updating translations for %1$s (%2$s)…" +msgstr "Aktualisierung der Übersetzungen für %1$s (%2$s)…" + +#: wp-admin/includes/class-language-pack-upgrader-skin.php:31 +#: wp-admin/update-core.php:643 wp-admin/update-core.php:1041 +msgid "Update Translations" +msgstr "Übersetzungen aktualisieren" + +#: wp-admin/includes/class-wp-site-health.php:2160 +msgid "Background updates" +msgstr "Hintergrund-Aktualisierungen" + +#: wp-admin/includes/update-core.php:1154 +msgid "There is not enough free disk space to complete the update." +msgstr "Es gibt nicht genug freien Speicherplatz, um die Aktualisierung durchzuführen." + +#. translators: %s: Plugin name. +#: wp-admin/includes/class-wp-automatic-updater.php:354 +msgid "Updating plugin: %s" +msgstr "Aktualisiere Plugin %s" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-automatic-updater.php:347 +msgid "Updating theme: %s" +msgstr "Aktualisiere Theme %s" + +#: wp-admin/includes/class-language-pack-upgrader.php:120 +msgid "Translation updated successfully." +msgstr "Die Übersetzung wurde erfolgreich aktualisiert." + +#: wp-admin/includes/class-language-pack-upgrader.php:119 +msgid "Translation update failed." +msgstr "Die Aktualisierung der Übersetzung ist fehlgeschlagen." + +#: wp-admin/includes/class-language-pack-upgrader.php:113 +msgid "Some of your translations need updating. Sit tight for a few more seconds while we update them as well." +msgstr "Einige Übersetzungen benötigen eine Aktualisierung. Warte noch ein paar Sekunden ab, während wir diese ebenfalls aktualisieren." + +#: wp-admin/user-new.php:456 +msgid "Create a brand new user and add them to this site." +msgstr "Lege einen neuen Benutzer an und füge ihn dieser Website hinzu." + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/theme-editor.php:42 +msgid "Upgrading to a newer version of the same theme will override changes made here. To avoid this, consider creating a child theme instead." +msgstr "Bei einer Aktualisierung auf eine neuere Version dieses Themes, werden hier vorgenommene Änderungen überschrieben. Um das zu vermeiden, solltest du stattdessen die Erstellung eines Child-Themes in Erwägung ziehen." + +#: wp-admin/options-media.php:52 +msgid "The sizes listed below determine the maximum dimensions in pixels to use when adding an image to the Media Library." +msgstr "Die unten aufgeführten Größen bestimmen die maximalen Abmessungen in Pixel, die beim Hinzufügen von Bildern zur Mediathek verwendet werden." + +#: wp-admin/options-discussion.php:182 +msgid "Comment must be manually approved" +msgstr "muss der Kommentar manuell freigegeben werden." + +#: wp-admin/nav-menus.php:628 +msgid "Clicking the arrow to the right of any menu item in the editor will reveal a standard group of settings. Additional settings such as link target, CSS classes, link relationships, and link descriptions can be enabled and disabled via the Screen Options tab." +msgstr "Durch Anklicken des Pfeils rechts von jedem Menüeintrag im Editor wird eine Gruppe üblicher Einstellungen eingeblendet. Zusätzliche Einstellungen wie zum Beispiel Link-Ziele, CSS-Klassen, Link-Beziehungen und Link-Beschreibungen können über den Tab „Ansicht anpassen“ aktiviert und deaktiviert werden." + +#. translators: 1: URL to Widgets screen, 2 and 3: The names of the default +#. themes. +#: wp-admin/nav-menus.php:597 +msgid "Menus can be displayed in locations defined by your theme, even used in sidebars by adding a “Navigation Menu” widget on the Widgets screen. If your theme does not support the navigation menus feature (the default themes, %2$s and %3$s, do), you can learn about adding this support by following the Documentation link to the side." +msgstr "Menüs können in deinem Theme an vordefinierten Positionen angezeigt oder sogar in Seitenleisten verwendet werden, indem du ein „Navigationsmenü“-Widget im Widgets-Bereich hinzufügst. Wenn dein Theme keine Navigationsmenüs unterstützt (die Standard-Themes %2$s und %3$s tun dies), kannst du über den Link zur Dokumentation erfahren, wie du eine solche Unterstützung hinzufügen kannst." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/nav-menus.php:588 +msgid "Your theme does not natively support menus, but you can use them in sidebars by adding a “Navigation Menu” widget on the Widgets screen." +msgstr "Dein Theme unterstützt keine Menüs, aber du kannst sie in Seitenleisten verwenden, indem du ein „Navigationsmenü“-Widget im Widgets-Bereich hinzufügst." + +#: wp-admin/install.php:408 +msgid "Sorry, that isn’t a valid email address. Email addresses look like username@example.com." +msgstr "Entschuldigung, aber das ist keine gültige E-Mail-Adresse. E-Mail-Adressen sehen aus wie benutzername@beispiel.de." + +#: wp-admin/install.php:404 +msgid "You must provide an email address." +msgstr "Du musst eine E-Mail-Adresse angeben." + +#: wp-admin/install.php:400 +msgid "Your passwords do not match. Please try again." +msgstr "Deine Passwörter stimmen nicht überein. Bitte versuche es nochmal." + +#: wp-admin/install.php:396 +msgid "The username you provided has invalid characters." +msgstr "Der von dir gewählte Benutzername enthält ungültige Zeichen." + +#: wp-admin/install.php:393 +msgid "Please provide a valid username." +msgstr "Bitte gib einen gültigen Benutzernamen an." + +#: wp-admin/includes/update-core.php:1102 +msgid "Copying the required files…" +msgstr "Kopieren der erforderlichen Dateien …" + +#: wp-admin/includes/update-core.php:1032 +msgid "Preparing to install the latest version…" +msgstr "Vorbereitung für die Installation der neuesten Version …" + +#: wp-admin/includes/file.php:2219 +msgid "This password will not be stored on the server." +msgstr "Dieses Passwort wird nicht auf dem Server gespeichert." + +#. translators: 1: File checksum, 2: Expected checksum value. +#: wp-admin/includes/file.php:1211 +msgid "The checksum of the file (%1$s) does not match the expected checksum value (%2$s)." +msgstr "Die Prüfsumme der Datei (%1$s) stimmt nicht mit dem erwarteten Prüfsummenwert (%2$s) überein." + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:340 +msgid "WordPress %s" +msgstr "WordPress %s" + +#. translators: %s: WordPress version. +#: wp-admin/includes/class-wp-automatic-updater.php:338 +msgid "Updating to WordPress %s" +msgstr "Aktualisiere auf WordPress %s" + +#: wp-admin/includes/class-core-upgrader.php:38 +msgid "Due to an error during updating, WordPress has rolled back to your previous version." +msgstr "Aufgrund eines Fehlers während der Aktualisierung hat WordPress die bisherige Version wieder hergestellt." + +#: wp-admin/includes/class-core-upgrader.php:37 +msgid "Attempting to roll back to previous version." +msgstr "Versuche, eine vorherige Version wieder herzustellen." + +#. translators: 1: Folder to locate, 2: Folder to start searching from. +#: wp-admin/includes/class-wp-filesystem-base.php:266 +msgid "Looking for %1$s in %2$s" +msgstr "Suche nach %1$s in %2$s" + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:356 +msgid "%s page restored from the Trash." +msgid_plural "%s pages restored from the Trash." +msgstr[0] "%s Seite aus dem Papierkorb wiederhergestellt." +msgstr[1] "%s Seiten aus dem Papierkorb wiederhergestellt." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:354 +msgid "%s page moved to the Trash." +msgid_plural "%s pages moved to the Trash." +msgstr[0] "%s Seite in den Papierkorb verschoben." +msgstr[1] "%s Seiten in den Papierkorb verschoben." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:352 +msgid "%s page permanently deleted." +msgid_plural "%s pages permanently deleted." +msgstr[0] "%s Seite endgültig gelöscht." +msgstr[1] "%s Seiten endgültig gelöscht." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:350 +msgid "%s page not updated, somebody is editing it." +msgid_plural "%s pages not updated, somebody is editing them." +msgstr[0] "%s Seite nicht aktualisiert, jemand bearbeitet sie gerade." +msgstr[1] "%s Seiten nicht aktualisiert, jemand bearbeitet sie gerade." + +#. translators: %s: Number of pages. +#: wp-admin/edit.php:347 +msgid "%s page updated." +msgid_plural "%s pages updated." +msgstr[0] "%s Seite aktualisiert." +msgstr[1] "%s Seiten aktualisiert." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:343 +msgid "%s post restored from the Trash." +msgid_plural "%s posts restored from the Trash." +msgstr[0] "%s Beitrag aus dem Papierkorb wiederhergestellt." +msgstr[1] "%s Beiträge aus dem Papierkorb wiederhergestellt." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:341 +msgid "%s post moved to the Trash." +msgid_plural "%s posts moved to the Trash." +msgstr[0] "%s Beitrag in den Papierkorb verschoben." +msgstr[1] "%s Beiträge in den Papierkorb verschoben." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:339 +msgid "%s post permanently deleted." +msgid_plural "%s posts permanently deleted." +msgstr[0] "%s Beitrag endgültig gelöscht." +msgstr[1] "%s Beiträge endgültig gelöscht." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:337 +msgid "%s post not updated, somebody is editing it." +msgid_plural "%s posts not updated, somebody is editing them." +msgstr[0] "%s Beitrag nicht aktualisiert, jemand bearbeitet ihn gerade." +msgstr[1] "%s Beiträge nicht aktualisiert, jemand bearbeitet sie gerade." + +#: wp-admin/includes/edit-tag-messages.php:39 +msgid "Tags deleted." +msgstr "Schlagwörter gelöscht." + +#: wp-admin/includes/edit-tag-messages.php:38 +msgid "Tag not updated." +msgstr "Schlagwort nicht aktualisiert." + +#: wp-admin/includes/edit-tag-messages.php:37 +msgid "Tag not added." +msgstr "Schlagwort nicht hinzugefügt." + +#: wp-admin/includes/edit-tag-messages.php:36 +msgid "Tag updated." +msgstr "Schlagwort aktualisiert." + +#: wp-admin/includes/edit-tag-messages.php:35 +msgid "Tag deleted." +msgstr "Schlagwort gelöscht." + +#: wp-admin/includes/edit-tag-messages.php:34 +msgid "Tag added." +msgstr "Schlagwort hinzugefügt." + +#: wp-admin/includes/edit-tag-messages.php:29 +msgid "Categories deleted." +msgstr "Kategorien gelöscht." + +#: wp-admin/includes/edit-tag-messages.php:28 +msgid "Category not updated." +msgstr "Kategorie nicht aktualisiert." + +#: wp-admin/includes/edit-tag-messages.php:27 +msgid "Category not added." +msgstr "Kategorie nicht hinzugefügt." + +#: wp-admin/includes/edit-tag-messages.php:26 +msgid "Category updated." +msgstr "Kategorie aktualisiert." + +#: wp-admin/includes/edit-tag-messages.php:25 +msgid "Category deleted." +msgstr "Kategorie gelöscht." + +#: wp-admin/includes/edit-tag-messages.php:24 +msgid "Category added." +msgstr "Kategorie hinzugefügt." + +#: wp-admin/revision.php:144 +msgid "Compare two different revisions by selecting the “Compare any two revisions” box to the side." +msgstr "Vergleiche zwei verschiedene Überarbeitungen, indem du „Zwei beliebige Revisionen vergleichen“ in der Box auf der Seite auswählst." + +#: wp-admin/includes/revision.php:380 +msgid "Compare any two revisions" +msgstr "Zwei beliebige Revisionen vergleichen" + +#: wp-admin/includes/revision.php:439 +msgid "Restore This Autosave" +msgstr "Automatische Speicherung wiederherstellen" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:411 +msgid "Current Revision by %s" +msgstr "Aktuelle Version von %s" + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:401 +msgid "Autosave by %s" +msgstr "Automatische Speicherung von %s" + +#: wp-admin/includes/meta-boxes.php:259 +msgctxt "revisions" +msgid "Browse" +msgstr "Anzeigen" + +#. translators: Post revisions heading. %s: The number of available revisions. +#: wp-admin/includes/meta-boxes.php:257 +msgid "Revisions: %s" +msgstr "Revisionen: %s" + +#. translators: %s: Audio track title. +#: wp-admin/includes/media.php:338 +msgid "\"%s\"." +msgstr "\"%s\"." + +#. translators: 1: Audio track title, 2: Artist name. +#: wp-admin/includes/media.php:335 +msgid "\"%1$s\" by %2$s." +msgstr "\"%1$s\" von %2$s." + +#. translators: 1: Audio track title, 2: Album title. +#: wp-admin/includes/media.php:332 +msgid "\"%1$s\" from %2$s." +msgstr "\"%1$s\" aus %2$s." + +#. translators: 1: Audio track title, 2: Album title, 3: Artist name. +#: wp-admin/includes/media.php:329 +msgid "\"%1$s\" from %2$s by %3$s." +msgstr "\"%1$s\" aus %2$s von %3$s." + +#. translators: %s: User's display name. +#: wp-admin/includes/revision.php:421 +msgid "Revision by %s" +msgstr "Revision von %s" + +#: wp-admin/edit-form-advanced.php:449 +msgid "We’re backing up this post in your browser, just in case." +msgstr "Wir sichern diesen Beitrag in deinem Browser, nur für den Fall." + +#: wp-admin/edit-form-advanced.php:448 +msgid "Connection lost. Saving has been disabled until you’re reconnected." +msgstr "Verbindung wurde unterbrochen. Speichern wurde deaktiviert, bis die Verbindung wieder hergestellt ist." + +#: wp-admin/includes/revision.php:453 +msgid "Sorry, something went wrong. The requested comparison could not be loaded." +msgstr "Entschuldige, etwas ist schief gelaufen. Der gewünschte Vergleich konnte nicht geladen werden." + +#: wp-admin/install.php:158 wp-admin/user-new.php:556 +msgid "Repeat Password" +msgstr "Passwort wiederholen" + +#: wp-admin/user-edit.php:649 +msgid "Repeat New Password" +msgstr "Neues Passwort wiederholen" + +#: wp-admin/includes/nav-menu.php:1036 +msgid "Add menu items from the column on the left." +msgstr "Füge Menüeinträge aus der linken Spalte hinzu." + +#. translators: %s: https://wordpress.org/plugins +#: wp-admin/includes/plugin-install.php:272 +msgid "Plugins extend and expand the functionality of WordPress. You may automatically install plugins from the WordPress Plugin Directory or upload a plugin in .zip format by clicking the button at the top of this page." +msgstr "Plugins erweitern die Funktionalität von WordPress. Du kannst Plugins automatisch vom WordPress-Plugin-Verzeichnis installieren oder ein Plugin im .zip-Format durch Klicken des Buttons oben auf dieser Seite hochladen." + +#. Plugin URI of the plugin +msgid "http://wordpress.org/plugins/hello-dolly/" +msgstr "https://de.wordpress.org/plugins/hello-dolly/" + +#: wp-admin/includes/class-theme-upgrader.php:80 +msgid "The theme contains no files." +msgstr "Das Theme enthält keine Dateien." + +#: wp-admin/includes/class-wp-upgrader.php:161 +msgid "The package contains no files." +msgstr "Das Paket enthält keine Dateien." + +#: wp-admin/revision.php:143 +msgid "To navigate between revisions, drag the slider handle left or right or use the Previous or Next buttons." +msgstr "Um zwischen den Revisionen zu navigieren, verschiebe den Slider nach links oder rechts oder verwende den Weiter- bzw. Zurück-Button." + +#: wp-admin/includes/class-wp-debug-data.php:434 +#: wp-admin/includes/dashboard.php:1097 wp-admin/includes/dashboard.php:1287 +#: wp-admin/customize.php:147 +msgid "Loading…" +msgstr "Lädt …" + +#: wp-admin/post.php:301 +msgid "This item has already been deleted." +msgstr "Dieses Element wurde bereits gelöscht." + +#: wp-admin/post.php:279 +msgid "The item you are trying to restore from the Trash no longer exists." +msgstr "Das Element, das du aus dem Papierkorb wiederherstellen möchtest, existiert nicht mehr." + +#: wp-admin/post.php:242 +msgid "The item you are trying to move to the Trash no longer exists." +msgstr "Das Element, das du in den Papierkorb verschieben möchtest, existiert nicht mehr." + +#: wp-admin/nav-menus.php:984 +msgid "Drag the items into the order you prefer. Click the arrow on the right of the item to reveal additional configuration options." +msgstr "Ziehe die Einträge in deine bevorzugte Reihenfolge. Klicke den Pfeil auf der rechten Seite, um weitere Konfigurations-Optionen anzuzeigen." + +#: wp-admin/nav-menus.php:616 +msgid "If you haven’t yet created any menus, click the ’create a new menu’ link to get started" +msgstr "Du hast noch keine Menüs angelegt. Klicke auf „Menü hinzufügen“ , um ein neues Menü anzulegen." + +#: wp-admin/revision.php:145 +msgid "To restore a revision, click Restore This Revision." +msgstr "Um eine Revision wiederherzustellen, klicke auf Diese Revision wiederherstellen." + +#: wp-admin/revision.php:142 +msgid "From this screen you can review, compare, and restore revisions:" +msgstr "In dieser Ansicht kannst du Revisionen ansehen, vergleichen und wiederherstellen:" + +#: wp-admin/revision.php:141 +msgid "Revisions are saved copies of your post or page, which are periodically created as you update your content. The red text on the left shows the content that was removed. The green text on the right shows the content that was added." +msgstr "Revisionen sind gespeicherte Kopien deines Beitrags oder deiner Seite, die periodisch erstellt werden, wenn du deine Inhalte aktualisierst. Der rote Text auf der linken Seite zeigt entfernte Inhalte. Der grüne Text auf der rechten Seite zeigt neu hinzugefügte Inhalte." + +#: wp-admin/revision.php:140 +msgid "This screen is used for managing your content revisions." +msgstr "Auf diesem Bildschirm werden die Revisionen deiner Inhalte verwaltet." + +#: wp-admin/includes/revision.php:391 +msgctxt "Followed by post revision info" +msgid "To:" +msgstr "An:" + +#: wp-admin/includes/revision.php:366 +msgctxt "Button label for a next revision" +msgid "Next" +msgstr "Weiter" + +#: wp-admin/includes/revision.php:362 +msgctxt "Button label for a previous revision" +msgid "Previous" +msgstr "Zurück" + +#: wp-admin/includes/revision.php:389 +msgctxt "Followed by post revision info" +msgid "From:" +msgstr "Von:" + +#: wp-admin/nav-menus.php:799 +msgctxt "menu" +msgid "Use new menu" +msgstr "Neues Menü verwenden" + +#: wp-admin/nav-menus.php:780 +msgctxt "menu" +msgid "Edit" +msgstr "Bearbeiten" + +#: wp-admin/nav-menus.php:749 +msgid "Select a Menu" +msgstr "Wähle ein Menü" + +#: wp-admin/nav-menus.php:740 +msgid "Assigned Menu" +msgstr "Zugewiesenes Menü" + +#: wp-admin/nav-menus.php:739 +msgid "Theme Location" +msgstr "Position im Theme" + +#: wp-admin/nav-menus.php:708 +msgid "Manage Locations" +msgstr "Positionen verwalten" + +#: wp-admin/nav-menus.php:697 +msgid "Edit Menus" +msgstr "Menüs bearbeiten" + +#: wp-admin/nav-menus.php:645 +msgid "To add a new menu instead of assigning an existing one, click the ’Use new menu’ link. Your new menu will be automatically assigned to that theme location" +msgstr "Um ein neues Menü zu erstellen, anstatt ein bestehendes zuzuordnen, klicke auf den Link Neues Menü verwenden. Dadurch wird dann dieses neue Menü automatisch dieser Position im Theme zugeordnet." + +#: wp-admin/nav-menus.php:644 +msgid "To edit a menu currently assigned to a theme location, click the adjacent ’Edit’ link" +msgstr "Um ein Menü zu bearbeiten, das bereits einer Position im Theme zugeordnet ist, klicke einfach auf den danebenliegenden Link Bearbeiten." + +#: wp-admin/nav-menus.php:643 +msgid "To assign menus to one or more theme locations, select a menu from each location’s drop down. When you’re finished, click Save Changes" +msgstr "Um Menüs zu einer oder mehreren Positionen im Theme zuzuorden, wähle ein Menü über das Drop-down-Auswahlfeld der jeweiligen Position. Wenn du fertig bist, klicke auf Änderungen speichern" + +#: wp-admin/nav-menus.php:642 +msgid "This screen is used for globally assigning menus to locations defined by your theme." +msgstr "In dieser Ansicht kannst du eine globale Zuordnung von Menüs vornehmen, und zwar an die Positionen, die von deinem Theme definiert wurden." + +#: wp-admin/nav-menus.php:637 +msgid "Editing Menus" +msgstr "Menüs bearbeiten" + +#: wp-admin/nav-menus.php:632 +msgid "Delete a menu item by expanding it and clicking the Remove link" +msgstr "Entferne einen Menüeintrag, indem du ihn aufklappst und auf den Entfernen-Link klickst." + +#: wp-admin/nav-menus.php:631 +msgid "To reorganize menu items, drag and drop items with your mouse or use your keyboard. Drag or move a menu item a little to the right to make it a submenu" +msgstr "Um Menüeinträge zu verschieben, ziehe sie mit der Maus oder benutze die Tastatur. Ziehe oder bewege einen Menüeintrag etwas nach rechts, um ein Untermenü daraus zu machen." + +#: wp-admin/nav-menus.php:629 +msgid "Add one or several items at once by selecting the checkbox next to each item and clicking Add to Menu" +msgstr "Um einen oder mehrere Einträge auf einmal hinzuzufügen, markiere die Checkbox neben den Einträgen und klicke auf „Zum Menü hinzufügen“." + +#: wp-admin/nav-menus.php:627 +msgid "Each navigation menu may contain a mix of links to pages, categories, custom URLs or other content types. Menu links are added by selecting items from the expanding boxes in the left-hand column below." +msgstr "Jedes Navigationsmenü kann eine Kombination aus Links zu internen Seiten, Kategorien, individuellen URLs oder anderen Inhaltstypen enthalten. Menü-Links werden über die expandierenden Felder in der linken Spalte hinzugefügt." + +#: wp-admin/nav-menus.php:622 +msgid "Menu Management" +msgstr "Menüverwaltung" + +#: wp-admin/nav-menus.php:617 +msgid "You can assign theme locations to individual menus by selecting the desired settings at the bottom of the menu editor. To assign menus to all theme locations at once, visit the Manage Locations tab at the top of the screen." +msgstr "Du kannst ein Menü einem Menübereich im Theme zuweisen, indem du die gewünschten Einstellungen unten im Menüeditor auswählst. Um Menüs allen Bereichen auf einmal zuzuordnen, gehe auf den Tab „Positionen verwalten“ oben am Bildschirm." + +#: wp-admin/nav-menus.php:615 +msgid "To edit an existing menu, choose a menu from the drop down and click Select" +msgstr "Um ein bestehendes Menü zu bearbeiten, wähle ein Menü aus der Auswahlliste und klicke auf „Auswählen“." + +#: wp-admin/nav-menus.php:614 +msgid "The menu management box at the top of the screen is used to control which menu is opened in the editor below." +msgstr "Über den oberen Bereich der Menüverwaltung legst du fest, welches Menü im Editor unten geöffnet werden soll." + +#: wp-admin/nav-menus.php:604 +msgid "Add, organize, and modify individual menu items" +msgstr "Einzelne Menüeinträge hinzufügen, anordnen und ändern." + +#: wp-admin/nav-menus.php:603 +msgid "Create, edit, and delete menus" +msgstr "Menüs erstellen, bearbeiten und löschen." + +#: wp-admin/nav-menus.php:602 wp-admin/themes.php:132 +msgid "From this screen you can:" +msgstr "In dieser Ansicht kannst du:" + +#: wp-admin/nav-menus.php:594 +msgid "This screen is used for managing your navigation menus." +msgstr "Hier kannst du deine Navigationsmenüs erstellen, bearbeiten und verwalten." + +#: wp-admin/nav-menus.php:451 +msgid "Menu locations updated." +msgstr "Menü-Anordnung aktualisiert." + +#: wp-admin/includes/post.php:1788 +msgid "Your latest changes were saved as a revision." +msgstr "Deine letzten Änderungen wurden als Revision gespeichert." + +#: wp-admin/includes/media.php:3369 +msgid "Audio Codec:" +msgstr "Audio-Codec:" + +#: wp-admin/includes/media.php:3368 +msgid "Audio Format:" +msgstr "Audioformat:" + +#. translators: Audio file genre information. %s: Audio genre name. +#: wp-admin/includes/media.php:373 +msgid "Genre: %s." +msgstr "Genre: %s." + +#. translators: Audio file track information. 1: Audio track number, 2: Total +#. audio tracks. +#: wp-admin/includes/media.php:364 +msgid "Track %1$s of %2$s." +msgstr "Titel %1$s von %2$s." + +#. translators: Audio file track information. %d: Year of audio track release. +#: wp-admin/includes/media.php:356 +msgid "Released: %d." +msgstr "Veröffentlicht: %d." + +#. translators: 1: Audio album title, 2: Artist name. +#: wp-admin/includes/media.php:344 +msgid "%1$s by %2$s." +msgstr "%1$s von %2$s." + +#: wp-admin/includes/revision.php:441 +msgid "Restore This Revision" +msgstr "Diese Revision wiederherstellen" + +#. translators: %s: Capability name. +#: wp-admin/user-edit.php:763 +msgid "Denied: %s" +msgstr "Verweigert: %s" + +#: wp-admin/user-edit.php:749 +msgid "Capabilities" +msgstr "Berechtigungen" + +#: wp-admin/nav-menus.php:1017 wp-admin/network/settings.php:473 +msgid "Menu Settings" +msgstr "Menü-Einstellungen" + +#: wp-admin/nav-menus.php:940 +msgid "Menu structure" +msgstr "Menü-Struktur" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:251 +msgid "To the top" +msgstr "Nach oben" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:248 +msgid "Down one" +msgstr "Eine Ebene runter" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:247 +msgid "Up one" +msgstr "Eine Ebene rauf" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:246 +msgid "Move" +msgstr "Verschieben" + +#. translators: 1: Post creation date, 2: Post creation time. +#: wp-admin/includes/ajax-actions.php:1564 +msgid "Draft created on %1$s at %2$s" +msgstr "Entwurf erstellt am %1$s um %2$s Uhr" + +#. translators: %s: User's display name. +#: wp-admin/post.php:257 +msgid "You cannot move this item to the Trash. %s is currently editing." +msgstr "Dieser Beitrag kann nicht in den Papierkorb verschoben werden, da er momentan von %s bearbeitet wird." + +#. translators: %s: User's display name. +#: wp-admin/includes/misc.php:1128 +msgid "%s has taken over and is currently editing." +msgstr "%s hat übernommen und bearbeitet momentan." + +#: wp-admin/nav-menus.php:850 +msgid "Select a menu to edit:" +msgstr "Wähle ein Menü zum Bearbeiten:" + +#. translators: %s: URL to Upgrade Network screen. +#: wp-admin/includes/ms.php:708 +msgid "Thank you for Updating! Please visit the Upgrade Network page to update all your sites." +msgstr "Vielen Dank für die Aktualisierung! Bitte besuche die Seite Netzwerk aktualisieren, um alle Websites zu aktualisieren." + +#: wp-admin/setup-config.php:449 +msgid "All right, sparky! You’ve made it through this part of the installation. WordPress can now communicate with your database. If you are ready, time now to…" +msgstr "Alles klar! Diesen Teil der Installation hast du geschafft. WordPress kann jetzt mit deiner Datenbank kommunizieren. Wenn du bereit bist, kannst du jetzt die …" + +#: wp-admin/includes/class-wp-debug-data.php:836 +msgid "Client version" +msgstr "Client-Version" + +#: wp-admin/nav-menus.php:1033 +msgid "Auto add pages" +msgstr "Seiten automatisch hinzufügen" + +#: wp-admin/nav-menus.php:1002 +msgid "Give your menu a name, then click Create Menu." +msgstr "Gib deinem Menü einen Namen und klicke dann auf „Menü erstellen“." + +#: wp-admin/nav-menus.php:982 +msgid "Edit your default menu by adding or removing items. Drag the items into the order you prefer. Click Create Menu to save your changes." +msgstr "Bearbeite dein Standard-Menü, indem du Einträge hinzufügst oder entfernst. Ziehe jeden Eintrag an die Position, an der du ihn möchtest. Klicke auf Erstelle Menü, um deine Änderungen zu speichern." + +#: wp-admin/nav-menus.php:310 +msgid "Selected menus have been successfully deleted." +msgstr "Ausgewählte Menüs wurden erfolgreich gelöscht." + +#: wp-admin/includes/class-walker-nav-menu-edit.php:121 +msgid "sub item" +msgstr "Unterpunkt" + +#: wp-admin/theme-editor.php:31 +msgid "For PHP files, you can use the Documentation dropdown to select from functions recognized in that file. Look Up takes you to a web page with reference material about that particular function." +msgstr "Für PHP-Dateien kannst du über die Auswahlliste „Dokumentation“ Hilfe zu den Funktionen erhalten, die in der Datei verwendet werden. Ein Klick auf „Nachschlagen“; verweist zu einer Seite, die weitere Informationen zur ausgewählten PHP-Funktion anzeigt." + +#: wp-admin/theme-editor.php:295 wp-admin/plugin-editor.php:274 +msgid "Look Up" +msgstr "Nachschlagen" + +#: wp-admin/plugin-editor.php:128 +msgid "The Documentation menu below the editor lists the PHP functions recognized in the plugin file. Clicking Look Up takes you to a web page about that particular function." +msgstr "Das unterhalb des Editors befindliche Menü „Dokumentation“ enthält eine Auflistung aller in der Plugin-Datei erkannten PHP-Funktionen. Mit einem Klick auf „Nachschlagen“ gelangst du zu einer Seite mit weitergehenden Informationen zu der jeweils ausgewählten Funktion. " + +#. translators: %s: User's display name. +#: wp-admin/includes/misc.php:1078 +#: wp-admin/includes/class-wp-posts-list-table.php:1013 +msgid "%s is currently editing" +msgstr "%s bearbeitet momentan" + +#: wp-admin/edit-form-advanced.php:359 +msgid "You can upload and insert media (images, audio, documents, etc.) by clicking the Add Media button. You can select from the images and files already uploaded to the Media Library, or upload new media to add to your page or post. To create an image gallery, select the images to add and click the “Create a new gallery” button." +msgstr "Du kannst Mediendateien (Bilder, Audio, Dokumente, etc.) hochladen und einfügen, indem du den „Medien hinzufügen“-Button klickst. Du kannst die Bilder aus der Mediathek wählen, worin schon bereits hochgeladene Bilder abgelegt wurden, oder neue Medien hochladen. Um eine Bildergalerie zu erstellen, wählst du die Bilder aus, die erscheinen sollen und klickst auf „Neue Galerie erstellen“." + +#: wp-admin/includes/image-edit.php:70 +msgid "Image rotation is not supported by your web host." +msgstr "Die Bildrotation wird von deinem Webhost nicht unterstützt." + +#. translators: %s: URL to install the Link Manager plugin. +#: wp-admin/includes/bookmark.php:326 +msgid "If you are looking to use the link manager, please install the Link Manager plugin." +msgstr "Falls du den bekannten Linkmanager vermisst, installiere bitte das Link Manager Plugin." + +#: wp-admin/widgets.php:77 +msgid "When changing themes, there is often some variation in the number and setup of widget areas/sidebars and sometimes these conflicts make the transition a bit less smooth. If you changed themes and seem to be missing widgets, scroll down on this screen to the Inactive Widgets area, where all of your widgets and their settings will have been saved." +msgstr "Wenn du Themes wechselst, gibt es häufig Unterschiede in der Anzahl und Benennung der Widgetbereiche. Dies kann den Übergang etwas schwierig machen. Wenn du nach einem Themewechsel ein Widget vermisst, dann schaue im Bereich Inaktive Widgets, wo alle Widgets und ihre Einstellungen gespeichert sind." + +#: wp-admin/edit-tags.php:288 +msgid "Parent — Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have child categories for Bebop and Big Band. Totally optional. To create a subcategory, just choose another category from the Parent dropdown." +msgstr "Eltern – Das sind übergeordnete Kategorien, die im Gegensatz zu Schlagwörtern hierarchisch angeordnet werden können. Du kannst zum Beispiel eine Kategorie Jazz anlegen sowie die Kategorien Bebop und Big Band. Wie du willst. Da die beiden letzteren Verfeinerungen der Kategorie Jazz darstellen, wähle für beide die Kategorie Jazz als übergeordnete Kategorie aus dem Drop-down-Menü." + +#: wp-admin/edit-form-advanced.php:372 +msgid "Several boxes on this screen contain settings for how your content will be published, including:" +msgstr "Einige Boxen in dieser Ansicht enthalten Einstellungen dafür, wie der Inhalt veröffentlicht wird. Das betrifft: " + +#: wp-admin/edit-form-advanced.php:365 +msgid "Inserting Media" +msgstr "Medien einfügen" + +#: wp-admin/edit-form-advanced.php:280 +msgid "The title field and the big Post Editing Area are fixed in place, but you can reposition all the other boxes using drag and drop. You can also minimize or expand them by clicking the title bar of each box. Use the Screen Options tab to unhide more boxes (Excerpt, Send Trackbacks, Custom Fields, Discussion, Slug, Author) or to choose a 1- or 2-column layout for this screen." +msgstr "Das Titelfeld und das große Feld für den Inhalt sind fest positioniert, aber alle anderen Boxen können per Drag-and-drop neu angeordnet werden. Du kannst diese auch minimieren oder maximieren durch Klicken auf die Titelleiste jeder Box. Nutze „Ansicht anpassen“, um weitere Boxen zu aktivieren oder deaktivieren (Textauszug, Trackbacks senden, individuelle Felder, Diskussionen, Titelform und Autor) oder wähle das 1- oder 2-Spalten-Layout für diese Ansicht." + +#: wp-admin/includes/class-custom-image-header.php:128 +msgid "Don’t forget to click “Save Changes” when you’re done!" +msgstr "Vergiss nicht, auf „Änderungen speichern“ zu klicken, wenn du fertig bist!" + +#: wp-admin/includes/class-custom-background.php:91 +msgid "To use a background image, simply upload it or choose an image that has already been uploaded to your Media Library by clicking the “Choose Image” button. You can display a single instance of your image, or tile it to fill the screen. You can have your background fixed in place, so your site content moves on top of it, or you can have it scroll with your site." +msgstr "Um ein Hintergrundbild zu verwenden, lade einfach eins hoch oder wähle ein Bild aus der Mediathek durch Klick auf den „Bild wählen“-Button. Du kannst das Bild einzeln anzeigen, es kacheln oder bildschirmfüllend einstellen. Du kannst den Hintergrund auch fixieren, so dass der Inhalt der Website darüber scrollt oder das Bild mit dem Inhalt mitscrollen lassen." + +#. translators: 1: URL to browser uploader, 2: Additional link attributes. +#: wp-admin/includes/media.php:2995 +msgid "You are using the multi-file uploader. Problems? Try the browser uploader instead." +msgstr "Du benutzt den Uploader für mehrere Dateien. Treten Probleme auf? Benutze stattdessen den Browser-Uploader." + +#: wp-admin/async-upload.php:56 +msgctxt "media item" +msgid "Edit" +msgstr "Bearbeiten" + +#. translators: %s: Default text color. +#: wp-admin/includes/class-custom-image-header.php:738 +msgctxt "color" +msgid "Default: %s" +msgstr "Standard: %s" + +#: wp-admin/includes/class-wp-media-list-table.php:341 +msgctxt "column name" +msgid "Uploaded to" +msgstr "Hochgeladen zu" + +#: wp-admin/includes/class-custom-background.php:492 +#: wp-admin/includes/class-custom-image-header.php:899 +#: wp-admin/includes/ajax-actions.php:2540 +msgid "The uploaded file is not a valid image. Please try again." +msgstr "Die hochgeladene Datei ist kein gültiges Bild. Bitte erneut versuchen." + +#: wp-admin/includes/class-custom-image-header.php:631 +msgid "Choose a Custom Header" +msgstr "Wähle ein individuelles Header-Bild" + +#: wp-admin/includes/class-custom-background.php:338 +msgid "Choose a Background Image" +msgstr "Wähle ein Hintergrundbild" + +#: wp-admin/includes/class-custom-image-header.php:127 +msgid "In the Header Text section of this page, you can choose whether to display this text or hide it. You can also choose a color for the text by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Du kannst wählen, ob du den Header-Text anzeigen lassen möchtest oder nicht. Du kannst auch die Farbe der Schrift wählen. Dazu verwende bitte HTML Hex-Werte (wie: „#ff0000“ für rot) oder klicke „Farbe wählen“, um das Farbauswahlfeld zu nutzen." + +#: wp-admin/includes/class-custom-background.php:92 +msgid "You can also choose a background color by clicking the Select Color button and either typing in a legitimate HTML hex value, e.g. “#ff0000” for red, or by choosing a color using the color picker." +msgstr "Du kannst auch eine Hintergrundfarbe auswählen, indem du auf den Button „Farbe wählen“ klickst und dann einen gültigen HTML Hex-Wert eingibst, wie z. B. „#ff0000“ für Rot; oder wähle eine Farbe aus der Palette des Farbmischers." + +#: wp-admin/options-reading.php:44 +msgid "You can choose whether or not your site will be crawled by robots, ping services, and spiders. If you want those services to ignore your site, click the checkbox next to “Discourage search engines from indexing this site” and click the Save Changes button at the bottom of the screen. Note that your privacy is not complete; your site is still visible on the web." +msgstr "Du kannst hier festlegen, ob deine Website von Robots, Ping-Diensten und Spiders gecrawlt wird oder nicht. Wenn du möchtest, dass diese Dienste deine Website ignorieren, aktiviere die Checkbox bei „Suchmaschinen davon abhalten, diese Website zu indexieren“ und klicke dann auf den „Änderungen speichern“-Button unten am Bildschirm. Beachte, dass deine Privatsphäre nicht umfassend ist; deine Website ist weiterhin im Internet sichtbar." + +#: wp-admin/includes/dashboard.php:1930 +msgid "Learn more about getting started" +msgstr "Erfahre mehr über den Einstieg" + +#: wp-admin/includes/dashboard.php:1928 +msgid "Turn comments on or off" +msgstr "Kommentare ein- oder ausschalten" + +#: wp-admin/includes/dashboard.php:1919 +msgid "More Actions" +msgstr "Weitere Möglichkeiten" + +#: wp-admin/edit-comments.php:186 +msgid "In the In response to column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post." +msgstr "In der Spalte Als Antwort auf gibt es drei Elemente. Der Text ist der Name des Beitrags des zugrunde liegenden Kommentars und verlinkt zum Editor für diesen Beitrag. „Beitrag ansehen“ verlinkt direkt auf diesen Beitrag auf deiner Website. Die kleine Sprechblase mit der Nummer zeigt die Anzahl der zugelassenen Kommentare auf deiner Website, die der Beitrag erhalten hat. Wenn es noch ausstehende Kommentare gibt, dann wird ein roter Kreis mit der Nummer an ausstehenden Kommentaren angezeigt. Ein Klick auf diesen Kreis filtert die Kommentare und zeigt nur die ausstehenden Kommentare zu diesem Beitrag." + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:297 wp-admin/users.php:435 +msgid "ID #%1$s: %2$s" +msgstr "ID #%1$s: %2$s" + +#. translators: 1: User ID, 2: User login. +#: wp-admin/users.php:294 +msgid "ID #%1$s: %2$s The current user will not be deleted." +msgstr "ID #%1$s: %2$s Der angemeldete Benutzer wird nicht gelöscht." + +#. translators: Storage space that's been used. 1: Percentage of used space, 2: +#. Total space allowed in megabytes or gigabytes. +#: wp-admin/includes/ms.php:259 +msgid "Used: %1$s%% of %2$s" +msgstr "Verwendet: %1$s %% von %2$s" + +#: wp-admin/users.php:277 +msgid "Please select an option." +msgstr "Bitte wähle eine Option." + +#: wp-admin/setup-config.php:417 +msgid "After you’ve done that, click “Run the installation”." +msgstr "Nachdem du das erledigt hast, klicke auf „Installation durchführen“." + +#: wp-admin/setup-config.php:214 +msgid "Below you should enter your database connection details. If you’re not sure about these, contact your host." +msgstr "Hier sollten die Zugangsdaten zu deiner Datenbank eingetragen werden. Im Zweifel frage bitte beim Support deines Webhostings nach." + +#: wp-admin/plugin-install.php:103 +msgid "If you want to install a plugin that you’ve downloaded elsewhere, click the Upload Plugin button above the plugins list. You will be prompted to upload the .zip package, and once uploaded, you can activate the new plugin." +msgstr "Möchtest du ein Plugin installieren, das du irgendwo heruntergeladen hast, klicke bitte auf den Button „Plugin hochladen“ über der Plugin-Liste. Wähle im Dateidialog dann die passende .zip-Datei aus. Sobald diese hochgeladen wurde, kannst du das neue Plugin aktivieren." + +#: wp-admin/plugin-install.php:102 +msgid "You can also browse a user’s favorite plugins, by using the Favorites link above the plugins list and entering their WordPress.org username." +msgstr "Du kannst auch nach Plugins, die WordPress.org-Benutzer favorisiert haben, suchen. Klicke dazu auf den Link „Favoriten“ oberhalb der Plugin-Liste und gib einen WordPress.org-Benutzernamen ein, dessen Favoriten du gerne anzeigen möchtest." + +#: wp-admin/plugin-install.php:100 +msgid "If you know what you’re looking for, Search is your best bet. The Search screen has options to search the WordPress Plugin Directory for a particular Term, Author, or Tag. You can also search the directory by selecting popular tags. Tags in larger type mean more plugins have been labeled with that tag." +msgstr "Falls du weißt, wonach duch suchen möchtest, ist die Suchen-Funktion die beste Wahl. Damit kannst du im offiziellen Plugin-Verzeichnis von WordPress.org nach bestimmten Begriffen, Autoren oder (englischen) Schlagwörtern suchen. Du kannst dich auch von der Liste populärer Schlagwörter inspirieren lassen. Die Schlagwörter erscheinen umso größer, je häufiger diese vergeben wurden." + +#: wp-admin/options-reading.php:205 wp-admin/install.php:201 +msgid "It is up to search engines to honor this request." +msgstr "Es ist Sache der Suchmaschinen, dieser Bitte nachzukommen." + +#: wp-admin/options-reading.php:184 wp-admin/options-reading.php:204 +#: wp-admin/install.php:192 wp-admin/install.php:200 +msgid "Discourage search engines from indexing this site" +msgstr "Suchmaschinen davon abhalten, diese Website zu indexieren." + +#: wp-admin/options-reading.php:182 wp-admin/install.php:190 +msgid "Allow search engines to index this site" +msgstr "Erlaubt Suchmaschinen, diese Website zu indexieren." + +#: wp-admin/options-reading.php:43 wp-admin/options-reading.php:178 +#: wp-admin/options-reading.php:179 wp-admin/install.php:182 +#: wp-admin/install.php:185 +msgid "Search engine visibility" +msgstr "Sichtbarkeit für Suchmaschinen" + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1438 wp-admin/update-core.php:733 +msgid "Welcome to WordPress %1$s. You will be redirected to the About WordPress screen. If not, click here." +msgstr "Willkommen bei WordPress %1$s. Du wirst nun zur Seite „Über WordPress“ weitergeleitet. Falls nicht, klicke hier." + +#: wp-admin/includes/plugin-install.php:378 wp-admin/theme-install.php:202 +msgid "Get Favorites" +msgstr "Favoriten auflisten" + +#: wp-admin/includes/plugin-install.php:376 wp-admin/theme-install.php:199 +msgid "Your WordPress.org username:" +msgstr "Benutzername bei WordPress.org:" + +#: wp-admin/includes/plugin-install.php:372 +msgid "If you have marked plugins as favorites on WordPress.org, you can browse them here." +msgstr "Falls du (oder ein anderes Mitglied) Plugins auf WordPress.org als Favoriten markiert hast, kannst du sie hier durchsuchen." + +#: wp-admin/includes/dashboard.php:1915 +msgid "View your site" +msgstr "Sieh dir deine Website an" + +#: wp-admin/includes/dashboard.php:1912 +msgid "Add an About page" +msgstr "Erstelle eine „Über mich“-Seite" + +#: wp-admin/includes/dashboard.php:1911 +msgid "Write your first blog post" +msgstr "Schreibe deinen ersten Beitrag" + +#: wp-admin/includes/dashboard.php:1909 +msgid "Add a blog post" +msgstr "Erstelle einen Beitrag" + +#: wp-admin/includes/dashboard.php:1905 wp-admin/includes/dashboard.php:1908 +msgid "Add additional pages" +msgstr "Füge zusätzliche Seiten hinzu" + +#: wp-admin/includes/dashboard.php:1904 wp-admin/includes/dashboard.php:1907 +msgid "Edit your front page" +msgstr "Bearbeite deine Startseite" + +#: wp-admin/includes/class-wp-privacy-requests-table.php:46 +#: wp-admin/includes/dashboard.php:1901 +msgid "Next Steps" +msgstr "Nächste Schritte" + +#. translators: %s: URL to Themes panel in Customizer or Themes screen. +#: wp-admin/includes/dashboard.php:1895 +msgid "or, change your theme completely" +msgstr "oder das komplette Theme wechseln" + +#: wp-admin/includes/dashboard.php:1886 +msgid "Get Started" +msgstr "Jetzt loslegen" + +#: wp-admin/includes/dashboard.php:1882 +msgid "We’ve assembled some links to get you started:" +msgstr "Wir haben einige Links zusammengestellt, um dir den Start zu erleichtern:" + +#: wp-admin/includes/dashboard.php:1881 +msgid "Welcome to WordPress!" +msgstr "Willkommen bei WordPress!" + +#: wp-admin/includes/dashboard.php:371 +msgid "Search engines discouraged" +msgstr "Suchmaschinen ausgeschlossen" + +#. translators: 1: Link to documentation on child themes, 2: Name of parent +#. theme. +#: wp-admin/includes/class-wp-themes-list-table.php:285 +msgid "This child theme requires its parent theme, %2$s." +msgstr "Dieses Child-Theme benötigt das Eltern-Theme %2$s, um zu funktionieren." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:110 +msgctxt "Plugin Installer" +msgid "Favorites" +msgstr "Favoriten" + +#: wp-admin/theme-install.php:119 +msgid "To install the theme so you can preview it with your site’s content and customize its theme options, click the \"Install\" button at the top of the left-hand pane. The theme files will be downloaded to your website automatically. When this is complete, the theme is now available for activation, which you can do by clicking the \"Activate\" link, or by navigating to your Manage Themes screen and clicking the \"Live Preview\" link under any installed theme’s thumbnail image." +msgstr "Um das Theme zu installieren, sodass du es mit dem Inhalt deiner Website in der Vorschau anschauen und die Theme-Optionen anpassen kannst, klicke bitte auf den Button „Installieren“ oben im linken Fensterbereich. Die Theme-Dateien werden dadurch automatisch auf deine Website heruntergeladen. Wenn dies abgeschlossen ist, steht das Theme zur Aktivierung bereit. Das machst du, indem du auf den Link „Aktivieren“ klickst oder indem du zum Bildschirm in dem die „Themes“ verwaltet werden, navigierst und auf den Link „Live-Vorschau“ unten, auf einem der Miniaturansichtsbilder eines installierten Themes klickst." + +#: wp-admin/includes/widgets.php:262 +msgctxt "widget" +msgid "Add" +msgstr "Hinzufügen" + +#: wp-admin/includes/widgets.php:261 +msgctxt "widget" +msgid "Edit" +msgstr "Bearbeiten" + +#: wp-admin/includes/theme-install.php:117 +msgid "Search by tag" +msgstr "Schlagwortsuche" + +#: wp-admin/includes/theme-install.php:114 +msgid "Search by author" +msgstr "Suche nach Autor" + +#: wp-admin/includes/theme-install.php:111 +#: wp-admin/includes/theme-install.php:123 +msgid "Search by keyword" +msgstr "Stichwortsuche" + +#: wp-admin/includes/theme-install.php:101 +msgid "Type of search" +msgstr "Art der Suche" + +#: wp-admin/includes/class-wp-screen.php:1064 +msgid "Screen Options Tab" +msgstr "Tab „Ansicht anpassen“" + +#: wp-admin/includes/class-wp-screen.php:870 +msgid "Contextual Help Tab" +msgstr "Kontextueller Hilfe-Tab" + +#. translators: %s: Link name. +#. translators: %s: Plugin name. +#. translators: %s: Taxonomy term name. +#. translators: %s: User login. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#. translators: %s: Theme name. +#. translators: %s: Site URL. +#: wp-admin/includes/class-wp-links-list-table.php:175 +#: wp-admin/includes/class-wp-plugins-list-table.php:958 +#: wp-admin/includes/class-wp-terms-list-table.php:367 +#: wp-admin/includes/class-wp-users-list-table.php:494 +#: wp-admin/includes/class-wp-media-list-table.php:386 +#: wp-admin/includes/class-wp-posts-list-table.php:935 +#: wp-admin/update-core.php:417 wp-admin/update-core.php:581 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:407 +#: wp-admin/includes/class-wp-ms-users-list-table.php:241 +msgid "Select %s" +msgstr "%s auswählen" + +#: wp-admin/includes/class-wp-comments-list-table.php:850 +msgid "Select comment" +msgstr "Kommentar auswählen" + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:622 +msgid "Tags can be selectively converted to categories using the tag to category converter." +msgstr "Schlagwörter können selektiv mithilfe des Schlagwort-zu-Kategorie-Konverters in Kategorien umgewandelt werden." + +#: wp-admin/edit-tags.php:260 +msgid "You can delete Link Categories in the Bulk Action pull-down, but that action does not delete the links within the category. Instead, it moves them to the default Link Category." +msgstr "Du kannst Link-Kategorien über das Drop-down-Menü Mehrfachaktionen löschen, jedoch löscht diese Aktion nicht die Links innerhalb der Kategorie. Stattdessen werden sie in die Standard-Linkkategorie verschoben." + +#: wp-admin/edit-form-advanced.php:322 +msgid "Creating a Page is very similar to creating a Post, and the screens can be customized in the same way using drag and drop, the Screen Options tab, and expanding/collapsing boxes as you choose. This screen also has the distraction-free writing space, available in both the Visual and Text modes via the Fullscreen buttons. The Page editor mostly works the same as the Post editor, but there are some Page-specific features in the Page Attributes box." +msgstr "Eine Seite zu erstellen, ist sehr ähnlich wie das Erstellen eines Beitrags und der Bildschirm kann genauso per Drag-and-drop, dem Tab „Ansicht anpassen“ und durch Auf- und Zuklappen der Boxen individuell angepasst werden. Über den Vollbild-Button gelangst du in den ablenkungsfreien Schreibmodus, in dem du sowohl den visuellen als auch den Text-Editor verwenden kannst. Der Seiten-Editor funktioniert im Wesentlichen wie der Beitrags-Editor, aber in der Box Seiten-Attribute gibt es einige seitenspezifische Einstellungsmöglichkeiten." + +#: wp-admin/includes/class-custom-image-header.php:551 +msgid "You can select an image to be shown at the top of your site by uploading from your computer or choosing from your media library. After selecting an image you will be able to crop it." +msgstr "Du kannst ein Bild auswählen, welches im oberen Bereich deiner Website angezeigt wird, indem du es vom Computer hochlädst oder eines aus der Mediathek wählst. Nach dem Auswählen kannst du das Bild zuschneiden." + +#: wp-admin/menu-header.php:287 +msgid "Skip to main content" +msgstr "Zum Hauptinhalt springen" + +#: wp-admin/includes/class-custom-image-header.php:109 +msgid "You can set a custom image header for your site. Simply upload the image and crop it, and the new header will go live immediately. Alternatively, you can use an image that has already been uploaded to your Media Library by clicking the “Choose Image” button." +msgstr "Du kannst ein individuelles Header-Bild für deine Website festlegen. Lade einfach ein Bild hoch und schneide es zu. Das neue Header-Bild wird sofort übernommen. Alternativ kannst du ein Bild, das schon in der Mediathek abgelegt wurde, durch Klick auf den Button: „Bild wählen“ auswählen." + +#: wp-admin/includes/class-custom-image-header.php:878 +msgid "Skip Cropping, Publish Image as Is" +msgstr "Zuschneiden abbrechen und das Bild publizieren, wie es ist." + +#: wp-admin/includes/class-custom-background.php:339 +#: wp-admin/includes/class-custom-image-header.php:632 +msgid "Choose Image" +msgstr "Bild wählen" + +#: wp-admin/includes/class-custom-background.php:336 +#: wp-admin/includes/class-custom-image-header.php:628 +msgid "Or choose an image from your media library:" +msgstr "Oder wähle ein Bild aus der Mediathek: " + +#: wp-admin/includes/class-custom-background.php:326 +#: wp-admin/includes/class-custom-image-header.php:549 +msgid "Select Image" +msgstr "Bild wählen" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:394 +#: wp-admin/theme-install.php:527 +msgid "Collapse" +msgstr "Einklappen" + +#: wp-admin/includes/class-custom-image-header.php:112 +msgid "If you don’t want a header image to be displayed on your site at all, click the “Remove Header Image” button at the bottom of the Header Image section of this page. If you want to re-enable the header image later, you just have to select one of the other image options and click “Save Changes”." +msgstr "Wenn du nicht möchtest, dass das Header-Bild auf deiner Website angezeigt wird, klicke „Bild entfernen“ unterhalb der Bildauswahl auf dieser Seite. Falls du es wieder aktivieren möchtest, brauchst du lediglich eins der Bilder auszuwählen und die Änderungen speichern." + +#: wp-admin/media.php:70 +msgid "You attempted to edit an item that isn’t an attachment. Please go back and try again." +msgstr "Du hast versucht, ein Element zu bearbeiten, das kein Anhang ist. Bitte kehre zurück und versuche es erneut." + +#: wp-admin/includes/class-wp-theme-install-list-table.php:316 +#: wp-admin/includes/class-wp-theme-install-list-table.php:474 +msgid "This theme is already installed and is up to date" +msgstr "Dieses Theme ist schon installiert und aktuell." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:602 +msgctxt "plugin" +msgid "Installed" +msgstr "Installiert" + +#: wp-admin/themes.php:179 +msgid "Previewing and Customizing" +msgstr "Vorschau und Anpassen" + +#: wp-admin/theme-install.php:124 +msgid "Previewing and Installing" +msgstr "Vorschau und Installation" + +#: wp-admin/theme-install.php:118 +msgid "Once you have generated a list of themes, you can preview and install any of them. Click on the thumbnail of the theme you’re interested in previewing. It will open up in a full-screen Preview page to give you a better idea of how that theme will look." +msgstr "Sobald du eine Liste von Themes generiert hast, kannst du diese in der Vorschau ansehen und eins davon installieren. Klicke auf das Vorschaubild des Themes, das dich interessiert, um die Vorschau anzuzeigen. Es öffnet sich ein Popup mit der Vorschau, um dir einen besseren Eindruck zu geben, wie deine Website mit dem Theme aussehen könnte." + +#: wp-admin/includes/media.php:3012 +msgid "You are using the browser’s built-in file uploader. The WordPress uploader includes multiple file selection and drag and drop capability. Switch to the multi-file uploader." +msgstr "Du benutzt den im Browser integrierten Datei-Uploader. Der WordPress-Uploader beinhaltet eine Mehrfachauswahl und eine Drag-and-drop-Funktion. Zum WordPress-Uploader wechseln." + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-theme-install-list-table.php:336 +msgid "Preview %s" +msgstr "Vorschau %s" + +#: wp-admin/tools.php:49 +msgid "The Categories and Tags Converter link on this screen will take you to the Import screen, where that Converter is one of the plugins you can install. Once that plugin is installed, the Activate Plugin & Run Importer link will take you to a screen where you can choose to convert tags into categories or vice versa." +msgstr "Wenn du auf den Link des Kategorie- und Schlagwort-Konverters klickst, wirst du auf eine Seite geleitet, auf welcher du den Konverter als Plugin installieren kannst. Sobald der Konverter als Plugin installiert wurde, kannst du ihn benutzen, indem du auf dieser Seite erneut auf den Link des Konverters klickst. Anschließend kannst du Kategorien in Schlagwörter umwandeln (oder umgekehrt)." + +#: wp-admin/tools.php:48 +msgid "Categories have hierarchy, meaning that you can nest sub-categories. Tags do not have hierarchy and cannot be nested. Sometimes people start out using one on their posts, then later realize that the other would work better for their content." +msgstr "Kategorien sind hierarchisch, das bedeutet, du kannst Unterkategorien anlegen. Schlagwörter sind nicht hierarchisch und können nicht untergeordnet werden. " + +#. translators: %s: URL to General Settings screen. +#: wp-admin/includes/class-custom-image-header.php:123 +msgid "For most themes, the header text is your Site Title and Tagline, as defined in the General Settings section." +msgstr "Bei den meisten Themes ist der Header-Text gleichzeitig der Website-Titel und Untertitel deiner Website, wie es im Abschnitt Allgemeine Einstellungen definiert ist." + +#: wp-admin/includes/class-custom-image-header.php:111 +msgid "If your theme has more than one default header image, or you have uploaded more than one custom header image, you have the option of having WordPress display a randomly different image on each page of your site. Click the “Random” radio button next to the Uploaded Images or Default Images section to enable this feature." +msgstr "Falls dein Theme mehr als ein Standard-Header-Bild hat oder du mehr als ein individuelles Bild hochgeladen hast, hast du die Wahl, WordPress ein zufällig ausgewähltes anderes Bild auf jeder Seite deiner Website anzeigen zu lassen. Klicke dazu den Radiobutton „Zufällig“ neben dem Bereich Bild hochladen oder Standard-Bild, um dieses Feature zu aktivieren." + +#: wp-admin/includes/class-custom-image-header.php:110 +msgid "Some themes come with additional header images bundled. If you see multiple images displayed, select the one you’d like and click the “Save Changes” button." +msgstr "Manche Themes bringen gleich mehrere zusätzliche Header-Bilder mit. Wenn dir diese Bilder angezeigt werden, wähle einfach dasjenige aus, das dir gefällt und klicke anschließend auf den Button „Speichern“." + +#: wp-admin/includes/class-custom-image-header.php:100 +msgid "You can choose from the theme’s default header images, or use one of your own. You can also customize how your Site Title and Tagline are displayed." +msgstr "Du kannst aus den Standard-Header-Bildern wählen oder ein eigenes Bild nutzen. Du kannst auch definieren, wie der Website-Titel und die Beschreibung dargestellt werden sollen." + +#: wp-admin/includes/class-custom-image-header.php:99 +msgid "This screen is used to customize the header section of your theme." +msgstr "Dieser Bildschirm wird verwendet, um den Header des Themes anpassen." + +#: wp-admin/install.php:293 wp-admin/install.php:306 +msgid "Configuration Error" +msgstr "Konfigurationsfehler" + +#: wp-admin/media-new.php:54 +msgid "Revert to the Browser Uploader by clicking the link below the drag and drop box." +msgstr "Kehre zum Browser-Uploader zurück, indem du den Link unter der Drag-and-drop-Box klickst." + +#: wp-admin/users.php:487 wp-admin/network/users.php:250 +msgid "User deleted." +msgstr "Benutzer gelöscht." + +#: wp-admin/includes/class-core-upgrader.php:36 wp-admin/includes/file.php:1546 +#: wp-admin/includes/file.php:1673 +msgid "Could not copy files. You may have run out of disk space." +msgstr "Dateien konnten nicht kopiert werden. Du hast zu wenig Speicherplatz." + +#: wp-admin/includes/theme-install.php:140 +msgid "Find a theme based on specific features." +msgstr "Finde ein Theme basierend auf spezifischen Eigenschaften." + +#: wp-admin/includes/theme-install.php:95 +msgid "Search for themes by keyword." +msgstr "Suche nach Themes per Stichwort." + +#: wp-admin/setup-config.php:198 +msgid "In all likelihood, these items were supplied to you by your Web Host. If you don’t have this information, then you will need to contact them before you can continue. If you’re all ready…" +msgstr "Wahrscheinlich kannst du diese Informationen in deinem Webhosting-Konto finden. Wenn du sie nicht parat hast, kontaktiere die Firma, bei der deine Website gehostet wird, bevor du weitermachst." + +#: wp-admin/theme-editor.php:246 +msgid "This theme is broken." +msgstr "Dieses Theme ist fehlerhaft." + +#: wp-admin/includes/class-custom-image-header.php:632 +msgid "Set as header" +msgstr "Als Header-Bild festlegen" + +#: wp-admin/includes/class-custom-background.php:339 +msgid "Set as background" +msgstr "Als Hintergrund festlegen" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-upgrader-skin.php:94 +msgid "Customize “%s”" +msgstr "Anpassen „%s“" + +#: wp-admin/install.php:159 wp-admin/user-new.php:481 wp-admin/user-new.php:485 +#: wp-admin/user-new.php:532 wp-admin/user-new.php:556 +#: wp-admin/user-edit.php:454 wp-admin/user-edit.php:502 +msgid "(required)" +msgstr "(erforderlich)" + +#: wp-admin/link.php:111 +msgid "Edit Link" +msgstr "Link bearbeiten" + +#: wp-admin/includes/user.php:151 +msgid "Error: Please enter a nickname." +msgstr "Fehler: Bitte gib einen Spitznamen ein." + +#: wp-admin/credits.php:54 +msgid "https://wordpress.org/about/" +msgstr "https://wordpress.org/about/" + +#: wp-admin/includes/class-wp-list-table.php:1163 +#: wp-admin/includes/nav-menu.php:663 wp-admin/includes/nav-menu.php:895 +#: wp-admin/update-core.php:329 wp-admin/update-core.php:449 +#: wp-admin/update-core.php:491 wp-admin/update-core.php:613 +msgid "Select All" +msgstr "Alle auswählen" + +#: wp-admin/includes/meta-boxes.php:175 wp-admin/js/post.js:866 +msgid "Public, Sticky" +msgstr "Öffentlich, oben gehalten" + +#: wp-admin/includes/meta-boxes.php:108 wp-admin/includes/meta-boxes.php:143 +#: wp-admin/js/post.js:789 wp-admin/js/post.js:791 +msgid "Privately Published" +msgstr "Privat veröffentlicht" + +#: wp-admin/includes/meta-boxes.php:59 wp-admin/js/post.js:820 +msgid "Save as Pending" +msgstr "Als ausstehend speichern" + +#: wp-admin/includes/media.php:1382 wp-admin/includes/media.php:2956 +msgid "Enter a link URL or click above for presets." +msgstr "Gib eine Web-Adresse ein oder klick oben, um Vorgaben zu verwenden." + +#: wp-admin/includes/media.php:1379 +msgid "Link URL" +msgstr "Web-Adresse" + +#: wp-admin/includes/image-edit.php:132 +msgid "Scale" +msgstr "Skalieren" + +#: wp-admin/includes/meta-boxes.php:862 +msgid "No comments yet." +msgstr "Bisher keine Kommentare." + +#: wp-admin/includes/class-wp-themes-list-table.php:279 +#: wp-admin/includes/class-wp-theme-install-list-table.php:509 +#: wp-admin/includes/plugin-install.php:654 +msgid "Version:" +msgstr "Version:" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:392 +#: wp-admin/theme-install.php:69 wp-admin/theme-install.php:525 +msgid "Collapse Sidebar" +msgstr "Seitenleiste einklappen" + +#: wp-admin/includes/class-wp-plugins-list-table.php:463 +msgid "Plugin" +msgstr "Plugin" + +#: wp-admin/includes/media.php:2545 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:368 +msgid "Actions" +msgstr "Aktionen" + +#: wp-admin/includes/class-wp-media-list-table.php:174 +#: wp-admin/includes/class-wp-media-list-table.php:752 +#: wp-admin/includes/class-wp-comments-list-table.php:366 +#: wp-admin/includes/class-wp-comments-list-table.php:742 +#: wp-admin/includes/class-wp-posts-list-table.php:410 +#: wp-admin/includes/class-wp-posts-list-table.php:1368 +msgid "Restore" +msgstr "Wiederherstellen" + +#. translators: %s: Number of words. +#: wp-admin/edit-form-advanced.php:612 +msgid "Word count: %s" +msgstr "Wortanzahl: %s" + +#: wp-admin/edit-comments.php:308 wp-admin/edit-comments.php:314 +msgid "Edit comment" +msgstr "Kommentar bearbeiten" + +#: wp-admin/options-general.php:337 wp-admin/options-general.php:374 +msgid "Preview:" +msgstr "Vorschau:" + +#: wp-admin/includes/theme-install.php:103 +#: wp-admin/includes/plugin-install.php:333 +msgid "Keyword" +msgstr "Stichwort" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-theme-upgrader.php:93 +msgid "The parent theme could not be found. You will need to install the parent theme, %s, before you can use this child theme." +msgstr "Das Eltern-Theme konnte nicht gefunden werden. Du musst das Eltern-Theme installieren, %s, bevor du dieses Child-Theme benutzen kannst." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:91 +msgid "Successfully installed the parent theme, %1$s %2$s." +msgstr "Das Eltern-Theme wurde erfolgreich installiert, %1$s %2$s." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:89 +msgid "The parent theme, %1$s %2$s, is currently installed." +msgstr "Das Eltern-Theme, %1$s %2$s, ist momentan installiert." + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:87 +msgid "Preparing to install %1$s %2$s…" +msgstr "Vorbereiten der Installation %1$s %2$s …" + +#: wp-admin/includes/class-theme-upgrader.php:85 +msgid "This theme requires a parent theme. Checking if it is installed…" +msgstr "Dieses Theme braucht ein Eltern-Theme. Überprüfung, ob es installiert ist …" + +#: wp-admin/includes/class-custom-image-header.php:710 +msgid "Show header text with your image." +msgstr "Header-Text mit deinem Bild anzeigen." + +#: wp-admin/includes/class-custom-image-header.php:119 +#: wp-admin/includes/class-custom-image-header.php:702 +#: wp-admin/includes/class-custom-image-header.php:707 +msgid "Header Text" +msgstr "Header-Text" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number, 5: Update URL, 6: Additional link attributes. +#: wp-admin/includes/theme.php:230 wp-admin/includes/update.php:499 +#: wp-admin/includes/update.php:691 +msgid "There is a new version of %1$s available. View version %4$s details or update now." +msgstr "Eine neue Version von %1$s ist verfügbar. Details der Version %4$s ansehen oder jetzt aktualisieren." + +#. translators: %s: Plugin author. +#: wp-admin/includes/plugin.php:214 +msgid "By %s." +msgstr "Von %s." + +#: wp-admin/includes/meta-boxes.php:848 wp-admin/includes/template.php:494 +msgid "Add Comment" +msgstr "Kommentar hinzufügen" + +#: wp-admin/includes/template.php:455 +msgid "Add new Comment" +msgstr "Neuen Kommentar hinzufügen" + +#. Author URI of the plugin +msgid "http://ma.tt/" +msgstr "https://ma.tt/" + +#. Description of the plugin +msgid "This is not just a plugin, it symbolizes the hope and enthusiasm of an entire generation summed up in two words sung most famously by Louis Armstrong: Hello, Dolly. When activated you will randomly see a lyric from Hello, Dolly in the upper right of your admin screen on every page." +msgstr "Dies ist nicht nur ein Plugin, es symbolisiert in zwei Worten, gesungen von Louis Amstrong, die Hoffnung und den Enthusiasmus einer ganzen Generation: Hello, Dolly. Nach Aktivierung werden im Zufallsprinzip aus dem Liedtext von „Hello, Dolly“ Zeilen oben rechts im Administrationsbereich angezeigt." + +#. Plugin Name of the plugin +msgid "Hello Dolly" +msgstr "Hello Dolly" + +#: wp-admin/index.php:92 +msgid "Welcome — Shows links for some of the most common tasks when setting up a new site." +msgstr "Willkommen – Zeigt Links für einige der häufigsten Aufgaben beim Anlegen einer neuen Website." + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:217 wp-admin/includes/update.php:678 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this theme." +msgstr "Eine neue Version von %1$s ist verfügbar Details der Version %4$s ansehen. Eine automatische Aktualisierung ist für dieses Theme nicht verfügbar." + +#: wp-admin/install.php:108 wp-admin/install.php:357 +msgctxt "Howdy" +msgid "Welcome" +msgstr "Willkommen" + +#: wp-admin/ms-delete-site.php:131 +msgid "Delete My Site Permanently" +msgstr "Meine Website unwiderruflich löschen" + +#. translators: %s: Site address. +#: wp-admin/ms-delete-site.php:126 +msgid "I'm sure I want to permanently delete my site, and I am aware I can never get it back or use %s again." +msgstr "Ich bin mir sicher, dass ich meine Website endgültig deaktivieren möchte. Und ich bin mir bewusst, dass ich sie nie wieder zurückbekommen werde oder %s jemals wiederverwenden kann." + +#: wp-admin/ms-delete-site.php:117 +msgid "Remember, once deleted your site cannot be restored." +msgstr "Bedenke bitte, eine gelöschte Website kann nicht wiederhergestellt werden." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:112 +msgid "If you do not want to use your %s site any more, you can delete it using the form below. When you click Delete My Site Permanently you will be sent an email with a link in it. Click on this link to delete your site." +msgstr "Wenn du deine %s Website nicht mehr nutzen möchtest, kannst du sie löschen, indem du das untenstehende Formular benutzt. Wenn du auf Meine Website unwiderruflich löschen klickst, wird dir eine E-Mail mit einem Link gesendet. Klicke auf diesen Link, um deine Website zu löschen." + +#: wp-admin/ms-delete-site.php:103 +msgid "Thank you. Please check your email for a link to confirm your action. Your site will not be deleted until this link is clicked." +msgstr "Danke. Bitte überprüfe deinen Posteingang auf eine Bestätigungs-E-Mail. Deine Website wird erst dann gelöscht, wenn der darin enthaltene Bestätigungslink angeklickt wird." + +#: wp-admin/ms-delete-site.php:31 +msgid "Sorry, the link you clicked is stale. Please select another option." +msgstr "Der Link, den du geklickt hast, ist nicht mehr gültig. Bitte wähle eine andere Option." + +#. translators: %s: Network title. +#: wp-admin/ms-delete-site.php:26 +msgid "Thank you for using %s, your site has been deleted. Happy trails to you until we meet again." +msgstr "Danke für das Benutzen von %s, deine Website wurde gelöscht. Wir wünschen dir eine schöne Reise, auf dass wir uns bald wieder sehen." + +#. translators: My Sites label. +#: wp-admin/includes/ms.php:765 +msgid "Primary Site" +msgstr "Primäre Website" + +#: wp-admin/includes/ms.php:655 +msgid "British English" +msgstr "Britisches Englisch" + +#: wp-admin/includes/ms.php:651 +msgid "American English" +msgstr "Amerikanisches Englisch" + +#: wp-admin/includes/ms.php:608 +msgid "View Site" +msgstr "Website anzeigen" + +#: wp-admin/includes/ms.php:607 +msgid "Visit Dashboard" +msgstr "Dashboard besuchen" + +#: wp-admin/includes/ms.php:601 +msgid "Your Sites" +msgstr "Deine Websites" + +#: wp-admin/includes/ms.php:599 +msgid "If you reached this screen by accident and meant to visit one of your own sites, here are some shortcuts to help you find your way." +msgstr "Falls du diese Ansicht aus Versehen aufgerufen hast und eigentlich eine deiner eigenen Websites besuchen wolltest, hier ein paar hoffentlich hilfreiche Links." + +#. translators: 1: Site title. +#: wp-admin/includes/ms.php:587 wp-admin/includes/ms.php:596 +msgid "You attempted to access the \"%1$s\" dashboard, but you do not currently have privileges on this site. If you believe you should be able to access the \"%1$s\" dashboard, please contact your network administrator." +msgstr "Du hast versucht, auf das „%1$s“ Dashboard zuzugreifen, hast dazu aber nicht ausreichende Rechte. Falls du glaubst, du müsstest Zugriff auf das „%1$s“ Dashboard haben, dann kontaktiere bitte den Netzwerk-Administrator." + +#: wp-admin/includes/ms.php:302 +msgid "MB (Leave blank for network default)" +msgstr "MB (Leer lassen für Netzwerk-Standardwert)" + +#. translators: New admin email address notification email subject. %s: Site +#. title. +#: wp-admin/includes/misc.php:1410 +msgid "[%s] New Admin Email Address" +msgstr "[%s] Neue Administrator-E-Mail-Adresse" + +#: wp-admin/includes/class-wp-debug-data.php:200 +#: wp-admin/includes/class-wp-debug-data.php:210 +#: wp-admin/includes/class-wp-debug-data.php:219 +#: wp-admin/includes/class-wp-debug-data.php:228 +#: wp-admin/includes/class-wp-debug-data.php:237 +#: wp-admin/includes/class-wp-debug-data.php:277 +#: wp-admin/includes/class-wp-debug-data.php:282 +#: wp-admin/includes/class-wp-debug-data.php:292 +#: wp-admin/includes/class-wp-debug-data.php:297 +#: wp-admin/includes/class-wp-debug-data.php:548 +#: wp-admin/includes/class-wp-debug-data.php:1137 +#: wp-admin/includes/class-wp-debug-data.php:1225 +msgid "Disabled" +msgstr "Deaktiviert" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:547 +msgid "Paused (%s)" +msgid_plural "Paused (%s)" +msgstr[0] "(%s) angehalten" +msgstr[1] "(%s) angehalten" + +#: wp-admin/my-sites.php:112 +msgid "Global Settings" +msgstr "Globale Einstellungen" + +#: wp-admin/my-sites.php:77 +msgid "You must be a member of at least one site to use this page." +msgstr "Du musst Mitglied von mindestens einer Website (des Netzwerks) sein, um diese Seite nutzen zu können." + +#: wp-admin/my-sites.php:33 +msgid "The primary site you chose does not exist." +msgstr "Die von dir gewählte primäre Website existiert nicht." + +#: wp-admin/setup-config.php:244 +msgid "If you want to run multiple WordPress installations in a single database, change this." +msgstr "Falls du mehrere WordPress-Installationen innerhalb einer Datenbank aufbauen möchtest, ändere diesen Eintrag." + +#: wp-admin/setup-config.php:242 +msgid "Table Prefix" +msgstr "Tabellen-Präfix" + +#: wp-admin/setup-config.php:232 +msgid "Database Host" +msgstr "Datenbank-Host" + +#: wp-admin/setup-config.php:228 +msgctxt "example password" +msgid "password" +msgstr "Passwort" + +#: wp-admin/setup-config.php:223 +msgctxt "example username" +msgid "username" +msgstr "Benutzername" + +#: wp-admin/setup-config.php:217 +msgid "Database Name" +msgstr "Datenbank-Name" + +#: wp-admin/setup-config.php:200 +msgid "Let’s go!" +msgstr "Los geht's!" + +#: wp-admin/setup-config.php:170 +msgid "Table prefix (if you want to run more than one WordPress in a single database)" +msgstr "Tabellen-Präfix (falls du mehrere WordPress-Installationen innerhalb einer Datenbank aufbauen möchtest)" + +#: wp-admin/includes/class-wp-debug-data.php:847 wp-admin/setup-config.php:169 +msgid "Database host" +msgstr "Datenbank-Host" + +#: wp-admin/setup-config.php:168 +msgid "Database password" +msgstr "Datenbank-Passwort" + +#: wp-admin/includes/class-wp-debug-data.php:841 wp-admin/setup-config.php:167 +msgid "Database username" +msgstr "Datenbank-Benutzername" + +#: wp-admin/includes/class-wp-debug-data.php:853 wp-admin/setup-config.php:166 +msgid "Database name" +msgstr "Datenbank-Name" + +#: wp-admin/setup-config.php:164 +msgid "Welcome to WordPress. Before getting started, we need some information on the database. You will need to know the following items before proceeding." +msgstr "Willkommen bei WordPress. Bevor wir anfangen, brauchen wir einige Informationen zur Datenbank. Folgende Daten werden benötigt:" + +#: wp-admin/setup-config.php:114 +msgid "WordPress › Setup Configuration File" +msgstr "WordPress › Setup-Konfigurationsdatei" + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:76 +msgid "The file %1$s already exists one level above your WordPress installation. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Die Datei %1$s existiert bereits in einem Ordner oberhalb der WordPress-Installation. Falls du die Konfiguration erneut vornehmen musst, dann lösche bitte erst die Datei und starte eine erneute Installation." + +#. translators: 1: wp-config.php, 2: install.php +#: wp-admin/setup-config.php:63 +msgid "The file %1$s already exists. If you need to reset any of the configuration items in this file, please delete it first. You may try installing now." +msgstr "Die Datei %1$s existiert bereits. Falls du die Konfiguration erneut vornehmen musst, dann lösche bitte erst diese Datei und versuche eine neue Installation." + +#. translators: %s: wp-config-sample.php +#: wp-admin/setup-config.php:52 +msgid "Sorry, I need a %s file to work from. Please re-upload this file to your WordPress installation." +msgstr "Die Datei %s ist erforderlich. Bitte lade diese erneut zu deiner WordPress-Installation hoch." + +#. translators: %s: wp-config.php +#: wp-admin/maint/repair.php:35 +msgid "To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page." +msgstr "Um dieser Seite zu erlauben, Datenbank-Probleme automatisch zu reparieren, füge bitte deiner %s Datei folgende Zeile hinzu. Und danach lade diese Seite erneut." + +#: wp-admin/includes/class-wp-comments-list-table.php:219 +msgid "No comments awaiting moderation." +msgstr "Keine Kommentare warten auf Moderation." + +#: wp-admin/includes/plugin-install.php:575 +msgctxt "Plugin installer section title" +msgid "Other Notes" +msgstr "Andere Notizen" + +#: wp-admin/includes/plugin-install.php:573 +msgctxt "Plugin installer section title" +msgid "Changelog" +msgstr "Änderungsprotokoll" + +#: wp-admin/includes/plugin-install.php:572 +msgctxt "Plugin installer section title" +msgid "Screenshots" +msgstr "Screenshots" + +#: wp-admin/includes/plugin-install.php:571 +msgctxt "Plugin installer section title" +msgid "FAQ" +msgstr "FAQ" + +#: wp-admin/includes/plugin-install.php:570 +msgctxt "Plugin installer section title" +msgid "Installation" +msgstr "Installation" + +#: wp-admin/includes/plugin-install.php:569 +msgctxt "Plugin installer section title" +msgid "Description" +msgstr "Beschreibung" + +#: wp-admin/includes/plugin-install.php:702 +msgid "Plugin Homepage »" +msgstr "Plugin-Homepage »" + +#: wp-admin/export.php:50 +msgid "You can export a file of your site’s content in order to import it into another installation or platform. The export file will be an XML file format called WXR. Posts, pages, comments, custom fields, categories, and tags can be included. You can choose for the WXR file to include only certain posts or pages by setting the dropdown filters to limit the export by category, author, date range by month, or publishing status." +msgstr "Die Inhalte deiner Website können in eine Datei exportiert werden, um diese wieder in eine andere Installation zu importieren. Das Format der Export-Datei ist ein spezielles XML-Format, auch WXR (WordPress eXtended Rss) genannt. Beim Export können Beiträge, Seiten, Kommentare, individuelle Felder, Kategorien und Schlagwörter inkludiert werden. Du kannst die Inhalte der WXR-Datei vorab auch filtern, indem du die Export-Daten z. B. auf Seiten, Beiträge und/oder Medien beschränkst und diese wiederum per Kategorie, Autor, Zeitraum oder Status weiter eingrenzt." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:114 +msgid "Failed to repair the %1$s table. Error: %2$s" +msgstr "Reparieren der %1$s Tabelle fehlgeschlagen. Fehler: %2$s" + +#: wp-admin/user-new.php:234 +msgid "New users will receive an email letting them know they’ve been added as a user for your site. This email will also contain their password. Check the box if you don’t want the user to receive a welcome email." +msgstr "Neue Benutzer erhalten eine E-Mail, um sie wissen zu lassen, dass sie als Benutzer deiner Website hinzugefügt wurden. Diese E-Mail wird auch ihr Passwort beinhalten. Aktiviere das Kontrollkästchen, wenn du nicht willst, dass eine Willkommens-Nachricht verschickt wird." + +#: wp-admin/includes/image-edit.php:251 +msgid "There are unsaved changes that will be lost. 'OK' to continue, 'Cancel' to return to the Image Editor." +msgstr "Es sind ungesicherte Änderungen vorhanden, welche verloren gehen. ‚OK‘ zum Fortfahren, ‚Abbrechen‘, um zum Bildeditor zurückzukehren." + +#: wp-admin/options-writing.php:34 +msgid "Post via email settings allow you to send your WordPress installation an email with the content of your post. You must set up a secret email account with POP3 access to use this, and any mail received at this address will be posted, so it’s a good idea to keep this address very secret." +msgstr "Die Einstellungen zu „per E-Mail veröffentlichen“ geben dir die Möglichkeit, deine Inhalte per E-Mail zu veröffentlichen. Dazu brauchst du ein geheimes E-Mail-Konto mit POP3-Zugriff. Jede E-Mail, die dort im Postfach landet, wird hier auf deiner Website veröffentlicht. Es empfiehlt sich, diese E-Mail-Adresse geheim zu halten und in diesem Postfach keine persönlichen Daten zu speichern." + +#: wp-admin/users.php:45 +msgid "You can filter the list of users by User Role using the text links above the users list to show All, Administrator, Editor, Author, Contributor, or Subscriber. The default view is to show all users. Unused User Roles are not listed." +msgstr "Du kannst die Liste der Benutzer nach ihrer Rolle filtern. Benutze die Links über der Liste, um alle Benutzer, Administratoren, Editoren, Autoren, Beitragende oder Abonnenten anzuzeigen. Standardmäßig werden alle Benutzer angezeigt. Unbenutzte Rollen werden nicht aufgezählt." + +#: wp-admin/import.php:25 +msgid "In previous versions of WordPress, all importers were built-in. They have been turned into plugins since most people only use them once or infrequently." +msgstr "In vorherigen Versionen von WordPress waren alle Importer fest eingebaut. Diese wurden zu Plugins gemacht, da die meisten Leute sie nur einmal bzw. sehr selten benutzen." + +#. translators: %s: URL to view the autosave. +#: wp-admin/edit-form-advanced.php:251 +msgid "There is an autosave of this post that is more recent than the version below. View the autosave" +msgstr "Es ist eine automatisch gespeicherte Version dieses Beitrags verfügbar, welche neuer ist als die angezeigte Version. Die automatisch gespeicherte Version anzeigen" + +#: wp-admin/options-discussion.php:220 +msgid "An avatar is an image that follows you from weblog to weblog appearing beside your name when you comment on avatar enabled sites. Here you can enable the display of avatars for people who comment on your site." +msgstr "Ein Avatar ist ein Bild, das dich von Website zu Website begleitet und neben deinem Namen erscheint, wenn du auf Websites kommentierst, die Avatare unterstützen. Hier kannst du aktivieren, dass von Leuten, die auf deiner Website kommentieren, Avatare angezeigt werden." + +#: wp-admin/includes/class-custom-image-header.php:838 +#: wp-admin/includes/class-custom-image-header.php:981 +#: wp-admin/includes/class-custom-image-header.php:1317 +msgid "Image could not be processed. Please go back and try again." +msgstr "Bild konnte nicht verarbeitet werden. Bitte gehe zurück und versuche es nochmal." + +#: wp-admin/themes.php:262 +msgid "The active theme is broken. Reverting to the default theme." +msgstr "Das aktuelle Theme ist fehlerhaft. Das Standard-Theme wurde aktiviert." + +#: wp-admin/maint/repair.php:168 +msgid "WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing." +msgstr "WordPress kann versuchen, die Datenbank zu optimieren. In einigen Situationen kann das die Website beschleunigen. Die Datenbank zu reparieren und zu optimieren, kann längere Zeit dauern, in der die Datenbank nicht erreichbar ist." + +#: wp-admin/maint/repair.php:164 +msgid "WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient." +msgstr "WordPress kann automatisch nach häufigen Datenbank-Problemen suchen und sie reparieren. Das Reparieren kann eine Weile dauern, sei bitte geduldig." + +#: wp-admin/maint/repair.php:155 +msgid "Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users." +msgstr "Reparaturen abgeschlossen. Bitte entferne die folgende Zeile aus wp-config.php, um diese Seite vor unauthorisierten Zugang zu schützen." + +#. translators: 1: Table name, 2: Error message. +#: wp-admin/maint/repair.php:104 +msgid "The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…" +msgstr "Die Tabelle %1$s ist nicht in Ordnung. Es liegt folgender Fehlerbericht vor: %2$s. WordPress wird versuchen, diese Tabelle zu reparieren …" + +#: wp-admin/user-new.php:392 +msgid "Enter the email address or username of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Gib die E-Mail-Adresse oder den Benutzernamen eines bestehenden Benutzers dieses Netzwerkes ein, um ihn zu dieser Website einzuladen. Dieser Person wird eine E-Mail gesendet, um die Einladung zu bestätigen." + +#: wp-admin/user-new.php:388 +msgid "Enter the email address of an existing user on this network to invite them to this site. That person will be sent an email asking them to confirm the invite." +msgstr "Gib die E-Mail-Adresse eines bestehenden Benutzers dieses Netzwerkes ein, um ihn zu dieser Website einzuladen. Dieser Person wird eine E-Mail gesendet, um die Einladung zu bestätigen." + +#: wp-admin/user-edit.php:333 +msgid "Show Toolbar when viewing site" +msgstr "Werkzeugleiste für mich auf der Website anzeigen" + +#. translators: %s: HelpHub URL. +#. translators: %s: Documentation URL. +#: wp-admin/about.php:83 wp-admin/about.php:352 +msgid "For more information, see the release notes." +msgstr "Weitere Informationen findest du in den Veröffentlichungsmitteilungen." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. More +#. than one security issue. +#: wp-admin/about.php:346 +msgid "Version %1$s addressed some security issues and fixed %2$s bug." +msgid_plural "Version %1$s addressed some security issues and fixed %2$s bugs." +msgstr[0] "Version %1$s behob Sicherheitsprobleme und %2$s Fehler." +msgstr[1] "Version %1$s behob Sicherheitsprobleme und %2$s Fehler." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. Singular +#. security issue. +#: wp-admin/about.php:340 +msgid "Version %1$s addressed a security issue and fixed %2$s bug." +msgid_plural "Version %1$s addressed a security issue and fixed %2$s bugs." +msgstr[0] "Version %1$s behob ein Sicherheitsproblem und %2$s Fehler." +msgstr[1] "Version %1$s behob ein Sicherheitsproblem und %2$s Fehler." + +#. translators: 1: WordPress version number, 2: Plural number of bugs. +#: wp-admin/about.php:71 wp-admin/about.php:334 +msgid "Version %1$s addressed %2$s bug." +msgid_plural "Version %1$s addressed %2$s bugs." +msgstr[0] "Version %1$s behob %2$s Fehler." +msgstr[1] "Version %1$s behob %2$s Fehler." + +#: wp-admin/index.php:35 +msgid "Welcome to your WordPress Dashboard! This is the screen you will see when you log in to your site, and gives you access to all the site management features of WordPress. You can get help for any screen by clicking the Help tab above the screen title." +msgstr "Willkommen in deinem WordPress-Dashboard! Diese Seite wird immer angezeigt, wenn du dich auf deiner Website anmeldest und gibt dir den Zugang zu allen Einstellungsmöglichkeiten von WordPress. Hilfe bekommst du auf jeder Seite, indem du oberhalb des Seitentitels auf den „Hilfe“-Tab klickst." + +#. translators: %s: WordPress version number. +#: wp-admin/about.php:331 +msgid "Version %s addressed some security issues." +msgstr "Version %s behob einige Sicherheitsprobleme." + +#: wp-admin/about.php:325 +msgid "Maintenance and Security Release" +msgstr "Wartungs- und Sicherheits-Update" + +#: wp-admin/about.php:322 +msgid "Security Release" +msgstr "Sicherheits-Update" + +#: wp-admin/about.php:319 +msgid "Maintenance Release" +msgstr "Wartungs-Update" + +#: wp-admin/credits.php:36 wp-admin/privacy.php:33 wp-admin/freedoms.php:39 +#: wp-admin/about.php:34 +msgid "What’s New" +msgstr "Was gibt's Neues" + +#: wp-admin/options-permalink.php:24 +msgid "This screen allows you to choose your permalink structure. You can choose from common settings or create custom URL structures." +msgstr "Auf dieser Seite kannst du deine gewünschte Permalink-Struktur einstellen. Du kannst entweder aus üblichen Einstellungen wählen oder eine individuelle URL-Struktur erstellen." + +#: wp-admin/about.php:306 +msgid "Return to Updates" +msgstr "Zurück zu Aktualisierungen" + +#. translators: 1: WordPress version, 2: URL to About screen. +#: wp-admin/includes/update-core.php:1446 wp-admin/update-core.php:741 +msgid "Welcome to WordPress %1$s. Learn more." +msgstr "Willkommen bei WordPress %1$s. Mehr erfahren." + +#: wp-admin/media-new.php:50 +msgid "You can upload media files here without creating a post first. This allows you to upload files to use with posts and pages later and/or to get a web link for a particular file that you can share. There are three options for uploading files:" +msgstr "Du kannst hier Dateien hochladen, ohne vorher einen Beitrag zu erstellen. Dies ermöglicht dir, Dateien hochzuladen, um sie später in Beiträgen oder Seiten zu verwenden bzw. um einen Link für eine bestimmte Datei zu erhalten, den du dann teilen kannst. Zum Hochladen von Dateien stehen dir drei Möglichkeiten zur Verfügung:" + +#: wp-admin/edit-tags.php:298 +msgid "Adding Tags" +msgstr "Schlagwörter hinzufügen" + +#: wp-admin/edit-tags.php:298 +msgid "Adding Categories" +msgstr "Kategorien hinzufügen" + +#: wp-admin/plugins.php:557 +msgid "Troubleshooting" +msgstr "Problembehandlung" + +#: wp-admin/update-core.php:821 +msgid "How to Update" +msgstr "Wie aktualisiere ich WordPress?" + +#: wp-admin/export.php:173 +msgid "Once you’ve saved the download file, you can use the Import function in another WordPress installation to import the content from this site." +msgstr "Nach dem Speichern der Datei kannst du die Importfunktion einer anderen WordPress-Installation benutzen, um die Inhalte dieser Website zu importieren." + +#: wp-admin/upload.php:244 +msgid "Attaching Files" +msgstr "Dateien verknüpfen" + +#: wp-admin/edit.php:270 +msgid "When using Bulk Edit, you can change the metadata (categories, author, etc.) for all selected posts at once. To remove a post from the grouping, just click the x next to its name in the Bulk Edit area that appears." +msgstr "Mit der Mehrfachbearbeitung kannst du Metadaten, wie Kategorien, Autor, usw. für alle ausgewählten Beiträge auf einmal ändern. Um einen Beitrag aus der Gruppierung zu entfernen, klicke einfach auf das x-Symbol neben dem Namen, das im Bereich der Mehrfachbearbeitung erscheint." + +#: wp-admin/edit.php:269 +msgid "You can also edit or move multiple posts to the Trash at once. Select the posts you want to act on using the checkboxes, then select the action you want to take from the Bulk actions menu and click Apply." +msgstr "Du kannst auch mehrere Beiträge auf einmal bearbeiten oder in den Papierkorb verschieben. Wähle die Beiträge, die du bearbeiten möchtest, mithilfe der Kontrollkästchen aus, wähle dann die gewünschte Aktion unter Mehrfachaktionen aus und klicke auf „Übernehmen“." + +#: wp-admin/upload.php:236 wp-admin/users.php:66 wp-admin/edit.php:253 +msgid "Available Actions" +msgstr "Verfügbare Aktionen" + +#: wp-admin/edit.php:241 +msgid "You can customize the display of this screen’s contents in a number of ways:" +msgstr "Du kannst das Aussehen dieser Seite auf verschiedene Weise ändern:" + +#: wp-admin/users.php:41 wp-admin/edit.php:239 +msgid "Screen Content" +msgstr "Bildschirminhalt" + +#: wp-admin/edit.php:233 +msgid "This screen provides access to all of your posts. You can customize the display of this screen to suit your workflow." +msgstr "Auf dieser Seite siehst du all deine Beiträge. Du kannst über „Ansicht anpassen“ die Darstellung an deine Bedürfnisse anpassen." + +#. translators: %s: URL to Add Plugins screen. +#: wp-admin/import.php:228 +msgid "If the importer you need is not listed, search the plugin directory to see if an importer is available." +msgstr "Falls der von dir benötigte Importer hier nicht gelistet ist, durchsuche das Plugin-Verzeichnis, um zu schauen, ob ein Importer verfügbar ist." + +#: wp-admin/edit-comments.php:181 +msgid "Moderating Comments" +msgstr "Kommentare moderieren" + +#. translators: %s: URL to Import screen. +#: wp-admin/tools.php:77 +msgid "If you want to convert your categories to tags (or vice versa), use the Categories and Tags Converter available from the Import screen." +msgstr "Wenn du deine Kategorien in Schlagwörter umwandeln willst (oder umgekehrt), benutze den Kategorie-in-Schlagwort-Konverter der unter Werkzeuge → Daten importieren verfügbar ist." + +#: wp-admin/plugin-install.php:98 +msgid "Adding Plugins" +msgstr "Plugins hinzufügen" + +#: wp-admin/themes.php:163 +msgid "Adding Themes" +msgstr "Themes hinzufügen" + +#: wp-admin/user-new.php:257 +msgid "Subscribers can read comments/comment/receive newsletters, etc. but cannot create regular site content." +msgstr "Abonnenten können nur Kommentare lesen und abgeben, aber keine eigenen Inhalte erstellen." + +#: wp-admin/user-new.php:259 +msgid "Authors can publish and manage their own posts, and are able to upload files." +msgstr "Autoren können ihre eigenen Beiträge veröffentlichen und verwalten, und auch Dateien hochladen." + +#: wp-admin/user-new.php:255 +msgid "Here is a basic overview of the different user roles and the permissions associated with each one:" +msgstr "Hier ist ein grober Überblick über die verschiedenen Benutzerrollen und die jeweils damit verknüpften Berechtigungen:" + +#: wp-admin/user-new.php:254 +msgid "User Roles" +msgstr "Benutzerrollen" + +#: wp-admin/user-new.php:241 +msgid "Remember to click the Add New User button at the bottom of this screen when you are finished." +msgstr "Vergiss nicht, unten auf dieser Seite auf „Neuen Benutzer hinzufügen“ zu klicken, wenn du fertig bist." + +#: wp-admin/user-new.php:230 +msgid "To add a new user to your site, fill in the form on this screen and click the Add New User button at the bottom." +msgstr "Um einen neuen Benutzer zu deiner Website hinzuzufügen, fülle das Formular auf dieser Seite aus, und klicke unten auf Neuen Benutzer hinzufügen." + +#: wp-admin/options-permalink.php:52 +msgid "Custom Structures" +msgstr "Individuelle Strukturen" + +#: wp-admin/options-permalink.php:219 +msgid "Common Settings" +msgstr "Gebräuchliche Einstellungen" + +#: wp-admin/options-permalink.php:23 +msgid "Permalinks are the permanent URLs to your individual pages and blog posts, as well as your category and tag archives. A permalink is the web address used to link to your content. The URL to each post should be permanent, and never change — hence the name permalink." +msgstr "Permalinks sind dauerhafte Adressen für einzelne Beiträge, Seiten, Kategorien usw. Ein Permalink ist die Webadresse, die zu Deinem Inhalt verlinkt. Sie sollten eindeutig sein und sich niemals ändern. Sonst wären es keine Permalinks." + +#: wp-admin/options-writing.php:23 +msgid "You can submit content in several different ways; this screen holds the settings for all of them. The top section controls the editor within the dashboard, while the rest control external publishing methods. For more information on any of these methods, use the documentation links." +msgstr "Es gibt verschiedene Wege, neue Inhalte zu veröffentlichen. In dieser Einstellungsseite sind alle entsprechenden Optionen aufgeführt. Der erste Teil dieser Seite behandelt den Beitragseditor und Funktionen drumherum. Der zweite Teil andere Methoden, wie zum Beispiel das Schreiben neuer Texte mit externen Programmen. Mehr Informationen findest du in den weiterführenden Dokumentations-Links." + +#: wp-admin/options-media.php:22 +msgid "Uploading Files allows you to choose the folder and path for storing your uploaded files." +msgstr "Im Bereich „Dateien hochladen“ bestimmst du den Ordner und Pfad für die Speicherung deiner hochgeladenen Dateien." + +#: wp-admin/themes.php:151 +msgid "Installing themes on Multisite can only be done from the Network Admin section." +msgstr "In einem Netzwerk können neue Themes nur in der Netzwerkverwaltung installiert werden." + +#: wp-admin/options-general.php:31 +msgid "If you want site visitors to be able to register themselves, as opposed to by the site administrator, check the membership box. A default user role can be set for all new users, whether self-registered or registered by the site admin." +msgstr "Wenn du willst, dass sich Benutzer selber registrieren dürfen, dann aktiviere dazu die entsprechende Checkbox. Du kannst auch festlegen, welche Benutzerrolle neu registrierte Benutzer automatisch zugewiesen bekommen." + +#: wp-admin/options-writing.php:45 +msgid "If desired, WordPress will automatically alert various services of your new posts." +msgstr "Wenn gewünscht, kann WordPress diverse Dienste automatisch beim Veröffentlichen neuer Beiträge benachrichtigen." + +#: wp-admin/options-writing.php:33 +msgid "Post Via Email" +msgstr "Beiträge per E-Mail veröffentlichen" + +#: wp-admin/options-discussion.php:24 +msgid "This screen provides many options for controlling the management and display of comments and links to your posts/pages. So many, in fact, they won’t all fit here! :) Use the documentation links to get information on what each discussion setting does." +msgstr "Auf dieser Einstellungsseite hast du umfangreiche Möglichkeiten, das Kommentieren auf deiner Website zu regeln. Beachte, dass das Aktivieren von bestimmten Optionen die Wirkung einer anderen Option aufheben oder einschränken kann." + +#: wp-admin/user-edit.php:50 +msgid "You can change your password, turn on keyboard shortcuts, change the color scheme of your WordPress administration screens, and turn off the WYSIWYG (Visual) editor, among other things. You can hide the Toolbar (formerly called the Admin Bar) from the front end of your site, however it cannot be disabled on the admin screens." +msgstr "Du kannst unter anderem dein Passwort ändern, Tastaturkürzel aktivieren, das Farbschema deines WordPress-Administrationsbereichs ändern oder den visuellen Editor deaktivieren. Du kannst die Werkzeugleiste (vorher Adminleiste genannt) im Frontend deiner Website verbergen, allerdings nicht im Administrationsbereich." + +#: wp-admin/widgets.php:110 +msgid "This sidebar is no longer available and does not show anywhere on your site. Remove each of the widgets below to fully remove this inactive sidebar." +msgstr "Diese Seitenleiste steht nicht mehr zur Verfügung und wird auch nicht mehr angezeigt. Entferne alle noch in dieser Seitenleiste eingetragenen Widgets, um diese inaktive Seitenleiste komplett zu entfernen." + +#: wp-admin/widgets.php:107 +msgid "Inactive Sidebar (not used)" +msgstr "Inaktive Seitenleiste (ungenutzt)" + +#: wp-admin/media-new.php:53 +msgid "Clicking Select Files opens a navigation window showing you files in your operating system. Selecting Open after clicking on the file you want activates a progress bar on the uploader screen." +msgstr "Klicke auf Dateien auswählen, um Dateien von deinem Computer auszuwählen, die du hochladen möchtest, indem du nach dem Auswählen im Dateidialog auf Öffnen klickst. Anschließend werden die Dateien hochgeladen (Verarbeiten …), verarbeitet und Vorschaubilder erstellt." + +#: wp-admin/media-new.php:52 +msgid "Drag and drop your files into the area below. Multiple files are allowed." +msgstr "Markiere eine Datei und ziehe sie bei gedrückter Maustaste in den Bereich unterhalb. Du kannst auch mehrere Dateien auswählen und bewegen." + +#: wp-admin/edit-tags.php:256 +msgid "You can assign keywords to your posts using tags. Unlike categories, tags have no hierarchy, meaning there’s no relationship from one tag to another." +msgstr "Du kannst deinen Beiträgen Schlagwörter hinzufügen, um sie mit relevanten Stichworten zu versehen. Schlagwörter haben, anders als Kategorien, keine Hierarchie." + +#: wp-admin/edit-tags.php:254 +msgid "You can create groups of links by using Link Categories. Link Category names must be unique and Link Categories are separate from the categories you use for posts." +msgstr "Du kannst Links in einzelne Gruppen ordnen, indem du Linkkategorien verwendest. Linkkategorien haben mit den normalen Kategorien für Beiträge nichts zu tun und sind getrennt von diesen." + +#: wp-admin/widgets.php:74 +msgid "Missing Widgets" +msgstr "Fehlende Widgets" + +#: wp-admin/widgets.php:64 +msgid "Removing and Reusing" +msgstr "Entfernen und Wiederherstellen" + +#: wp-admin/upload.php:246 +msgid "If a media file has not been attached to any content, you will see that in the Uploaded To column, and can click on Attach to launch a small popup that will allow you to search for existing content and attach the file." +msgstr "Falls eine Datei in keinem Beitrag oder Seite verwendet wird, so wird dies in der Spalte „Hochgeladen zu“ kenntlich gemacht. Mit einem Klick auf „Verknüpfen“ kannst du Beiträge oder Seiten suchen, mit denen du die Datei verknüpfen möchtest." + +#: wp-admin/upload.php:238 +msgid "Hovering over a row reveals action links: Edit, Delete Permanently, and View. Clicking Edit or on the media file’s name displays a simple screen to edit that individual file’s metadata. Clicking Delete Permanently will delete the file from the media library (as well as from any posts to which it is currently attached). View will take you to the display page for that file." +msgstr "" +"Bei Mauszeigerkontakt einer Datei in der Liste werden zusätzliche Optionen angezeigt: Bearbeiten, Endgültig löschen und Anschauen.\n" +"Beim Klick auf „Bearbeiten“ werden die Metadaten der Datei angezeigt und können auch bearbeitet werden. Ein Klick auf „Endgültig löschen“, löscht eine Datei aus der Mediathek und von allen Beiträgen, in der sie verwendet wurde. „Anschauen“ öffnet eine Seite, auf welcher die Datei angezeigt wird." + +#: wp-admin/upload.php:228 +msgid "All the files you’ve uploaded are listed in the Media Library, with the most recent uploads listed first. You can use the Screen Options tab to customize the display of this screen." +msgstr "Alle über die Oberfläche von WordPress hochgeladenen Dateien werden in der Mediathek angezeigt. Standardmäßig werden die zuletzt hochgeladenen Dateien zuerst angezeigt. Verwende den Tab „Ansicht anpassen“, um diese Seite für dich einzurichten." + +#: wp-admin/edit.php:295 +msgid "You can also perform the same types of actions, including narrowing the list by using the filters, acting on a page using the action links that appear when you hover over a row, or using the Bulk actions menu to edit the metadata for multiple pages at once." +msgstr "Du kannst auch die gleichen Arten von Aktionen ausführen, beispielsweise die Liste mit Hilfe der Filter einschränken. Und grundsätzlich mit Seiten arbeiten, indem du die bei Mauszeigerkontakt erscheinenden Links nutzt oder das Drop-down-Menü für die Mehrfachaktionen verwendest, um die Metadaten für mehrere Seiten auf einmal zu bearbeiten." + +#: wp-admin/edit.php:294 +msgid "Managing pages is very similar to managing posts, and the screens can be customized in the same way." +msgstr "Seiten zu verwalten ist genauso einfach wie das Verwalten von Beiträgen und du hast ebenso die Möglichkeit, über „Ansicht anpassen“ die Einstellungen zu ändern." + +#: wp-admin/edit-form-advanced.php:321 wp-admin/edit.php:286 +msgid "Pages are similar to posts in that they have a title, body text, and associated metadata, but they are different in that they are not part of the chronological blog stream, kind of like permanent posts. Pages are not categorized or tagged, but can have a hierarchy. You can nest pages under other pages by making one the “Parent” of the other, creating a group of pages." +msgstr "Seiten sind Beiträgen recht ähnlich. Sie haben einen Titel, Inhalt und weitere Metadaten. Sie erscheinen jedoch nicht im chronologischen Blog-Stream und können auch nicht mit Kategorien und Schlagwörtern verknüpft werden. Dafür können Seiten hierarchisch angeordnet beziehungsweise verschachtelt werden, indem einer Seite „Eltern“ verpasst werden, also eine andere Seite als übergeordnete Seite festgelegt wird." + +#: wp-admin/edit-comments.php:188 +msgid "Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more." +msgstr "Um Kommentare schneller zu moderieren kannst du, wie viele andere Benutzer auch, Tastaturkürzel verwenden. Nutze den Link auf der Seite zur Dokumentation, um die entsprechenden Tastaturkürzel nachzuschlagen." + +#: wp-admin/edit-comments.php:184 +msgid "In the Author column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address." +msgstr "In der Spalte Autor werden Daten wie der Name, E-Mail-Adresse, Website-URL und IP-Adresse des Kommentierenden angezeigt. Wenn du auf die IP-Adresse klickst, siehst du alle Kommentare, die von dieser IP-Adresse abgegeben wurden." + +#: wp-admin/edit-comments.php:175 +msgid "You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions." +msgstr "Du kannst Kommentare auf deiner Website ähnlich wie Beiträge und andere Inhalte verwalten. Diese Ansicht ist genauso anpassbar wie andere Bereiche. Mit den Kommentaren lässt sich ebenso agieren, wenn du die durch Mauszeigerkontakt angezeigten Links nutzt oder die Mehrfachaktionen verwendest." + +#: wp-admin/index.php:50 +msgid "Links in the Toolbar at the top of the screen connect your dashboard and the front end of your site, and provide access to your profile and helpful WordPress information." +msgstr "Die Links in der Werkzeugleiste oben auf dem Bildschirm verbinden das Dashboard mit der Frontend-Ansicht deiner Website und bieten Zugriff auf dein Profil und hilfreiche WordPress-Informationen." + +#: wp-admin/link-manager.php:70 +msgid "Deleting Links" +msgstr "Links löschen" + +#: wp-admin/link-manager.php:63 +msgid "Links may be separated into Link Categories; these are different than the categories used on your posts." +msgstr "Links können in verschiedene Kategorien einsortiert werden. Es sind jedoch nicht die gleichen Kategorien wie für Beiträge und müssen daher separat erstellt werden." + +#. translators: 1: URL to About screen, 2: WordPress version. +#: wp-admin/update-core.php:287 +msgid "Learn more about WordPress %2$s." +msgstr "Erfahre mehr über WordPress %2$s." + +#: wp-admin/users.php:53 +msgid "Edit takes you to the editable profile screen for that user. You can also reach that screen by clicking on the username." +msgstr "Bearbeiten führt dich zur bearbeitbaren Profilansicht des ausgewählten Benutzers. Du kannst alternativ auch einfach den Benutzernamen anklicken." + +#: wp-admin/users.php:51 +msgid "Hovering over a row in the users list will display action links that allow you to manage users. You can perform the following actions:" +msgstr "Bei Mauszeigerkontakt mit einem Eintrag in der Benutzerliste werden zusätzliche Links angezeigt, mit denen du Benutzer verwalten kannst. Folgende Aktionen sind möglich:" + +#: wp-admin/users.php:46 +msgid "You can view all posts made by a user by clicking on the number under the Posts column." +msgstr "Du kannst dir alle Beiträge eines bestimmten Benutzers anschauen, indem du auf die Zahl unter der Beitrags-Spalte klickst." + +#: wp-admin/users.php:44 +msgid "You can hide/display columns based on your needs and decide how many users to list per screen using the Screen Options tab." +msgstr "Über „Ansicht anpassen“ kannst du Spalten je nach deinen persönlichen Wünschen anzeigen oder verbergen und bestimmen, wie viele Benutzer pro Bildschirm aufgelistet werden sollen." + +#: wp-admin/edit.php:292 +msgid "Managing Pages" +msgstr "Seiten verwalten" + +#: wp-admin/edit.php:260 +msgid "Preview will show you what your draft post will look like if you publish it. View will take you to your live site to view the post. Which link is available depends on your post’s status." +msgstr "Vorschau zeigt, wie der Beitrag aussehen würde, wenn du ihn veröffentlichst. Anschauen wird dich auf die Website bringen, um den Beitrag zu sehen. Welcher Link verfügbar ist, hängt vom Status des Beitrags ab." + +#: wp-admin/edit.php:259 +msgid "Trash removes your post from this list and places it in the Trash, from which you can permanently delete it." +msgstr "Papierkorb löscht deinen Beitrag aus dieser Liste und legt ihn in den Papierkorb, aus dem du ihn endgültig löschen kannst." + +#: wp-admin/edit.php:258 +msgid "Quick Edit provides inline access to the metadata of your post, allowing you to update post details without leaving this screen." +msgstr "QuickEdit öffnet direkt in der Übersicht einen kleinen Bereich, in welchem du bestimmte Eigenschaften des Beitrags anpassen und speichern kannst." + +#: wp-admin/edit.php:257 +msgid "Edit takes you to the editing screen for that post. You can also reach that screen by clicking on the post title." +msgstr "Bearbeiten führt dich zur Seite \"Beitrag bearbeiten\" für diesen Beitrag. Einen Beitrag kannst du auch bearbeiten, indem du direkt auf den Titel eines Beitrags klickst." + +#: wp-admin/user-new.php:233 +msgid "Because this is a multisite installation, you may add accounts that already exist on the Network by specifying a username or email, and defining a role. For more options, such as specifying a password, you have to be a Network Administrator and use the hover link under an existing user’s name to Edit the user profile under Network Admin > All Users." +msgstr "Da dies eine Netzwerk-Installation (Multisite) ist, kannst du existierende Benutzer aus anderen Websites dieses Netzwerks hinzufügen, indem du einen Benutzernamen oder eine E-Mail-Adresse angibst sowie eine Benutzerrolle festlegst. Für weitere Optionen (wie Passwörter festlegen), musst du Netzwerk-Administrator sein. Du kannst dann über Netzwerkverwaltung > Alle Benutzer das Profil des Benutzers verändern." + +#. translators: %s: The current WordPress version number. +#: wp-admin/about.php:46 +msgid "Welcome to WordPress %s." +msgstr "Willkommen bei WordPress %s." + +#: wp-admin/about.php:309 +msgid "Go to Dashboard → Home" +msgstr "Zum Dashboard → Startseite" + +#: wp-admin/about.php:306 +msgid "Return to Dashboard → Updates" +msgstr "Zum Dashboard → Aktualisierungen zurückkehren" + +#: wp-admin/credits.php:63 +msgid "WordPress is created by a worldwide team of passionate individuals." +msgstr "WordPress wird von einem weltweiten Team passionierter Menschen entwickelt." + +#: wp-admin/about.php:195 +msgid "For developers" +msgstr "Für Entwickler" + +#: wp-admin/includes/dashboard.php:1887 wp-admin/includes/dashboard.php:1889 +msgid "Customize Your Site" +msgstr "Website anpassen" + +#: wp-admin/user-edit.php:196 +msgid "Profile updated." +msgstr "Profil aktualisiert." + +#. translators: 1: Site title, 2: Site URL, 3: User role, 4: Activation URL. +#: wp-admin/user-new.php:116 +msgid "" +"Hi,\n" +"\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"\n" +"Please click the following link to confirm the invite:\n" +"%4$s" +msgstr "" +"Hallo,\n" +"\n" +"du wurdest eingeladen, %1$s (%2$s) als %3$s beizutreten.\n" +"Bitte klicke auf den folgenden Link, um die Einladung zu bestätigen:\n" +"%4$s" + +#: wp-admin/credits.php:143 +msgid "Core Developer" +msgstr "Core-Entwicklung" + +#: wp-admin/includes/class-plugin-upgrader.php:441 +msgid "No valid plugins were found." +msgstr "Es wurden keine funktionsfähigen Plugins gefunden." + +#: wp-admin/includes/class-plugin-upgrader.php:82 +msgid "The plugin contains no files." +msgstr "Dieses Plugin enthält keinerlei Dateien." + +#: wp-admin/includes/class-wp-upgrader.php:164 +msgid "The package could not be installed." +msgstr "Das Paket konnte nicht installiert werden." + +#: wp-admin/includes/media.php:1229 +msgid "Attachment Post URL" +msgstr "URL des Anhangs" + +#: wp-admin/menu.php:81 +msgctxt "admin menu" +msgid "All Links" +msgstr "Alle Links" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:310 +msgid "%s plugins" +msgstr "%s Plugins" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/plugin-install.php:308 +msgid "%s plugin" +msgstr "%s Plugin" + +#. translators: 1: Table name. 2: Error message. +#: wp-admin/maint/repair.php:136 +msgid "Failed to optimize the %1$s table. Error: %2$s" +msgstr "Konnte die Tabelle %1$s nicht optimieren. Fehler: %2$s" + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:133 +msgid "Successfully optimized the %s table." +msgstr "Die Tabelle %s wurde erfolgreich optimiert." + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:126 +msgid "The %s table is already optimized." +msgstr "Die Tabelle %s ist schon optimiert. " + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:111 +msgid "Successfully repaired the %s table." +msgstr "Die Tabelle %s wurde erfolgreich repariert. " + +#. translators: %s: Table name. +#: wp-admin/maint/repair.php:101 +msgid "The %s table is okay." +msgstr "Die Tabelle %s ist in Ordnung." + +#. translators: %s: Plugin version. +#: wp-admin/update-core.php:405 +msgid "View version %s details." +msgstr "Details der Version %s anzeigen." + +#: wp-admin/includes/import.php:220 +msgid "Tumblr" +msgstr "Tumblr" + +#. translators: 1: Browser update URL, 2: Browser name, 3: Browse Happy URL. +#: wp-admin/includes/dashboard.php:1628 +msgid "Update %2$s or learn how to browse happy" +msgstr "Aktualisiere %2$s oder informiere dich über Alternativen bei browse happy" + +#. translators: 1: Link start tag, 2: Link end tag, 3: Width, 4: Height. +#: wp-admin/includes/media.php:3044 +msgid "Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d)." +msgstr "Bilder skalieren, um die Maximale Bildgröße aus %1$sBildoptionen%2$s (%3$d × %4$d) zu erfüllen." + +#: wp-admin/includes/media.php:2903 +msgid "Audio, Video, or Other File" +msgstr "Audio, Video oder eine andere Datei" + +#: wp-admin/includes/media.php:2375 +msgid "Insert media from another website" +msgstr "Medien von einer anderen Website einfügen" + +#: wp-admin/includes/file.php:2127 +msgid "Error: Could not connect to the server. Please verify the settings are correct." +msgstr "Fehler: Bei der Verbindung zum Server trat ein Fehler auf. Bitte überprüfe die Einstellungen." + +#: wp-admin/index.php:62 +msgid "Drag and Drop — To rearrange the boxes, drag and drop by clicking on the title bar of the selected box and releasing when you see a gray dotted-line rectangle appear in the location you want to place the box." +msgstr "Drag-and-drop – Um die Boxen neu anzuordnen, klick auf die Titelleiste der ausgewählten Box, halte die Maustaste fest, zieh die Box an die gewünschte Position und lass die Taste los, sobald dort ein grau gepunktetes Rechteck auftaucht." + +#: wp-admin/index.php:60 +msgid "You can use the following controls to arrange your Dashboard screen to suit your workflow. This is true on most other administration screens as well." +msgstr "Die folgenden Einstellungsmöglichkeiten kannst du dazu benutzen, die Zusammensetzung deines Dashboards den Bedürfnissen deines Workflows anzupassen. Dies gilt für die meisten anderen Administrationsseiten in gleicher Weise." + +#: wp-admin/index.php:55 +msgid "Navigation" +msgstr "Navigation" + +#: wp-admin/index.php:49 +msgid "The left-hand navigation menu provides links to all of the WordPress administration screens, with submenu items displayed on hover. You can minimize this menu to a narrow icon strip by clicking on the Collapse Menu arrow at the bottom." +msgstr "Das Menü auf der linken Seite bietet Zugang zu allen Einstellungen und Optionen deiner WordPress-Administrationsseiten, deren Untermenü-Einträge bei Mauszeigerkontakt angezeigt werden. Um das Menü zu einer schmalen Symbolleiste zu minimieren, klicke auf den „Menü einklappen“-Pfeil am unteren Ende." + +#: wp-admin/options-reading.php:24 wp-admin/edit-tags.php:268 +#: wp-admin/link-manager.php:56 wp-admin/options-writing.php:22 +#: wp-admin/includes/class-custom-background.php:88 +#: wp-admin/includes/ms.php:1135 wp-admin/includes/class-wp-screen.php:853 +#: wp-admin/includes/class-custom-image-header.php:97 wp-admin/my-sites.php:43 +#: wp-admin/options-general.php:41 wp-admin/comment.php:61 +#: wp-admin/theme-editor.php:27 wp-admin/plugin-editor.php:124 +#: wp-admin/nav-menus.php:609 wp-admin/nav-menus.php:650 +#: wp-admin/update-core.php:806 wp-admin/options-permalink.php:22 +#: wp-admin/user-new.php:246 wp-admin/index.php:42 wp-admin/plugins.php:543 +#: wp-admin/themes.php:142 wp-admin/edit-comments.php:173 wp-admin/media.php:85 +#: wp-admin/revision.php:150 wp-admin/upload.php:54 wp-admin/upload.php:226 +#: wp-admin/edit-form-advanced.php:342 wp-admin/import.php:23 +#: wp-admin/widgets.php:55 wp-admin/options-media.php:30 +#: wp-admin/edit-link-form.php:66 wp-admin/user-edit.php:60 +#: wp-admin/users.php:32 wp-admin/media-new.php:48 +#: wp-admin/theme-install.php:112 wp-admin/options-discussion.php:23 +#: wp-admin/edit.php:231 wp-admin/edit.php:284 wp-admin/plugin-install.php:84 +#: wp-admin/export.php:49 wp-admin/network/user-new.php:20 +#: wp-admin/network/index.php:33 wp-admin/network/themes.php:297 +#: wp-admin/network/upgrade.php:21 wp-admin/network/users.php:217 +#: wp-admin/network/site-new.php:23 wp-admin/network/settings.php:48 +#: wp-admin/network/sites.php:28 +msgid "Overview" +msgstr "Übersicht" + +#. translators: %s: Number of pending updates. +#. translators: %s: Number of available updates. +#: wp-admin/menu.php:49 wp-admin/network/menu.php:30 +msgid "Updates %s" +msgstr "Aktualisierungen %s" + +#: wp-admin/menu.php:242 wp-admin/network/menu.php:105 +msgid "Installed Plugins" +msgstr "Installierte Plugins" + +#. translators: %s: Number of pending plugin updates. +#. translators: %s: Number of available plugin updates. +#: wp-admin/menu.php:240 wp-admin/network/menu.php:88 +msgid "Plugins %s" +msgstr "Plugins %s" + +#: wp-admin/menu.php:260 wp-admin/network/menu.php:56 +msgid "All Users" +msgstr "Alle Benutzer" + +#: wp-admin/user-edit.php:227 wp-admin/users.php:566 wp-admin/menu.php:262 +#: wp-admin/menu.php:264 wp-admin/network/users.php:276 +#: wp-admin/network/menu.php:57 +msgctxt "user" +msgid "Add New" +msgstr "Neu hinzufügen" + +#: wp-admin/includes/ms.php:987 wp-admin/users.php:345 +msgid "Confirm Deletion" +msgstr "Löschen bestätigen" + +#: wp-admin/includes/class-wp-users-list-table.php:359 +#: wp-admin/user-new.php:416 wp-admin/user-new.php:580 +#: wp-admin/user-edit.php:410 wp-admin/network/site-users.php:312 +#: wp-admin/network/site-users.php:350 +msgid "Role" +msgstr "Rolle" + +#: wp-admin/user-new.php:346 wp-admin/user-new.php:385 +#: wp-admin/user-new.php:446 wp-admin/network/site-users.php:303 +msgid "Add Existing User" +msgstr "Bestehenden Benutzer hinzufügen" + +#: wp-admin/includes/dashboard.php:463 wp-admin/includes/dashboard.php:465 +#: wp-admin/users.php:584 wp-admin/network/site-users.php:279 +#: wp-admin/network/users.php:291 +msgid "Search Users" +msgstr "Benutzer suchen" + +#: wp-admin/users.php:526 wp-admin/network/site-users.php:260 +msgid "User removed from this site." +msgstr "Benutzer von dieser Website entfernt." + +#: wp-admin/users.php:515 wp-admin/network/site-users.php:254 +msgid "Changed roles." +msgstr "Rollen gewechselt." + +#: wp-admin/users.php:359 wp-admin/users.php:391 +msgid "You can’t remove users." +msgstr "Du kannst keine Benutzer entfernen." + +#. translators: %s: Search query. +#: wp-admin/edit-tags.php:342 wp-admin/link-manager.php:108 +#: wp-admin/plugins.php:731 wp-admin/edit-comments.php:235 +#: wp-admin/upload.php:279 wp-admin/users.php:574 wp-admin/edit.php:402 +#: wp-admin/js/updates.js:2583 wp-admin/network/themes.php:356 +#: wp-admin/network/users.php:282 wp-admin/network/sites.php:375 +msgid "Search results for “%s”" +msgstr "Suchergebnisse für „%s“" + +#: wp-admin/comment.php:166 wp-admin/theme-editor.php:305 +#: wp-admin/plugins.php:342 wp-admin/plugins.php:348 +#: wp-admin/includes/network.php:444 wp-admin/includes/network.php:452 +#: wp-admin/includes/network.php:460 wp-admin/network/themes.php:137 +#: wp-admin/network/themes.php:141 +msgid "Caution:" +msgstr "Vorsicht:" + +#: wp-admin/user-new.php:222 wp-admin/user-new.php:344 +#: wp-admin/user-new.php:453 wp-admin/user-new.php:608 wp-admin/menu.php:272 +#: wp-admin/menu.php:274 wp-admin/network/user-new.php:101 +#: wp-admin/network/user-new.php:107 wp-admin/network/site-users.php:337 +#: wp-admin/network/site-users.php:364 +msgid "Add New User" +msgstr "Neuen Benutzer hinzufügen" + +#: wp-admin/user-new.php:335 wp-admin/network/user-new.php:91 +#: wp-admin/network/site-users.php:242 wp-admin/network/users.php:262 +msgid "User added." +msgstr "Benutzer hinzugefügt." + +#: wp-admin/includes/class-wp-terms-list-table.php:502 +#: wp-admin/includes/class-wp-users-list-table.php:469 +#: wp-admin/includes/class-wp-media-list-table.php:723 +#: wp-admin/includes/class-wp-media-list-table.php:781 +#: wp-admin/includes/class-wp-posts-list-table.php:1408 +#: wp-admin/includes/dashboard.php:742 +#: wp-admin/includes/class-wp-ms-users-list-table.php:412 +msgid "View" +msgstr "Anschauen" + +#: wp-admin/includes/class-wp-users-list-table.php:438 +#: wp-admin/user-edit.php:433 +#: wp-admin/includes/class-wp-ms-users-list-table.php:285 +msgid "Super Admin" +msgstr "Super-Administrator" + +#. translators: %s: Plugin version number. +#. translators: %s: Theme version number. +#. translators: %s: WordPress version. +#. translators: %s: Plugin version. +#. translators: %s: Theme version. +#: wp-admin/includes/class-wp-debug-data.php:899 +#: wp-admin/includes/class-wp-debug-data.php:946 +#: wp-admin/includes/class-wp-debug-data.php:1275 +#: wp-admin/includes/class-wp-plugins-list-table.php:1018 +#: wp-admin/includes/update.php:231 wp-admin/includes/update.php:271 +#: wp-admin/includes/ajax-actions.php:4443 +#: wp-admin/includes/ajax-actions.php:4486 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:713 +msgid "Version %s" +msgstr "Version %s" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:555 +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Aktualisierung verfügbar (%s)" +msgstr[1] "Verfügbare Aktualisierungen (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:606 +#: wp-admin/includes/class-wp-plugins-list-table.php:831 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:698 +msgid "Deactivate" +msgstr "Deaktivieren" + +#: wp-admin/includes/class-wp-links-list-table.php:88 +#: wp-admin/includes/class-wp-links-list-table.php:334 +#: wp-admin/includes/class-wp-themes-list-table.php:233 +#: wp-admin/includes/theme.php:994 +#: wp-admin/includes/class-wp-plugins-list-table.php:615 +#: wp-admin/includes/class-wp-plugins-list-table.php:810 +#: wp-admin/includes/class-wp-plugins-list-table.php:864 +#: wp-admin/includes/meta-boxes.php:1079 +#: wp-admin/includes/class-wp-terms-list-table.php:159 +#: wp-admin/includes/class-wp-terms-list-table.php:493 +#: wp-admin/includes/class-wp-users-list-table.php:273 +#: wp-admin/includes/class-wp-users-list-table.php:455 +#: wp-admin/includes/media.php:1702 wp-admin/includes/widgets.php:295 +#: wp-admin/includes/template.php:645 wp-admin/themes.php:633 +#: wp-admin/themes.php:1120 wp-admin/widgets.php:355 +#: wp-admin/edit-tag-form.php:278 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:290 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:714 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:479 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:630 +#: wp-admin/includes/class-wp-ms-users-list-table.php:115 +#: wp-admin/includes/class-wp-ms-users-list-table.php:514 +msgid "Delete" +msgstr "Löschen" + +#: wp-admin/ms-delete-site.php:38 wp-admin/menu.php:286 +msgid "Delete Site" +msgstr "Website löschen" + +#. translators: %s: Plugin name. +#: wp-admin/includes/theme.php:1005 +#: wp-admin/includes/class-wp-theme-install-list-table.php:483 +#: wp-admin/includes/deprecated.php:1382 wp-admin/theme-install.php:388 +#: wp-admin/theme-install.php:425 wp-admin/includes/network.php:374 +msgid "Install" +msgstr "Installieren" + +#: wp-admin/my-sites.php:58 wp-admin/options-head.php:15 +#: wp-admin/options.php:335 wp-admin/network/settings.php:141 +#: wp-admin/network/sites.php:351 +msgid "Settings saved." +msgstr "Einstellungen gespeichert." + +#: wp-admin/options-reading.php:50 wp-admin/edit-tags.php:304 +#: wp-admin/link-manager.php:77 wp-admin/options-writing.php:51 +#: wp-admin/includes/class-custom-background.php:98 +#: wp-admin/includes/ms.php:1157 +#: wp-admin/includes/class-custom-image-header.php:133 wp-admin/my-sites.php:50 +#: wp-admin/options-general.php:47 wp-admin/comment.php:69 +#: wp-admin/theme-editor.php:50 wp-admin/plugin-editor.php:141 +#: wp-admin/nav-menus.php:657 wp-admin/update-core.php:844 +#: wp-admin/options-permalink.php:59 wp-admin/user-new.php:267 +#: wp-admin/index.php:106 wp-admin/plugins.php:586 wp-admin/themes.php:205 +#: wp-admin/edit-comments.php:193 wp-admin/media.php:95 +#: wp-admin/revision.php:155 wp-admin/upload.php:74 wp-admin/upload.php:251 +#: wp-admin/edit-form-advanced.php:316 wp-admin/edit-form-advanced.php:333 +#: wp-admin/edit-form-advanced.php:352 wp-admin/tools.php:54 +#: wp-admin/import.php:30 wp-admin/widgets.php:82 wp-admin/options-media.php:36 +#: wp-admin/edit-link-form.php:75 wp-admin/user-edit.php:66 +#: wp-admin/users.php:73 wp-admin/media-new.php:59 +#: wp-admin/theme-install.php:130 wp-admin/options-discussion.php:30 +#: wp-admin/edit.php:275 wp-admin/edit.php:300 wp-admin/plugin-install.php:108 +#: wp-admin/export.php:56 wp-admin/network.php:65 wp-admin/network.php:78 +#: wp-admin/network/user-new.php:28 wp-admin/network/index.php:54 +#: wp-admin/network/themes.php:322 wp-admin/network/upgrade.php:30 +#: wp-admin/network/users.php:229 wp-admin/network/site-new.php:31 +#: wp-admin/network/settings.php:62 wp-admin/network/sites.php:44 +msgid "For more information:" +msgstr "Für weitere Informationen:" + +#: wp-admin/edit-form-advanced.php:327 +msgid "About Pages" +msgstr "Über Seiten" + +#: wp-admin/edit-form-advanced.php:305 +msgid "Title and Post Editor" +msgstr "Titel und Beitrags-Editor" + +#: wp-admin/edit-form-advanced.php:285 +msgid "Customizing This Display" +msgstr "Diese Anzeige anpassen" + +#: wp-admin/options-reading.php:185 wp-admin/install.php:193 +msgid "Note: Neither of these options blocks access to your site — it is up to search engines to honor your request." +msgstr "Hinweis: Keine dieser Einstellungen verhindert den Zugang zu deiner Website – Es obliegt den Suchmaschinen, deiner Bitte nachzukommen." + +#: wp-admin/options-permalink.php:238 +msgid "Post name" +msgstr "Beitragsname" + +#: wp-admin/options-permalink.php:227 wp-admin/options-permalink.php:231 +#: wp-admin/options-permalink.php:239 +msgctxt "sample permalink structure" +msgid "sample-post" +msgstr "beispielbeitrag" + +#: wp-admin/options-permalink.php:215 wp-admin/options-permalink.php:235 +msgctxt "sample permalink base" +msgid "archives" +msgstr "archive" + +#. translators: %s: URL to Import screen on the main site. +#: wp-admin/import.php:165 +msgid "This importer is not installed. Please install importers from the main site." +msgstr "Der Importer ist nicht installiert. Bitte installiere Importer von der Haupt-Website." + +#: wp-admin/includes/class-wp-debug-data.php:72 +#: wp-admin/options-general.php:166 wp-admin/network/site-new.php:257 +msgid "Site Language" +msgstr "Sprache der Website" + +#: wp-admin/options-discussion.php:50 +msgid "Attempt to notify any blogs linked to from the post" +msgstr "Versucht, alle Blogs zu benachrichtigen, die mit dem Beitrag verlinkt sind." + +#. translators: 1: Site title, 2: Site URL, 3: User role. +#: wp-admin/includes/user.php:582 +msgid "" +"Hi,\n" +"You've been invited to join '%1$s' at\n" +"%2$s with the role of %3$s.\n" +"If you do not want to join this site please ignore\n" +"this email. This invitation will expire in a few days.\n" +"\n" +"Please click the following link to activate your user account:\n" +"%%s" +msgstr "" +"Hallo,\n" +"du wurdest eingeladen, '%1$s' auf\n" +"%2$s in der Rolle als %3$s beizutreten.\n" +"Wenn du dieser Website nicht beitreten willst, ignoriere bitte\n" +"diese E-Mail. Diese Einladung wird in wenigen Tagen verfallen.\n" +"\n" +"Bitte klicke auf den folgenden Link, um dein Benutzerkonto zu aktivieren:\n" +"%%s" + +#: wp-admin/includes/theme.php:316 wp-admin/includes/meta-boxes.php:494 +msgid "Post Formats" +msgstr "Beitragsformate" + +#: wp-admin/includes/theme.php:315 +msgid "Full Width Template" +msgstr "Template mit voller Breite" + +#: wp-admin/includes/theme.php:312 +msgid "Featured Images" +msgstr "Beitragsbilder" + +#: wp-admin/includes/theme.php:311 +msgid "Featured Image Header" +msgstr "Individuelles Header-Bild" + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1606 +msgid "It looks like you're using an old version of %s. For the best WordPress experience, please update your browser." +msgstr "Du scheinst eine alte Version von %s zu verwenden. Für das beste Nutzungserlebnis mit WordPress solltest du deinen Browser aktualisieren." + +#. translators: %s: Browser name and link. +#: wp-admin/includes/dashboard.php:1600 +msgid "It looks like you're using an insecure version of %s. Using an outdated browser makes your computer unsafe. For the best WordPress experience, please update your browser." +msgstr "Es scheint, als würdest du eine unsichere Version von %s verwenden. Die Nutzung eines veralteten Browsers kann deinen Computer gefährden. Um das optimale Nutzungserlebnis mit WordPress zu haben, solltest du deinen Browser auf eine neue Version aktualisieren." + +#: wp-admin/includes/nav-menu.php:1082 +msgid "There are some invalid menu items. Please check or delete them." +msgstr "Es gibt ein paar ungültige Menüeinträge. Bitte überprüfe oder lösche diese." + +#: wp-admin/edit-tags.php:440 +#: wp-admin/includes/class-wp-terms-list-table.php:182 +#: wp-admin/includes/class-wp-terms-list-table.php:646 +#: wp-admin/edit-tag-form.php:132 +msgctxt "term name" +msgid "Name" +msgstr "Name" + +#: wp-admin/includes/template.php:571 wp-admin/includes/template.php:586 +#: wp-admin/includes/template.php:718 +msgctxt "meta name" +msgid "Name" +msgstr "Name" + +#: wp-admin/themes.php:584 +msgctxt "theme name" +msgid "Name" +msgstr "Name" + +#. translators: %s: Theme Directory URL. +#: wp-admin/theme-install.php:98 +msgid "You can find additional themes for your site by using the Theme Browser/Installer on this screen, which will display themes from the WordPress Theme Directory. These themes are designed and developed by third parties, are available free of charge, and are compatible with the license WordPress uses." +msgstr "Hier kannst du zusätzliche Themes für deine Website finden, indem du den Theme-Browser dieser Ansicht nutzt. Es werden hier die Themes aus dem WordPress-Theme-Verzeichnis angezeigt, zum Durchstöbern und Installieren. Alle Themes wurden von Dritten designt und entwickelt, sind kostenlos und kompatibel mit der von WordPress genutzten Lizenz (GPL)." + +#. translators: %s: WordPress Plugin Directory URL. +#: wp-admin/plugins.php:549 +msgid "If you would like to see more plugins to choose from, click on the “Add New” button and you will be able to browse or search for additional plugins from the WordPress Plugin Directory. Plugins in the WordPress Plugin Directory are designed and developed by third parties, and are compatible with the license WordPress uses. Oh, and they’re free!" +msgstr "Falls du weitere Plugins installieren möchtest, kannst du auf den Button „Neu Hinzufügen“ klicken, um Plugins im WordPress-Plugin-Verzeichnis zu suchen. Alle Plugins wurden von Dritten designt und entwickelt und sind kompatibel, mit der von WordPress genutzten Lizenz (GPL). Ach ja, und sie sind auch noch kostenlos!" + +#: wp-admin/update-core.php:68 +msgid "Re-install Now" +msgstr "Erneut installieren" + +#. translators: %s: MAX_FILE_SIZE +#: wp-admin/includes/file.php:793 +msgid "The uploaded file exceeds the %s directive that was specified in the HTML form." +msgstr "Die hochgeladene Datei überschreitet die maximale Größe von %s, die im HTML-Formular angegeben ist." + +#: wp-admin/credits.php:144 +msgid "External Libraries" +msgstr "Externe Bibliotheken" + +#: wp-admin/menu.php:289 wp-admin/network.php:52 wp-admin/network/menu.php:112 +msgid "Network Setup" +msgstr "Netzwerk-Einrichtung" + +#: wp-admin/menu.php:279 +msgid "Available Tools" +msgstr "Verfügbare Werkzeuge" + +#: wp-admin/includes/credits.php:95 +msgctxt "Translate this to be the equivalent of English Translators in your language for the credits page Translators section" +msgid "Translators" +msgstr "Übersetzung ins Deutsche:" + +#. translators: 1: URL to Plugins screen, 2: URL to Themes screen, 3: +#. https://wordpress.org/about/license +#: wp-admin/freedoms.php:105 +msgid "Every plugin and theme in WordPress.org’s directory is 100%% GPL or a similarly free and compatible license, so you can feel safe finding plugins and themes there. If you get a plugin or theme from another source, make sure to ask them if it’s GPL first. If they don’t respect the WordPress license, we don’t recommend them." +msgstr "Jedes Plugin und Theme, das von WordPress.org heruntergeladen werden kann, ist zu 100 %% unter der GPL oder einer ähnlichen, kompatiblen Lizenz lizenziert. So kannst du von dort unbesorgt Plugins und Themes suchen und verwenden. Solltest du ein Plugin oder Theme aus einer anderen Quelle verwenden, so solltest du vorher erfragen ob das Produkt gemäß der GPL lizenziert ist. Falls dieses Produkt die WordPress-Lizenz nicht respektiert, können wir es nicht empfehlen." + +#. translators: %s: https://wordpressfoundation.org/trademark-policy +#: wp-admin/freedoms.php:93 +msgid "WordPress grows when people like you tell their friends about it, and the thousands of businesses and services that are built on and around WordPress share that fact with their users. We’re flattered every time someone spreads the good word, just make sure to check out our trademark guidelines first." +msgstr "WordPress entwickelt sich weiter, wenn Menschen wie du ihren Freunden und Freundinnen davon erzählen, und die tausenden Firmen und Dienstleister, die WordPress einsetzen, diese Tatsache mit ihren Kunden teilen. Wir sind jedes Mal begeistert, wenn jemand etwas Gutes weiterempfiehlt, bitte beachte dabei den Leitfaden zur Verwendung der Marke WordPress (engl.)." + +#. translators: %s: https://wordpress.org/about/license +#: wp-admin/freedoms.php:53 +msgid "WordPress is Free and open source software, built by a distributed community of mostly volunteer developers from around the world. WordPress comes with some awesome, worldview-changing rights courtesy of its license, the GPL." +msgstr "WordPress ist eine freie, kostenlose und quelloffene (Open Source) Software, programmiert von größtenteils freiwilligen Personen auf der ganzen Welt. WordPress steht unter einer sehr großzügigen und viele Freiheiten gewährenden Lizenz (engl.), der GPL." + +#: wp-admin/menu.php:109 +msgid "All Comments" +msgstr "Alle Kommentare" + +#: wp-admin/credits.php:139 +msgid "Lead Developer" +msgstr "Leitende Entwicklung" + +#: wp-admin/credits.php:138 +msgid "Cofounder, Project Lead" +msgstr "Mitgründer, Projektleitung" + +#. translators: %s: The current WordPress version number. +#: wp-admin/credits.php:136 +msgid "Core Contributors to WordPress %s" +msgstr "Mitwirkende am Core von WordPress %s" + +#: wp-admin/credits.php:134 +msgid "Project Leaders" +msgstr "Projektleitung" + +#. translators: %s: https://make.wordpress.org +#: wp-admin/credits.php:69 +msgid "Want to see your name in lights on this page? Get involved in WordPress." +msgstr "Wenn du willst, dass auch dein Name auf dieser Seite erscheint, dann mach mit bei WordPress." + +#. translators: 1: https://wordpress.org/about/, 2: https://make.wordpress.org +#: wp-admin/credits.php:53 +msgid "WordPress is created by a worldwide team of passionate individuals. Get involved in WordPress." +msgstr "WordPress wird von einem weltweiten Team passionierter Menschen entwickelt. Bring dich in WordPress ein." + +#: wp-admin/credits.php:13 wp-admin/credits.php:37 wp-admin/credits.php:45 +#: wp-admin/privacy.php:34 wp-admin/freedoms.php:40 wp-admin/about.php:35 +msgid "Credits" +msgstr "Mitwirkende" + +#: wp-admin/widgets.php:441 +msgctxt "removing-widget" +msgid "Deactivate" +msgstr "Deaktivieren" + +#: wp-admin/includes/dashboard.php:34 +msgid "Your browser is out of date!" +msgstr "Dein Browser ist veraltet!" + +#: wp-admin/includes/dashboard.php:32 +msgid "You are using an insecure browser!" +msgstr "Du verwendest einen unsicheren Browser!" + +#: wp-admin/freedoms.php:113 +msgid "Don’t you wish all software came with these freedoms? So do we! For more information, check out the Free Software Foundation." +msgstr "Wünschst du dir nicht auch, dass jede Software diese Freiheiten bietet? Wir auch! Weitere Informationen findest du auf der Seite der Free Software Foundation." + +#: wp-admin/credits.php:38 wp-admin/privacy.php:35 wp-admin/freedoms.php:18 +#: wp-admin/freedoms.php:41 wp-admin/freedoms.php:47 wp-admin/about.php:36 +msgid "Freedoms" +msgstr "Freiheiten" + +#: wp-admin/includes/class-custom-image-header.php:665 +msgid "You can use one of these cool headers or show a random one on each page." +msgstr "Du kannst eines dieser coolen Bilder wählen oder auf jeder Seite ein unterschiedliches Bild per Zufallsgenerator anzeigen lassen." + +#: wp-admin/includes/class-custom-image-header.php:663 +msgid "If you don‘t want to upload your own image, you can use one of these cool headers, or show a random one." +msgstr "Falls du kein eigenes Bild hochladen möchtest, kannst du aus bereits vorgefertigten Grafiken wählen oder auf jeder Seite ein unterschiedliches Bild per Zufallsgenerator anzeigen lassen. " + +#: wp-admin/includes/class-custom-image-header.php:649 +msgid "You can choose one of your previously uploaded headers, or show a random one." +msgstr "Du kannst eines der von dir hochgeladenen Bilder wählen oder sie in zufälliger Reihenfolge anzeigen lassen." + +#: wp-admin/menu-header.php:280 +msgid "Collapse menu" +msgstr "Menü einklappen" + +#: wp-admin/includes/class-custom-image-header.php:647 +msgid "Uploaded Images" +msgstr "Hochgeladene Bilder" + +#: wp-admin/includes/class-custom-image-header.php:294 +msgid "Random: Show a different image on each page." +msgstr "Zufällig: Auf jeder Seite ein zufälliges Bild anzeigen." + +#: wp-admin/includes/theme.php:321 wp-admin/includes/theme.php:357 +#: wp-admin/includes/class-wp-screen.php:1202 wp-admin/index.php:68 +msgid "Layout" +msgstr "Layout" + +#: wp-admin/users.php:282 +msgid "You have specified this user for deletion:" +msgstr "Du hast diesen Benutzer zum Löschen ausgewählt:" + +#: wp-admin/user-edit.php:201 +msgid "← Back to Users" +msgstr "← Zurück zu Benutzer" + +#. translators: 1: Current page, 2: Total pages. +#: wp-admin/includes/class-wp-list-table.php:919 +msgctxt "paging" +msgid "%1$s of %2$s" +msgstr "%1$s von %2$s" + +#. translators: %s: Template name. +#: wp-admin/includes/file.php:92 +msgid "%s Page Template" +msgstr "%s Seiten-Template" + +#: wp-admin/includes/ajax-actions.php:4548 wp-admin/plugins.php:622 +msgid "You cannot delete a plugin while it is active on the main site." +msgstr "Du kannst ein Plugin nicht löschen, so lange es noch auf der Haupt-Website aktiv ist." + +#: wp-admin/plugins.php:342 +msgid "This plugin may be active on other sites in the network." +msgstr "Dieses Plugin könnte noch auf anderen Seiten dieses Netzwerks aktiv sein." + +#: wp-admin/options-writing.php:98 +msgid "Default Post Format" +msgstr "Standard-Beitragsformat" + +#: wp-admin/user-edit.php:229 wp-admin/users.php:568 +msgctxt "user" +msgid "Add Existing" +msgstr "Bestehenden hinzufügen" + +#: wp-admin/theme-editor.php:45 wp-admin/plugin-editor.php:136 +msgid "Any edits to files from this screen will be reflected on all sites in the network." +msgstr "Jegliche Änderungen an Dateien über diese Bearbeitungsfunktion betreffen alle Websites im Netzwerk." + +#: wp-admin/users.php:33 +msgid "This screen lists all the existing users for your site. Each user has one of five defined roles as set by the site admin: Site Administrator, Editor, Author, Contributor, or Subscriber. Users with roles other than Administrator will see fewer options in the dashboard navigation when they are logged in, based on their role." +msgstr "Diese Übersichtsseite zeigt alle Benutzer deiner Website an. Jeder Benutzer hat eine von fünf vordefinierten Rollen, welche durch den Administrator vergeben werden können: Administrator, Redakteur, Autor, Mitarbeiter, Abonnent. Benutzer die keine Administrator-Rolle haben, sehen je nach Benutzerrolle, nicht alle Einstellungen, Optionen etc." + +#: wp-admin/plugin-editor.php:135 +msgid "If you want to make changes but don’t want them to be overwritten when the plugin is updated, you may be ready to think about writing your own plugin. For information on how to edit plugins, write your own from scratch, or just better understand their anatomy, check out the links below." +msgstr "" +"Falls du nicht willst, dass gemachte Änderungen bei einer Plugin-Aktualisierung überschrieben werden, so solltest du darüber nachdenken, ein eigenes Plugin zu schreiben. \n" +"Unter Weitere Informationen findest du Links, die den Aufbau und die Funktionsweise von WordPress-Plugins erklären." + +#: wp-admin/index.php:73 +msgid "The boxes on your Dashboard screen are:" +msgstr "Folgende Boxen gibt es im Dashboard:" + +#. translators: Default page slug. +#: wp-admin/includes/upgrade.php:337 +msgid "sample-page" +msgstr "beispiel-seite" + +#: wp-admin/includes/upgrade.php:335 +msgid "Sample Page" +msgstr "Beispiel-Seite" + +#: wp-admin/options-discussion.php:281 +msgid "Retro (Generated)" +msgstr "Retro (automatisch generiert)" + +#. translators: %s: URL to Themes tab on Edit Site screen. +#: wp-admin/includes/class-wp-themes-list-table.php:111 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable more themes." +msgstr "Du hast momentan nur ein Theme für diese Website freigeschaltet. In der Netzwerkverwaltung kannst du weitere Themes freischalten." + +#. translators: 1: URL to Themes tab on Edit Site screen, 2: URL to Add Themes +#. screen. +#: wp-admin/includes/class-wp-themes-list-table.php:102 +msgid "You only have one theme enabled for this site right now. Visit the Network Admin to enable or install more themes." +msgstr "Du hast momentan nur ein Theme für diese Website freigeschaltet. In der Netzwerkverwaltung kannst du weitere Themes freischalten oder installieren." + +#: wp-admin/user-edit.php:438 +msgid "Super admin privileges cannot be removed because this user has the network admin email." +msgstr "Diesem Benutzer können nicht die Super-Administratoren-Rechte entzogen werden, da dieser Benutzer als E-Mail-Adresse die des Netzwerk-Administrators hat." + +#. translators: %s: URL to Add Themes screen. +#: wp-admin/includes/class-wp-themes-list-table.php:122 +msgid "You only have one theme installed right now. Live a little! You can choose from over 1,000 free themes in the WordPress Theme Directory at any time: just click on the Install Themes tab above." +msgstr "Du hast momentan nur ein Theme installiert. Für etwas Abwechslung kannst du jederzeit aus über 1.000 kostenlosen Themes des WordPress.org-Themeverzeichnisses wählen: Klicke einfach auf den oben stehenden Button Themes hinzufügen." + +#: wp-admin/maint/repair.php:162 +msgid "One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient." +msgstr "Mindestens eine Datenbanktabelle ist nicht erreichbar. WordPress kann versuchen, diese Tabellen zu reparieren. Klicke dazu auf den Button „Datenbank reparieren“. Die Reparatur kann etwas Zeit in Anspruch nehmen, habe also bitte etwas Geduld." + +#: wp-admin/includes/file.php:55 +msgid "Visual Editor RTL Stylesheet" +msgstr "Stylesheet für linksläufige Sprachen im visuellen Editor" + +#: wp-admin/theme-editor.php:307 +msgid "This is a file in your current parent theme." +msgstr "Dies ist eine Datei des aktuell verwendeten übergeordneten Eltern-Themes." + +#. translators: %s: Link to edit parent theme. +#: wp-admin/theme-editor.php:258 +msgid "This child theme inherits templates from a parent theme, %s." +msgstr "Dieses Child-Theme greift auf Dateien des übergeordneten Eltern-Themes %s zurück." + +#: wp-admin/includes/class-theme-installer-skin.php:150 +#: wp-admin/js/updates.js:1355 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:469 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:577 +msgid "Network Enable" +msgstr "Netzwerkweit freischalten" + +#: wp-admin/upgrade.php:153 +msgid "Your WordPress database has been successfully updated!" +msgstr "Deine WordPress-Datenbank wurde erfolgreich aktualisiert." + +#: wp-admin/upgrade.php:152 +msgid "Update Complete" +msgstr "Aktualisierung erfolgreich" + +#: wp-admin/upgrade.php:142 +msgid "Update WordPress Database" +msgstr "WordPress-Datenbank aktualisieren" + +#: wp-admin/upgrade.php:141 wp-admin/network/upgrade.php:143 +msgid "The database update process may take a little while, so please be patient." +msgstr "Die Aktualisierung der Datenbank könnte etwas dauern, bitte hab einen Moment Geduld." + +#: wp-admin/upgrade.php:140 +msgid "WordPress has been updated! Before we send you on your way, we have to update your database to the newest version." +msgstr "WordPress wurde aktualisiert! Ehe du dich drauf stürzen kannst, müssen wir noch deine Datenbank auf die neueste Version bringen." + +#: wp-admin/upgrade.php:139 wp-admin/network/upgrade.php:139 +msgid "Database Update Required" +msgstr "Es ist eine Aktualisierung der Datenbank notwendig" + +#: wp-admin/upgrade.php:72 +msgid "No Update Required" +msgstr "Keine Aktualisierung notwendig" + +#: wp-admin/upgrade.php:64 +msgid "WordPress › Update" +msgstr "WordPress › Aktualisierung" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:169 +msgid "You are about to install WordPress %s in English (US). There is a chance this update will break your translation. You may prefer to wait for the localized version to be released." +msgstr "Du bist dabei, WordPress %s in Englisch (US) zu installieren. Es kann sein, dass diese Aktualisierung deine Übersetzung beschädigt. Du solltest vielleicht besser warten, bis eine lokalisierte Version erschienen ist." + +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/update.php:485 +msgid "There is a new version of %1$s available. View version %4$s details. Automatic update is unavailable for this plugin." +msgstr "Eine neue Version von %1$s ist verfügbar. Details der Version %4$s ansehen. Eine automatische Aktualisierung für dieses Plugin ist nicht verfügbar." + +#: wp-admin/includes/class-theme-upgrader-skin.php:44 wp-admin/update.php:209 +msgid "Update Theme" +msgstr "Theme aktualisieren" + +#: wp-admin/includes/class-plugin-upgrader-skin.php:62 wp-admin/update.php:62 +msgid "Update Plugin" +msgstr "Plugin aktualisieren" + +#: wp-admin/includes/class-theme-upgrader.php:64 +#: wp-admin/includes/class-theme-upgrader.php:101 +msgid "Theme updated successfully." +msgstr "Das Theme wurde erfolgreich aktualisiert." + +#: wp-admin/includes/class-theme-upgrader.php:63 +#: wp-admin/includes/class-theme-upgrader.php:100 +#: wp-admin/includes/ajax-actions.php:4214 +msgid "Theme update failed." +msgstr "Theme-Aktualisierung fehlgeschlagen." + +#: wp-admin/includes/class-plugin-upgrader.php:65 +#: wp-admin/includes/class-plugin-upgrader.php:92 +msgid "Plugin updated successfully." +msgstr "Das Plugin wurde erfolgreich aktualisiert." + +#: wp-admin/includes/class-plugin-upgrader.php:64 +#: wp-admin/includes/class-plugin-upgrader.php:91 +#: wp-admin/includes/ajax-actions.php:4505 +msgid "Plugin update failed." +msgstr "Plugin-Aktualisierung fehlgeschlagen." + +#: wp-admin/includes/class-plugin-upgrader.php:58 +#: wp-admin/includes/class-theme-upgrader.php:57 +#: wp-admin/includes/class-core-upgrader.php:31 +#: wp-admin/includes/class-language-pack-upgrader.php:115 +msgid "Update package not available." +msgstr "Aktualisierungs-Paket nicht verfügbar." + +#: wp-admin/export.php:208 wp-admin/export.php:255 wp-admin/export.php:295 +msgid "Date range:" +msgstr "Zeitraum:" + +#: wp-admin/export.php:191 wp-admin/export.php:238 +msgid "Authors:" +msgstr "Autoren:" + +#: wp-admin/export.php:181 +msgid "This will contain all of your posts, pages, comments, custom fields, terms, navigation menus, and custom posts." +msgstr "Der Export enthält dann alle Beiträge, Seiten, Kommentare, Individuelle Felder, Kategorien, Schlagwörter, Navigationsmenüs und Individuelle Inhaltstypen." + +#: wp-admin/export.php:180 +msgid "All content" +msgstr "Alle Inhalte" + +#: wp-admin/export.php:175 +msgid "Choose what to export" +msgstr "Wähle, was du exportieren möchtest" + +#. translators: %s: Number of comments. +#: wp-admin/includes/class-wp-comments-list-table.php:247 +msgctxt "comments" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Mein (%s)" +msgstr[1] "Meine (%s)" + +#. translators: Admin screen title. %s: Admin screen name. +#: wp-admin/admin-header.php:49 +msgid "%s — WordPress" +msgstr "%s – WordPress" + +#: wp-admin/widgets.php:58 +msgid "The Available Widgets section contains all the widgets you can choose from. Once you drag a widget into a sidebar, it will open to allow you to configure its settings. When you are happy with the widget settings, click the Save button and the widget will go live on your site. If you click Delete, it will remove the widget." +msgstr "Im Bereich Verfügbare Widgets siehst du alle Widgets, die du benutzen kannst, indem du sie einfach auf eine Seitenleiste bzw. Widget-Bereich ziehst. Mit einem Klick auf den Pfeil im Widget-Titel werden alle Optionen des Widgets angezeigt. Vergiss nicht, nach den Änderungen eines Widgets auf „Speichern“ zu klicken. Mit einem Klick auf „Löschen“ wird das Widget und seine Einstellungen entfernt." + +#: wp-admin/media.php:90 wp-admin/edit-form-advanced.php:347 +msgid "Remember to click Update Media to save metadata entered or changed." +msgstr "Vergiss nicht, zum Schluss auf „Aktualisieren“ zu klicken, damit deine Eingaben oder Änderungen auch gespeichert werden." + +#: wp-admin/media.php:89 wp-admin/edit-form-advanced.php:346 +msgid "Note that you crop the image by clicking on it (the Crop icon is already selected) and dragging the cropping frame to select the desired part. Then click Save to retain the cropping." +msgstr "" +"Du kannst ein Bild zuschneiden, indem du in das Bild klickst, die Maustaste gedrückt hälst und den erscheinenden Auswahlrahmen über das Bild ziehst. Der Auswahlrahmen kann auch nachträglich verschoben oder verändert werden. Klicke dann auf „Speichern“, um den Zuschnitt zu übernehmen. \n" +"Beachte auch, dass die Zuschneide-Funktion bereits automatisch aktiviert ist, wenn du ein Bild zum Bearbeiten öffnest." + +#: wp-admin/media.php:88 wp-admin/edit-form-advanced.php:345 +msgid "For images only, you can click on Edit Image under the thumbnail to expand out an inline image editor with icons for cropping, rotating, or flipping the image as well as for undoing and redoing. The boxes on the right give you more options for scaling the image, for cropping it, and for cropping the thumbnail in a different way than you crop the original image. You can click on Help in those boxes to get more information." +msgstr "Nur bei den Bildern kannst du auf „Original bearbeiten“ unter dem Thumbnail klicken, um einen Inline-Bildeditor mit Symbolen zum Zuschneiden, Drehen oder Spiegeln des Bildes sowie zum Rückgängigmachen und Wiederherstellen zu erweitern. Die Kästchen auf der rechten Seite bieten dir mehr Möglichkeiten, das Bild zu skalieren, es zu beschneiden und das Miniaturbild anders zu beschneiden als das Originalbild. Du kannst dort auch auf das Hilfe „?“ klicken, um weitere Informationen zu erhalten." + +#: wp-admin/media.php:87 wp-admin/edit-form-advanced.php:344 +msgid "This screen allows you to edit fields for metadata in a file within the media library." +msgstr "In dieser Ansicht kannst du Metadaten-Felder in einer Datei innerhalb der Mediathek bearbeiten." + +#: wp-admin/user-new.php:393 +msgid "Email or Username" +msgstr "E-Mail-Adresse oder Benutzername" + +#: wp-admin/themes.php:231 wp-admin/network/themes.php:417 +#: wp-admin/network/site-themes.php:215 +msgid "Search Installed Themes" +msgstr "Installierte Themes durchsuchen" + +#. translators: %s: Link to documentation on child themes. +#: wp-admin/update-core.php:479 +msgid "Please Note: Any customizations you have made to theme files will be lost. Please consider using child themes for modifications." +msgstr "Beachte bitte: Alle Anpassungen, die du an Theme-Dateien vorgenommen hast, werden verloren gehen. Ziehe in Erwägung, Child-Themes (engl.) zu nutzen, um Modifikationen vorzunehmen." + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:380 +msgctxt "posts" +msgid "Sticky (%s)" +msgid_plural "Sticky (%s)" +msgstr[0] "Oben gehalten (%s)" +msgstr[1] "Oben gehalten (%s)" + +#: wp-admin/update-core.php:880 +msgid "Check Again" +msgstr "Erneut überprüfen" + +#. translators: 1: Date, 2: Time. +#: wp-admin/update-core.php:879 +msgid "Last checked on %1$s at %2$s." +msgstr "Zuletzt überprüft am %1$s um %2$s Uhr." + +#: wp-admin/update-core.php:865 +msgid "Please select one or more plugins to update." +msgstr "Bitte wähle ein oder mehrere Plugins, die aktualisiert werden sollen." + +#: wp-admin/update-core.php:863 +msgid "Please select one or more themes to update." +msgstr "Bitte wähle ein oder mehrere Themes, die aktualisiert werden sollen." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:41 +msgid "The update process is starting. This process may take a while on some hosts, so please be patient." +msgstr "Der Aktualisierungsprozess beginnt. Dies kann eine Weile dauern, bitte hab etwas Geduld." + +#: wp-admin/theme-install.php:208 wp-admin/theme-install.php:231 +msgid "Apply Filters" +msgstr "Filter anwenden" + +#: wp-admin/includes/theme.php:310 +msgid "Editor Style" +msgstr "Stylesheet für Editor" + +#: wp-admin/includes/file.php:2175 +msgid "To perform the requested action, WordPress needs to access your web server." +msgstr "Um diese Aktion durchführen zu können, benötigt WordPress Zugriff auf deinen Webserver." + +#: wp-admin/includes/class-wp-list-table.php:907 +#: wp-admin/includes/class-wp-list-table.php:911 +msgid "Current Page" +msgstr "Aktuelle Seite" + +#: wp-admin/includes/class-wp-theme-install-list-table.php:168 +msgid "No themes match your request." +msgstr "Es wurde kein passendes Theme zu deiner Auswahl gefunden." + +#: wp-admin/includes/dashboard.php:471 wp-admin/includes/dashboard.php:473 +#: wp-admin/network/sites.php:386 +msgid "Search Sites" +msgstr "Websites durchsuchen" + +#: wp-admin/includes/dashboard.php:423 +msgid "Create a New User" +msgstr "Neuen Benutzer hinzufügen" + +#. translators: 1: Text indicating the number of sites on the network, 2: Text +#. indicating the number of users on the network. +#: wp-admin/includes/dashboard.php:435 +msgid "You have %1$s and %2$s." +msgstr "Du hast %1$s und %2$s." + +#. translators: %s: Number of sites on the network. +#: wp-admin/includes/dashboard.php:432 +msgid "%s site" +msgid_plural "%s sites" +msgstr[0] "%s Website" +msgstr[1] "%s Websites" + +#. translators: %s: Number of users on the network. +#: wp-admin/includes/dashboard.php:430 +msgid "%s user" +msgid_plural "%s users" +msgstr[0] "%s Benutzer" +msgstr[1] "%s Benutzer" + +#: wp-admin/includes/dashboard.php:1443 +msgid "https://wordpress.org/news/feed/" +msgstr "https://de.wordpress.org/category/release/feed/" + +#: wp-admin/includes/dashboard.php:1434 +msgid "https://wordpress.org/news/" +msgstr "https://de.wordpress.org/news/" + +#: wp-admin/options-discussion.php:73 +msgid "(Signup has been disabled. Only members of this site can comment.)" +msgstr "(Die Registrierung ist deaktiviert. Nur Benutzer dieser Website können kommentieren.)" + +#. translators: 1: Theme name, 2: Theme details URL, 3: Additional link +#. attributes, 4: Version number. +#. translators: 1: Plugin name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#. translators: 1: Theme name, 2: Details URL, 3: Additional link attributes, +#. 4: Version number. +#: wp-admin/includes/theme.php:204 wp-admin/includes/update.php:472 +#: wp-admin/includes/update.php:665 +msgid "There is a new version of %1$s available. View version %4$s details." +msgstr "Eine neue Version von %1$s ist verfügbar. Details der Version %4$s ansehen." + +#: wp-admin/includes/nav-menu.php:1078 +msgid "Click Save Menu to make pending menu items public." +msgstr "Klicke auf Menü speichern, damit gemachte Änderungen übernommen werden." + +#: wp-admin/includes/dashboard.php:1549 +msgid "Storage Space" +msgstr "Speicherplatz" + +#: wp-admin/includes/dashboard.php:420 +msgid "Create a New Site" +msgstr "Neue Website erstellen" + +#. translators: 1: Image width in pixels, 2: Image height in pixels. +#: wp-admin/includes/class-custom-image-header.php:555 +msgid "Images of exactly %1$d × %2$d pixels will be used as-is." +msgstr "Bilder mit genau %1$d × %2$d Pixel werden benutzt, wie sie sind." + +#: wp-admin/includes/class-custom-image-header.php:875 +msgid "Crop and Publish" +msgstr "Zuschneiden und veröffentlichen" + +#: wp-admin/edit-link-form.php:70 +msgid "XFN stands for XHTML Friends Network, which is optional. WordPress allows the generation of XFN attributes to show how you are related to the authors/owners of the site to which you are linking." +msgstr "XFN steht für XHTML Friends Network und ist eine freiwillige Angabe. WordPress erlaubt durch die Verwendung des XFN-Attributes anzugeben, in welchem Verhältnis du zu den Autoren/Inhabern der von dir verlinkten Website stehst." + +#: wp-admin/includes/file.php:2185 +msgid "FTP Password" +msgstr "FTP-Passwort" + +#: wp-admin/includes/file.php:2184 +msgid "FTP Username" +msgstr "FTP-Benutzername" + +#: wp-admin/includes/file.php:2181 +msgid "FTP/SSH Password" +msgstr "FTP-/SSH-Passwort" + +#: wp-admin/includes/file.php:2180 +msgid "FTP/SSH Username" +msgstr "FTP-/SSH-Benutzername" + +#: wp-admin/widgets.php:76 +msgid "Many themes show some sidebar widgets by default until you edit your sidebars, but they are not automatically displayed in your sidebar management tool. After you make your first widget change, you can re-add the default widgets by adding them from the Available Widgets area." +msgstr "Viele Themes zeigen bereits von Haus aus bestimmte widgetähnliche Navigationselemente in den Navigationsbereichen (Seitenleiste). Diese werden oft deaktivert, sobald du eigene Widgets hinzufügst. Du kannst jedoch einfach die ursprünglich benutzten Widgets erneut hinzufügen." + +#. translators: %s: URL to create a new page. +#: wp-admin/options-reading.php:28 +msgid "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." +msgstr "Du kannst auswählen, was auf der Startseite deiner Website angezeigt wird. Entweder die letzten Beiträge in umgekehrt chronologischer Sortierung (also ein klassischer Blog) oder eine bestimmte (statische) Seite. Willst du eine statische Seite als Startseite festlegen, so solltest du zwei Seiten anlegen. Eine wird die Startseite, auf der anderen werden dann die Beiträge angezeigt werden. Beachte dazu auch den weiterführenden Link rechts in der Seitenleiste dieser Hilfe." + +#: wp-admin/options-permalink.php:53 +msgid "The Optional fields let you customize the “category” and “tag” base names that will appear in archive URLs. For example, the page listing all posts in the “Uncategorized” category could be /topics/uncategorized instead of /category/uncategorized." +msgstr "Unter Optional kannst du den Basis-Namen des Kategorie-Archivs (Standard: category) oder Schlagwort-Archivs (Standard: tag) individuell anpassen; quasi den Begriff, der dann in Archiv-URLs erscheint. Zum Beispiel würde die Seite, die alle Beiträge der Kategorie „Allgemein“ anzeigt, anstatt bisher category/allgemein/ stattdessen thema/allgemein sein. Wenn du nichts eingibst, werden die Standardwerte benutzt." + +#. translators: 1: %category%, 2: %tag% +#: wp-admin/options-permalink.php:41 +msgid "When you assign multiple categories or tags to a post, only one can show up in the permalink: the lowest numbered category. This applies if your custom structure includes %1$s or %2$s." +msgstr "Wenn du einem Beitrag mehrere Kategorien oder Schlagwörter zuweist, kann nur eine im Permalink erscheinen: die am niedrigsten nummerierte Kategorie. Dies gilt, wenn deine individuelle Struktur %1$s oder %2$s enthält." + +#. translators: %s: Percent sign (%). +#: wp-admin/options-permalink.php:36 +msgid "If you pick an option other than Plain, your general URL path with structure tags (terms surrounded by %s) will also appear in the custom structure field and your path can be further modified there." +msgstr "Falls du eine andere Struktur als „Einfach“ auswählst, wird dein genereller URL-Pfad mit Struktur-Schlagwörtern (Begriffe umschlossen mit %s) direkt in das individuelle Struktur-Feld übertragen und du kannst den Pfad auf Wunsch noch weiter anpassen." + +#: wp-admin/widgets.php:66 +msgid "If you want to remove the widget but save its setting for possible future use, just drag it into the Inactive Widgets area. You can add them back anytime from there. This is especially helpful when you switch to a theme with fewer or different widget areas." +msgstr "Falls du ein Widget nur temporär nicht mehr benutzen möchtest, dann ziehe es in den Bereich Inaktive Widgets. Die Einstellungen des Widgets bleiben dann erhalten." + +#: wp-admin/users.php:34 +msgid "To add a new user for your site, click the Add New button at the top of the screen or Add New in the Users menu section." +msgstr "Um einen neuen Benutzer anzulegen, klicke auf den Button „Neu hinzufügen“ in dieser Seite oder im Menü unter Benutzer." + +#: wp-admin/options-media.php:19 +msgid "You can set maximum sizes for images inserted into your written content; you can also insert an image as Full Size." +msgstr "Du kannst auf dieser Seite einstellen, welche Größe Bilder maximal haben sollen, wenn sie eingefügt werden. Dir bleibt aber unabhängig davon immer noch die Möglichkeit, ein Bild auch in seiner ursprünglichen Größe einzufügen." + +#: wp-admin/options-general.php:27 +msgid "Most themes display the site title at the top of every page, in the title bar of the browser, and as the identifying name for syndicated feeds. The tagline is also displayed by many themes." +msgstr "Der Titel der Website ist wichtig, da er zum Beispiel in der Titelleiste des Browsers und auch meist direkt auf der Startseite sowie in Newsfeeds angezeigt wird. Der Untertitel (eine weitere Beschreibung der Seite) wird ebenfalls von vielen Themes angezeigt. Sowohl Titel als auch Beschreibung sollten im Hinblick auf die Darstellung in Suchmaschinen, sinnvoll gewählt werden." + +#: wp-admin/edit-form-advanced.php:412 +msgid "Order — Pages are usually ordered alphabetically, but you can choose your own order by entering a number (1 for first, etc.) in this field." +msgstr "Reihenfolge – Falls du nicht die Funktion des individuellen Menüs nutzt, kannst du hier festlegen, in welcher Reihenfolge die Seiten in der Seitenauflistung angezeigt werden sollen. Je größer die Zahl, desto weiter hinten wird die Seite angezeigt. Beachte, dass dies eventuell nicht bei allen Themes funktioniert." + +#: wp-admin/includes/file.php:2189 +msgid "If you do not remember your credentials, you should contact your web host." +msgstr "Falls du deine Zugangsdaten vergessen hast, solltest du bei deinem Provider nachfragen." + +#: wp-admin/includes/file.php:2183 +msgid "Please enter your FTP credentials to proceed." +msgstr "Bitte gib die FTP-Zugangsdaten ein, um fortzufahren." + +#: wp-admin/includes/file.php:2179 +msgid "Please enter your FTP or SSH credentials to proceed." +msgstr "Bitte gib die FTP- oder SSH-Zugangsdaten ein, um fortzufahren." + +#: wp-admin/user-edit.php:49 +msgid "Your profile contains information about you (your “account”) as well as some personal options related to using WordPress." +msgstr "Dein Profil enthält die Informationen deines Benutzerkontos und einige persönliche Einstellungen für die Benutzung von WordPress." + +#. translators: %s: /wp-content/themes +#: wp-admin/theme-install.php:105 +msgid "You can Upload a theme manually if you have already downloaded its ZIP archive onto your computer (make sure it is from a trusted and original source). You can also do it the old-fashioned way and copy a downloaded theme’s folder via FTP into your %s directory." +msgstr "Hast du bereits ein Theme in einer ZIP-Datei (stelle sicher, dass es von einer vertrauenswürdigen Quelle stammt), kannst du es direkt über diese Oberfläche durch einen Klick auf „Theme hochladen“ hochladen und verwenden. Du kannst es aber auch auf deinem Computer entpacken und den gesamten Theme-Ordner via FTP in das Verzeichnis %s kopieren." + +#: wp-admin/edit-form-advanced.php:399 +msgid "Send Trackbacks — Trackbacks are a way to notify legacy blog systems that you’ve linked to them. Enter the URL(s) you want to send trackbacks. If you link to other WordPress sites they’ll be notified automatically using pingbacks, and this field is unnecessary." +msgstr "Trackbacks senden – Mittels Trackbacks teilst du älteren Blogsystemen mit, dass du diese verlinkt hast. Trage einfach die URLs ein, an die du Trackbacks senden willst. Wenn du im Beitrag einen WordPress-Blog verlinkt hast, so wird automatisch ein Pingback gesendet und du musst das Trackbackfeld nicht mehr ausfüllen." + +#: wp-admin/user-new.php:258 +msgid "Contributors can write and manage their posts but not publish posts or upload media files." +msgstr "Mitarbeiter können eigene Beiträge schreiben und bearbeiten, sie jedoch nicht veröffentlichen. Auch dürfen sie keine Dateien hochladen." + +#: wp-admin/user-new.php:261 +msgid "Administrators have access to all the administration features." +msgstr "Administratoren haben vollen Zugriff auf alle administrativen Funktionen." + +#: wp-admin/plugin-editor.php:126 +msgid "You can use the plugin editor to make changes to any of your plugins’ individual PHP files. Be aware that if you make changes, plugins updates will overwrite your customizations." +msgstr "Du kannst den Plugin-Editor benutzen, um eigene Änderungen in ein Plugin einzubringen. Beachte aber, dass gemachte Änderungen verloren gehen, wenn du ein Plugin aktualisierst. " + +#: wp-admin/link-manager.php:72 +msgid "If you delete a link, it will be removed permanently, as Links do not have a Trash function yet." +msgstr "Wenn du einen Link löschst, dann wird er endgültig entfernt, da es noch keinen Papierkorb für Links gibt." + +#. translators: %s: URL to Widgets screen. +#: wp-admin/link-manager.php:60 +msgid "You can add links here to be displayed on your site, usually using Widgets. By default, links to several sites in the WordPress community are included as examples." +msgstr "Du kannst Links normalerweise mithilfe von Widgets hinzufügen, die auf deiner Website angezeigt werden. Standardmäßig sind bereits Links zu Websites der WordPress-Community als Beispiele enthalten." + +#: wp-admin/edit-tags.php:284 +msgid "Slug — The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Titelform – Die „Titelform“ ist die lesbare URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen." + +#. translators: %s: URL to Press This bookmarklet. +#: wp-admin/edit-form-advanced.php:313 +msgid "You can also create posts with the Press This bookmarklet." +msgstr "Du kannst auch Beiträge erstellen, indem du das Press This Bookmarklet verwendest." + +#: wp-admin/includes/class-custom-background.php:93 +msgid "Don’t forget to click on the Save Changes button when you are finished." +msgstr "Vergiss nicht, zum Schluss auf „Änderungen speichern“ zu klicken." + +#: wp-admin/includes/class-custom-background.php:90 +msgid "You can customize the look of your site without touching any of your theme’s code by using a custom background. Your background can be an image or a color." +msgstr "Du kannst das Aussehen deiner Website verändern, indem du einen individuellen Hintergrund verwendest. Dies kann ein Bild oder eine Farbe sein." + +#: wp-admin/user-new.php:260 +msgid "Editors can publish posts, manage posts as well as manage other people’s posts, etc." +msgstr "Redakteure können Beiträge und Seiten veröffentlichen und verwalten, und auch die Beiträge, Seiten etc. von anderen Benutzern verwalten." + +#: wp-admin/user-edit.php:55 +msgid "Remember to click the Update Profile button when you are finished." +msgstr "Vergiss nicht, zum Schluss auf den Button „Profil aktualisieren“ zu klicken." + +#: wp-admin/user-edit.php:54 +msgid "Required fields are indicated; the rest are optional. Profile information will only be displayed if your theme is set up to do so." +msgstr "Obligatorisch auszufüllende Eingabefelder werden als solche markiert. Die Eingaben unter „Kontaktinfo“ oder „Über dich“ werden nur angezeigt, falls das verwendete Theme entsprechend eingerichtet ist. Für gewöhnlich ist das nicht der Fall." + +#: wp-admin/user-edit.php:52 +msgid "Your username cannot be changed, but you can use other fields to enter your real name or a nickname, and change which name to display on your posts." +msgstr "Der Benutzername kann nicht geändert werden. Jedoch können die anderen Felder ausgefüllt und anschließend ausgewählt werden, welcher Name (Benutzername, Realname, Spitzname) öffentlich – zum Beispiel in Beiträgen – angezeigt werden soll." + +#: wp-admin/comment.php:64 +msgid "You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment." +msgstr "Du kannst auch Kommentare über diese Seite moderieren, indem du im Modul Status die entsprechende Einstellung triffst. Es ist ebenso möglich, das Datum des Kommentars zu ändern." + +#: wp-admin/comment.php:63 +msgid "You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error." +msgstr "Du kannst einen Kommentartext auch bearbeiten, um zum Beispiel einen Rechtschreibfehler zu beheben." + +#. translators: %s: Documentation URL. +#: wp-admin/options-reading.php:33 +msgid "You can also control the display of your content in RSS feeds, including the maximum number of posts to display and whether to show full text or a summary. Learn more about feeds." +msgstr "Du kannst auch die Anzeige deiner Inhalte in RSS-Feeds steuern, einschließlich der maximalen Anzahl der anzuzeigenden Beiträge und der Möglichkeit, Volltext oder eine Zusammenfassung anzuzeigen. Erfahre mehr über Feeds (engl.)." + +#: wp-admin/options-reading.php:25 +msgid "This screen contains the settings that affect the display of your content." +msgstr "Diese Einstellungsseite beinhaltet die Optionen, welche die Darstellung deiner Inhalte regeln." + +#: wp-admin/options-general.php:35 +msgid "UTC means Coordinated Universal Time." +msgstr "UTC bedeutet Coordinated Universal Time beziehungsweise koordinierte Weltzeit." + +#: wp-admin/options-general.php:30 +msgid "The WordPress URL and the Site URL can be the same (example.com) or different; for example, having the WordPress core files (example.com/wordpress) in a subdirectory instead of the root directory." +msgstr "Der Website-URL und der WordPress-URL können sowohl gleich (example.com) als auch unterschiedlich sein. So kannst du WordPress-Core-Dateien zum Beispiel in einem Unterverzeichnis (example.com/wordpress) installieren statt im Stammverzeichnis." + +#: wp-admin/options-general.php:26 +msgid "The fields on this screen determine some of the basics of your site setup." +msgstr "Auf dieser Seite kannst du ein paar grundlegende Einstellungen vornehmen." + +#: wp-admin/options-reading.php:36 wp-admin/options-writing.php:24 +#: wp-admin/options-general.php:36 wp-admin/options-permalink.php:25 +#: wp-admin/options-permalink.php:45 wp-admin/options-permalink.php:54 +#: wp-admin/options-media.php:25 wp-admin/options-discussion.php:25 +msgid "You must click the Save Changes button at the bottom of the screen for new settings to take effect." +msgstr "Du musst jeweils den Button „Änderungen speichern“ unten auf dem Bildschirm klicken, damit neue Einstellungen wirksam werden." + +#: wp-admin/edit-link-form.php:69 +msgid "The boxes for link name, web address, and description have fixed positions, while the others may be repositioned using drag and drop. You can also hide boxes you don’t use in the Screen Options tab, or minimize boxes by clicking on the title bar of the box." +msgstr "Die Module für Name, Web-Adresse und Beschreibung sind auf dieser Seite fest positioniert. Alle anderen kannst du per Drag-and-drop (Ziehen und Ablegen) in ihrer Position verändern. Über den Tab „Ansicht anpassen“ kannst du Module auch ganz ausblenden." + +#: wp-admin/update-core.php:467 +msgid "Your themes are all up to date." +msgstr "Alle Themes sind auf dem neuesten Stand." + +#: wp-admin/update-core.php:308 +msgid "Your plugins are all up to date." +msgstr "Alle Plugins sind auf dem neuesten Stand." + +#: wp-admin/update-core.php:282 +msgid "While your site is being updated, it will be in maintenance mode. As soon as your updates are complete, this mode will be deactivated." +msgstr "Deine Website wird während des Aktualisierungsprozesses in einen Wartungsmodus geschaltet. Sobald die Aktualisierung abgeschlossen ist, wird der Wartungsmodus deaktiviert." + +#: wp-admin/update-core.php:259 +msgid "An updated version of WordPress is available." +msgstr "Es ist eine neue Version von WordPress verfügbar." + +#: wp-admin/update-core.php:229 +msgid "You have the latest version of WordPress." +msgstr "Du benutzt die aktuelle Version von WordPress." + +#: wp-admin/theme-editor.php:167 wp-admin/plugin-editor.php:169 +msgid "Function Name…" +msgstr "Funktionsname …" + +#: wp-admin/includes/class-plugin-installer-skin.php:133 +msgid "Return to Importers" +msgstr "Zurück zu den Importern" + +#: wp-admin/includes/class-plugin-installer-skin.php:104 +msgid "Activate Plugin & Run Importer" +msgstr "Plugin aktivieren und Import starten" + +#: wp-admin/edit-link-form.php:68 +msgid "You can add or edit links on this screen by entering information in each of the boxes. Only the link’s web address and name (the text you want to display on your site as the link) are required fields." +msgstr "Auf dieser Seite kannst du Links hinzufügen oder bearbeiten, indem du die Eingabefelder ausfüllst. Es werden jedoch nur der Name und die Web-Adresse benötigt – der Rest ist optional." + +#. translators: %s: URL to Categories to Tags Converter tool. +#: wp-admin/edit-tags.php:609 +msgid "Categories can be selectively converted to tags using the category to tag converter." +msgstr "Kategorien können mithilfe des Kategorie-in-Schlagwort-Konverters wahlweise in Schlagwörter umgewandelt werden." + +#: wp-admin/import.php:24 +msgid "This screen lists links to plugins to import data from blogging/content management platforms. Choose the platform you want to import from, and click Install Now when you are prompted in the popup window. If your platform is not listed, click the link to search the plugin directory for other importer plugins to see if there is one for your platform." +msgstr "Hier findest du eine Liste von Plugins, mit denen du Daten aus anderen Blog- oder CMS-Systemen importieren kannst. Wähle die Plattform, aus der du importieren möchtest und klicke auf „Installieren“ sobald du in einem Pop-up Fenster dazu aufgefordert wirst. Sollte deine Plattform hier nicht aufgelistet sein, kannst du über das WordPress.org-Plugin-Verzeichnis nach einem geeigneten Import-Plugin suchen, um dort hoffentlich etwas für deinen Daten-Import zu finden." + +#: wp-admin/export.php:51 +msgid "Once generated, your WXR file can be imported by another WordPress site or by another blogging platform able to access this format." +msgstr "Die generierte WXR-Datei kann in eine beliebige andere WordPress-Installation oder eine Blogging-Plattform importiert werden, die dieses Format unterstützt. (Beachte dabei bitte, dass diese Export-Funktion kein vollständiges Backup aller Dateien erstellt. Dies kann durch entsprechende Backup-Plugins realisiert werden.)" + +#: wp-admin/plugin-editor.php:127 +msgid "Choose a plugin to edit from the dropdown menu and click the Select button. Click once on any file name to load it in the editor, and make your changes. Don’t forget to save your changes (Update File) when you’re finished." +msgstr "Wähle zuerst im Drop-down-Menü das zu bearbeitende Plugin und klicke dann auf „Auswählen“. Anschließend werden auf der rechten Seite alle zum Plugin zugehörigen Dateien angezeigt, die du mit einem Klick auf den jeweiligen Dateinamen bearbeiten kannst. Vergiss nicht, zum Schluss die Änderungen mit einem Klick auf den Button „Datei aktualisieren“ zu speichern." + +#: wp-admin/link-manager.php:64 +msgid "You can customize the display of this screen using the Screen Options tab and/or the dropdown filters above the links table." +msgstr "Du kannst über den Tab „Ansicht anpassen“ die Darstellung anpassen und auch diverse Auswahlfilter anwenden, die direkt über der Tabelle mit den Links angezeigt werden." + +#: wp-admin/plugins.php:559 +msgid "Most of the time, plugins play nicely with the core of WordPress and with other plugins. Sometimes, though, a plugin’s code will get in the way of another plugin, causing compatibility issues. If your site starts doing strange things, this may be the problem. Try deactivating all your plugins and re-activating them in various combinations until you isolate which one(s) caused the issue." +msgstr "" +"Die meisten Plugins arbeiten hervorragend mit WordPress und anderen Plugins zusammen. Es kann jedoch passieren, dass ein Plugin Probleme unterschiedlicher Ausprägung verursachen kann. Wenn du sowas beobachtest, solltest du das zuletzt aktivierte Plugin deaktivieren. Manchmal ist es auch ratsam, testweise alle Plugins zu deaktivieren und schrittweise wieder zu reaktivieren und genau zu beobachten, ob die Probleme wieder auftreten.\n" +"Falls ein Pluginfehler deine Website so sehr beeinflusst, dass du gar keine Möglichkeit mehr hast, es auf normalem Wege zu deaktivieren, so kannst du es einfach über deinen FTP-Zugang löschen. Deine Plugins liegen im Verzeichnis /wp-content/plugins/." + +#: wp-admin/widgets.php:68 +msgid "Enabling Accessibility Mode, via Screen Options, allows you to use Add and Edit buttons instead of using drag and drop." +msgstr "Du kannst über den Tab „Ansicht anpassen“ auch den Zugänglichkeitsmodus aktivieren, wenn du anstelle von Drag-and-drop (Ziehen und Ablegen) lieber Buttons zum Hinzufügen und Entfernen verwenden möchtest." + +#: wp-admin/widgets.php:67 +msgid "Widgets may be used multiple times. You can give each widget a title, to display on your site, but it’s not required." +msgstr "Widgets können auch mehrfach verwendet werden. Du kannst Widgets auch Titel geben, die dann auf der Website angezeigt werden." + +#: wp-admin/widgets.php:57 +msgid "Widgets are independent sections of content that can be placed into any widgetized area provided by your theme (commonly called sidebars). To populate your sidebars/widget areas with individual widgets, drag and drop the title bars into the desired area. By default, only the first widget area is expanded. To populate additional widget areas, click on their title bars to expand them." +msgstr "Widgets sind eigenständige Module mit Inhalt, die in allen für Wigdets vorgesehene Bereiche deines Themes platziert werden können. (Dies ist meistens die Seitenleiste.) Um diese Widget-Bereiche, wie Seitenleiste oder Footer, individuell mit Widgets zu gestalten, ziehe einfach per Drag-and-drop vom Titel des Widget dieses in den entsprechenden Bereich. Standardmäßig ist nur der erste Widget-Bereich aufgeklappt. Um weitere Inhalte in Widget-Bereiche einzupflegen, klicke auf den Pfeil im Titel des Widget-Bereichs, um diesen aufzuklappen, die enthaltenen Widgets zu sehen und neue hinzuzufügen oder zu entfernen." + +#: wp-admin/theme-editor.php:39 +msgid "Advice: Think very carefully about your site crashing if you are live-editing the theme currently in use." +msgstr "Hinweis: Sei vorsichtig, wenn du ein Theme bearbeitest, welches gerade benutzt wird. " + +#: wp-admin/theme-editor.php:38 +msgid "After typing in your edits, click Update File." +msgstr "Vergiss nicht, zum Schluss auf „Datei aktualisieren“ zu klicken." + +#: wp-admin/theme-editor.php:30 +msgid "Begin by choosing a theme to edit from the dropdown menu and clicking the Select button. A list then appears of the theme’s template files. Clicking once on any file name causes the file to appear in the large Editor box." +msgstr "Wähle zuerst in der Auswahlbox das zu bearbeitende Theme und klicke dann auf „-Wähle-“. Anschließend werden auf der rechten Seite alle zum Theme zugehörigen Dateien angezeigt, die du mit einem Klick auf den jeweiligen Dateinamen bearbeiten kannst." + +#: wp-admin/theme-editor.php:29 +msgid "You can use the theme editor to edit the individual CSS and PHP files which make up your theme." +msgstr "Benutze den Theme-Editor, um Änderungen in den individuellen CSS- und PHP-Dateien vorzunehmen, die das Design ausmachen." + +#: wp-admin/includes/meta-boxes.php:948 +msgid "(no parent)" +msgstr "Hauptseite (keine Übergeordnete)" + +#: wp-admin/edit-form-advanced.php:411 +msgid "Template — Some themes have custom templates you can use for certain pages that might have additional features or custom layouts. If so, you’ll see them in this dropdown menu." +msgstr "Template – Manche Themes haben individuelle Templates, um verschiedenen Seiten individuelle Layouts oder zusätzliche Funktionen zuzuweisen. Sind Templates vorhanden, dann findest du diese im Drop-down-Menü." + +#: wp-admin/edit-form-advanced.php:410 +msgid "Parent — You can arrange your pages in hierarchies. For example, you could have an “About” page that has “Life Story” and “My Dog” pages under it. There are no limits to how many levels you can nest pages." +msgstr "Eltern – Wähle eine andere Seite aus, der diese Seite untergeordnet werden soll, um verschachtelte Seitenstrukturen aufzubauen. Zum Beispiel kannst du eine Seite „Über mich“ erstellen und dieser anschließend die Seiten „Mein Haus“, „Meine Familie“ und „Mein Auto“ unterordnen, indem du jeweils „Über mich“ als Eltern-Seite angibst." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:48 +msgid "All updates have been completed." +msgstr "Alle Aktualisierungen wurden vollständig durchgeführt." + +#: wp-admin/edit-tags.php:293 +msgid "You can change the display of this screen using the Screen Options tab to set how many items are displayed per screen and to display/hide columns in the table." +msgstr "Du kannst über den Ansicht-anpassen-Tab festlegen, wie viele Elemente pro Ansicht angezeigt werden sollen und welche Spalten du in der Tabelle anzeigen/verbergen willst." + +#: wp-admin/edit-tags.php:291 +msgid "Description — The description is not prominent by default; however, some themes may display it." +msgstr "Beschreibung – Die Beschreibung wird normalerweise nicht angezeigt. In manchen Themes kann das aber eventuell der Fall sein." + +#: wp-admin/edit-tags.php:281 +msgid "Name — The name is how it appears on your site." +msgstr "Name – Der Name, unter dem die Kategorie oder das Schlagwort auf der Website angezeigt wird." + +#: wp-admin/edit-tags.php:277 +msgid "When adding a new tag on this screen, you’ll fill in the following fields:" +msgstr "Wenn du neue Schlagwörter erstellen willst, musst du folgende Eingaben tätigen:" + +#: wp-admin/edit-tags.php:275 +msgid "When adding a new category on this screen, you’ll fill in the following fields:" +msgstr "Wenn du eine neue Kategorie anlegst, musst du folgende Eingabefelder ausfüllen:" + +#: wp-admin/edit-tags.php:262 +msgid "What’s the difference between categories and tags? Normally, tags are ad-hoc keywords that identify important information in your post (names, subjects, etc) that may or may not recur in other posts, while categories are pre-determined sections. If you think of your site like a book, the categories are like the Table of Contents and the tags are like the terms in the index." +msgstr "" +"Worin besteht der Unterschied zwischen Schlagwörtern und Kategorien? \n" +"Kategorien können hierarchisch angeordnet und verschachtelt werden und dienen der generellen und eher groben Einordnung von Beiträgen. Schlagwörter werden direkt beim Erstellen des Beitrags eingegeben – und nicht bloß ausgewählt – und schlüsseln viel feiner den Inhalt eines Beitrags in Stichworten auf. Verglichen mit einem Buch, entsprechen Kategorien dem Inhaltsverzeichnis und Schlagwörter dem Stichwortverzeichnis." + +#. translators: %s: URL to Writing Settings screen. +#: wp-admin/edit-tags.php:250 +msgid "You can use categories to define sections of your site and group related posts. The default category is “Uncategorized” until you change it in your writing settings." +msgstr "Du kannst Beiträge gruppieren und ordnen, indem du Kategorien verwendest. Als Standardkategorie wird „Allgemein“ verwendet, was du aber ändern kannst." + +#: wp-admin/includes/class-custom-image-header.php:857 +msgid "You need JavaScript to choose a part of the image." +msgstr "Du benötigst JavaScript, um das Bild beschneiden zu können." + +#: wp-admin/includes/class-custom-image-header.php:853 +msgid "Crop Header Image" +msgstr "Header-Bild zuschneiden" + +#: wp-admin/includes/class-custom-image-header.php:905 +msgid "Image Upload Error" +msgstr "Fehler beim Bild hochladen" + +#: wp-admin/includes/class-custom-image-header.php:693 +msgid "Restore Original Header Image" +msgstr "Ursprüngliches Header-Bild wiederherstellen" + +#: wp-admin/includes/class-custom-image-header.php:692 +msgid "This will restore the original header image. You will not be able to restore any customizations." +msgstr "Hiermit kannst du das ursprüngliche Header-Bild wiederherstellen. Jegliche Anpassungen gehen dabei verloren." + +#: wp-admin/includes/class-custom-image-header.php:690 +msgid "Reset Image" +msgstr "Bild zurücksetzen" + +#: wp-admin/includes/class-custom-image-header.php:680 +msgid "Remove Header Image" +msgstr "Header-Bild entfernen" + +#: wp-admin/includes/class-custom-image-header.php:679 +msgid "This will remove the header image. You will not be able to restore any customizations." +msgstr "Hiermit kannst du das Header-Bild entfernen. Danach können jegliche Anpassungen nicht wieder hergestellt werden." + +#: wp-admin/includes/class-custom-image-header.php:660 +msgid "Default Images" +msgstr "Vorgegebene Bilder" + +#: wp-admin/includes/class-wp-comments-list-table.php:751 +#: wp-admin/includes/dashboard.php:725 +msgid "Delete this comment permanently" +msgstr "Diesen Kommentar endgültig löschen" + +#: wp-admin/includes/class-wp-comments-list-table.php:741 +msgid "Restore this comment from the Trash" +msgstr "Diesen Kommentar aus dem Papierkorb wiederherstellen" + +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:56 +#: wp-admin/includes/class-language-pack-upgrader-skin.php:78 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:56 +msgid "Return to WordPress Updates page" +msgstr "Zurück zu den WordPress-Aktualisierungen" + +#: wp-admin/edit-form-advanced.php:400 +msgid "Discussion — You can turn comments and pings on or off, and if there are comments on the post, you can see them here and moderate them." +msgstr "Diskussion – Hier kannst du Kommentare und Ping-/Trackbacks für diesen Beitrag aus- oder einschalten. Bereits abgegebene Kommentare werden hier außerdem angezeigt." + +#. translators: %s: Featured image. +#: wp-admin/edit-form-advanced.php:384 +msgid "%s — This allows you to associate an image with your post without inserting it. This is usually useful only if your theme makes use of the image as a post thumbnail on the home page, a custom header, etc." +msgstr "%s – Hier kannst du aus der Mediathek ein Bild auswählen oder ein neues hochladen, welches mit dem Beitrag verknüpft wird, ohne es direkt im Beitrag einzubinden. Dies ist jedoch nur dann sinnvoll, wenn das von dir verwendete Theme auch diese Funktion nutzt und beispielsweise ein Beitrags-Vorschaubild anzeigt." + +#: wp-admin/edit-form-advanced.php:290 +msgid "Title — Enter a title for your post. After you enter a title, you’ll see the permalink below, which you can edit." +msgstr "Titel – Im ersten Eingabefeld dieser Seite musst du einen Titel für deinen Beitrag eingeben. Nachdem ein Titel eingetragen wurde, wird unter dem Eingabefeld der Permalink angezeigt, unter dem der Beitrag nach dem Veröffentlichen erreichbar ist." + +#: wp-admin/edit.php:255 +msgid "Hovering over a row in the posts list will display action links that allow you to manage your post. You can perform the following actions:" +msgstr "Bei Mauszeigerkontakt mit einem Eintrag in der Beitragsliste werden zusätzliche Links angezeigt, mit denen du Beiträge verwalten kannst. Folgende Aktionen sind möglich: " + +#: wp-admin/edit.php:246 +msgid "You can refine the list to show only posts in a specific category or from a specific month by using the dropdown menus above the posts list. Click the Filter button after making your selection. You also can refine the list by clicking on the post author, category or tag in the posts list." +msgstr "Du kannst die Liste so verfeinern, dass nur Beiträge aus einer bestimmten Kategorie oder aus einem bestimmten Monat angezeigt werden, indem du die Drop-down-Menüs über der Beitragsliste verwendest. Klick auf den Filter-Button, nachdem du deine Auswahl getroffen hast. Du kannst die Liste auch verfeinern, indem du auf den Autor, die Kategorie oder das Schlagwort in der Beitragsliste klickst." + +#: wp-admin/edit.php:243 +msgid "You can hide/display columns based on your needs and decide how many posts to list per screen using the Screen Options tab." +msgstr "Über „Ansicht anpassen“ kannst du Spalten aus- oder einblenden, sowie die Anzahl der angezeigten Beiträge ändern." + +#: wp-admin/users.php:42 +msgid "You can customize the display of this screen in a number of ways:" +msgstr "Du kannst die Darstellung dieser Übersichtsseite auf verschiedene Arten ändern:" + +#: wp-admin/plugins.php:756 +msgid "Search Installed Plugins" +msgstr "Installierte Plugins durchsuchen" + +#: wp-admin/nav-menus.php:721 +msgid "Your theme supports one menu. Select which menu you would like to use." +msgstr "Dein Theme unterstützt ein Menü. Wähle aus, welches Menü du verwenden möchtest." + +#: wp-admin/nav-menus.php:19 +msgid "Your theme does not support navigation menus or widgets." +msgstr "Das verwendete Theme unterstützt keine Menüs oder Widgets." + +#: wp-admin/includes/import.php:196 wp-admin/tools.php:47 wp-admin/tools.php:72 +msgid "Categories and Tags Converter" +msgstr "Kategorie- und Schlagwort-Konverter" + +#: wp-admin/includes/nav-menu.php:513 wp-admin/includes/nav-menu.php:528 +msgid "Most Recent" +msgstr "Zuletzt erstellt" + +#: wp-admin/export.php:209 wp-admin/export.php:256 wp-admin/export.php:296 +msgid "Start date:" +msgstr "Startdatum:" + +#: wp-admin/includes/theme-install.php:105 +msgctxt "Theme Installer" +msgid "Tag" +msgstr "Schlagwort" + +#: wp-admin/includes/plugin-install.php:335 +msgctxt "Plugin Installer" +msgid "Tag" +msgstr "Schlagwort" + +#: wp-admin/includes/media.php:2536 +msgctxt "verb" +msgid "Clear" +msgstr "Zurücksetzen" + +#: wp-admin/includes/class-wp-comments-list-table.php:362 +#: wp-admin/comment.php:132 +msgctxt "comment" +msgid "Mark as spam" +msgstr "Als Spam markieren" + +#: wp-admin/includes/class-custom-background.php:303 +msgid "Remove Background Image" +msgstr "Hintergrundbild entfernen" + +#. translators: %s: Post title. +#. translators: %s: Link to post. +#: wp-admin/edit-comments.php:151 wp-admin/edit-comments.php:217 +msgid "Comments on “%s”" +msgstr "Kommentare zu „%s“" + +#: wp-admin/includes/nav-menu.php:1104 +msgid "Show advanced menu properties" +msgstr "Erweiterte Menüeigenschaften anzeigen" + +#. translators: 1: Plugin version, 2: New version. +#. translators: 1: Theme version, 2: New version. +#: wp-admin/update-core.php:428 wp-admin/update-core.php:592 +msgid "You have version %1$s installed. Update to %2$s." +msgstr "Du hast Version %1$s installiert. Aktualisiere auf Version %2$s." + +#: wp-admin/includes/class-wp-debug-data.php:205 +#: wp-admin/includes/class-wp-debug-data.php:210 +#: wp-admin/includes/class-wp-debug-data.php:219 +#: wp-admin/includes/class-wp-debug-data.php:228 +#: wp-admin/includes/class-wp-debug-data.php:237 +#: wp-admin/includes/class-wp-debug-data.php:277 +#: wp-admin/includes/class-wp-debug-data.php:282 +#: wp-admin/includes/class-wp-debug-data.php:292 +#: wp-admin/includes/class-wp-debug-data.php:297 +#: wp-admin/includes/class-wp-debug-data.php:548 +#: wp-admin/includes/class-wp-debug-data.php:1135 +#: wp-admin/includes/class-wp-debug-data.php:1223 +msgid "Enabled" +msgstr "Aktiviert" + +#: wp-admin/includes/class-wp-comments-list-table.php:732 +msgctxt "comment" +msgid "Not Spam" +msgstr "Kein Spam" + +#: wp-admin/includes/class-custom-background.php:318 +msgid "This will restore the original background image. You will not be able to restore any customizations." +msgstr "Dies wird das Original-Hintergrundbild wiederherstellen. Angewandte Anpassungen können jedoch nicht wiederhergestellt werden." + +#: wp-admin/includes/dashboard.php:1452 +msgid "WordPress Blog" +msgstr "WordPress-Blog" + +#: wp-admin/users.php:416 +msgid "Remove Users from Site" +msgstr "Entferne Benutzer von dieser Website" + +#: wp-admin/user-edit.php:422 wp-admin/user-edit.php:424 +msgid "— No role for this site —" +msgstr "– Keine Benutzerrolle für diese Website –" + +#: wp-admin/includes/upgrade.php:632 +msgid "New WordPress Site" +msgstr "Neue WordPress-Website" + +#: wp-admin/includes/schema.php:403 +msgid "My Site" +msgstr "Meine Website" + +#: wp-admin/includes/post.php:826 +msgid "Sorry, you are not allowed to create posts or drafts on this site." +msgstr "Du bist leider nicht berechtigt, Beiträge oder Entwürfe für diese Website zu erstellen." + +#: wp-admin/includes/post.php:824 +msgid "Sorry, you are not allowed to create pages on this site." +msgstr "Du bist leider nicht berechtigt, Seiten für diese Website zu erstellen." + +#: wp-admin/includes/plugin.php:508 +msgid "Custom site suspended message." +msgstr "Individueller Hinweistext bei deaktivierter Website." + +#: wp-admin/includes/plugin.php:507 +msgid "Custom site inactive message." +msgstr "Individueller Hinweistext bei inaktiver Website." + +#: wp-admin/includes/plugin.php:506 +msgid "Custom site deleted message." +msgstr "Individueller Hinweistext bei gelöschter Website." + +#: wp-admin/import.php:72 +msgid "If you have posts or comments in another system, WordPress can import those into this site. To get started, choose a system to import from below:" +msgstr "Wenn du Beiträge oder Kommentare in anderen Blogsystemen hast, kann WordPress diese importieren. Wähle dazu unten das System, aus dem du importieren möchtest:" + +#: wp-admin/includes/nav-menu.php:443 wp-admin/includes/nav-menu.php:722 +msgid "No items." +msgstr "Keine Elemente." + +#. translators: %s: Asterisk symbol (*). +#: wp-admin/includes/schema.php:1098 +msgid "To use a subdomain configuration, you must have a wildcard entry in your DNS. This usually means adding a %s hostname record pointing at your web server in your DNS configuration tool." +msgstr "Um eine Subdomain-Konfiguration nutzen zu können, musst du einen Wildcard DNS-Eintrag haben. Das geschieht üblicherweise durch das Einfügen von einem %s als Hostname-Eintrag, welcher dann auf deinen Webserver zeigt. Dies musst du im DNS-Konfigurationstool deines Servers bzw. deiner Domain tun." + +#. translators: %s: Host name. +#: wp-admin/includes/schema.php:1087 +msgid "The installer attempted to contact a random hostname (%s) on your domain." +msgstr "Die Subdomain-Installation versuchte, einen zufälligen Hostnamen (%s) deiner Domain zu kontaktieren." + +#: wp-admin/nav-menus.php:265 +msgid "The menu item has been successfully deleted." +msgstr "Der Menüeintrag wurde erfolgreich gelöscht." + +#: wp-admin/includes/ajax-actions.php:1612 +msgid "Please provide a custom field name." +msgstr "Bitte gib einen Namen für das individuelle Feld ein." + +#: wp-admin/includes/class-custom-background.php:348 +msgid "Display Options" +msgstr "Anzeigeoptionen" + +#: wp-admin/includes/class-custom-background.php:299 +#: wp-admin/includes/class-custom-image-header.php:677 +msgid "Remove Image" +msgstr "Bild entfernen" + +#: wp-admin/users.php:530 +msgid "Other users have been removed." +msgstr "Andere Benutzer wurden entfernt." + +#: wp-admin/users.php:529 +msgid "You can't remove the current user." +msgstr "Du kannst den aktuellen Benutzer nicht löschen." + +#: wp-admin/users.php:445 +msgid "There are no valid users selected for removal." +msgstr "Es sind keine gültigen Benutzer zum Entfernen ausgewählt." + +#: wp-admin/users.php:443 +msgid "Confirm Removal" +msgstr "Löschen durchführen" + +#: wp-admin/users.php:421 +msgid "You have specified these users for removal:" +msgstr "Du hast folgende Benutzer zum Löschen ausgewählt:" + +#: wp-admin/users.php:160 wp-admin/users.php:218 +msgid "User deletion is not allowed from this screen." +msgstr "Benutzer dürfen nicht über diese Seite gelöscht werden." + +#: wp-admin/includes/class-bulk-upgrader-skin.php:153 +msgid "Show details." +msgstr "Details anzeigen." + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:47 +msgid "%s updated successfully." +msgstr "%s wurde erfolgreich aktualisiert." + +#: wp-admin/includes/user.php:528 +msgid "No thanks, do not remind me again" +msgstr "Nein danke, bitte erinnere mich nicht noch einmal" + +#: wp-admin/includes/user.php:527 +msgid "Yes, take me to my profile page" +msgstr "Ja, bringe mich zu meiner Profilseite" + +#: wp-admin/includes/upgrade.php:96 +msgid "Your chosen password." +msgstr "Das von dir gewählte Passwort." + +#: wp-admin/post.php:287 wp-admin/upload.php:176 wp-admin/edit.php:139 +msgid "Sorry, you are not allowed to restore this item from the Trash." +msgstr "Du bist leider nicht berechtigt, dieses Element aus dem Papierkorb wiederherzustellen." + +#: wp-admin/post.php:250 wp-admin/upload.php:155 wp-admin/edit.php:111 +msgid "Sorry, you are not allowed to move this item to the Trash." +msgstr "Du bist leider nicht berechtigt, dieses Element in den Papierkorb zu legen." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:295 +msgid "%s comment restored from the Trash." +msgid_plural "%s comments restored from the Trash." +msgstr[0] "%s Kommentar wurde aus dem Papierkorb geholt." +msgstr[1] "%s Kommentare wurden aus dem Papierkorb geholt." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:290 +msgid "%s comment moved to the Trash." +msgid_plural "%s comments moved to the Trash." +msgstr[0] "%s Kommentar wurde in den Papierkorb gelegt." +msgstr[1] "%s Kommentare wurden in den Papierkorb gelegt." + +#: wp-admin/update-core.php:474 +msgid "The following themes have new versions available. Check the ones you want to update and then click “Update Themes”." +msgstr "Für folgende Themes liegen Aktualisierungen vor. Markiere diejenigen, die du aktualisieren möchtest und klicke auf „Themes aktualisieren“." + +#: wp-admin/user-new.php:318 +msgid "That user is already a member of this site." +msgstr "Dieser Benutzer ist bereits ein Mitglied dieser Website." + +#: wp-admin/user-new.php:309 +msgid "User has been added to your site." +msgstr "Der Benutzer wurde zu deiner Website hinzugefügt." + +#: wp-admin/user-new.php:306 +msgid "Invitation email sent to user. A confirmation link must be clicked for them to be added to your site." +msgstr "Einladungs-E-Mail versandt. Der Benutzer muss den Bestätigungslink anklicken, um deiner Website hinzugefügt zu werden." + +#: wp-admin/update-core.php:321 +msgid "The following plugins have new versions available. Check the ones you want to update and then click “Update Plugins”." +msgstr "Für die folgenden Plugins sind neue Versionen verfügbar. Markiere diejenigen, die du aktualisieren möchtest und klicke auf „Plugins aktualisieren“." + +#: wp-admin/includes/class-custom-background.php:304 +msgid "This will remove the background image. You will not be able to restore any customizations." +msgstr "Damit wird das Hintergrundbild entfernt. Alle Anpassungen werden dabei gelöscht." + +#. translators: %s: Network title. +#: wp-admin/includes/class-wp-themes-list-table.php:132 +msgid "Only the current theme is available to you. Contact the %s administrator for information about accessing additional themes." +msgstr "Du kannst nur das zurzeit aktive Theme benutzen. Kontaktiere den %s Administrator, um zu erfahren, wie du weitere Themes benutzen kannst." + +#: wp-admin/includes/file.php:30 +msgid "Tag Template" +msgstr "Schlagwort-Template" + +#: wp-admin/includes/file.php:27 +msgid "Author Template" +msgstr "Autor-Template" + +#: wp-admin/includes/file.php:54 +msgid "Visual Editor Stylesheet" +msgstr "Stylesheet für visuellen Editor" + +#: wp-admin/edit-form-advanced.php:202 +msgid "Page saved." +msgstr "Die Seite wurde gespeichert." + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:555 +#: wp-admin/update-core.php:57 wp-admin/js/updates.js:625 +msgid "Update Now" +msgstr "Jetzt aktualisieren" + +#. translators: %s: Plugin name. +#. translators: %s: Plugin name and version. +#. translators: %s: Importer name. +#: wp-admin/includes/class-wp-plugins-list-table.php:1040 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:618 +#: wp-admin/import.php:204 +msgid "More information about %s" +msgstr "Weitere Informationen über %s" + +#: wp-admin/user-edit.php:436 +msgid "Grant this user super admin privileges for the Network." +msgstr "Gewähre diesem Benutzer Super-Administratoren-Rechte für das gesamte Netzwerk." + +#: wp-admin/user-edit.php:191 +msgid "This user has super admin privileges." +msgstr "Dieser Benutzer hat Super-Administratoren-Rechte." + +#: wp-admin/install.php:151 wp-admin/user-edit.php:191 +msgid "Important:" +msgstr "Wichtig:" + +#. translators: %s: Theme version. +#: wp-admin/includes/class-wp-theme-install-list-table.php:308 +#: wp-admin/includes/class-wp-theme-install-list-table.php:466 +msgid "Update to version %s" +msgstr "Aktualisiere auf Version %s" + +#: wp-admin/setup-config.php:288 +msgid "Error: \"Table Prefix\" can only contain numbers, letters, and underscores." +msgstr "Fehler:: „Tabellenpräfix“ darf nur aus Zahlen, Buchstaben und Unterstrichen bestehen." + +#: wp-admin/user-edit.php:406 +msgid "Usernames cannot be changed." +msgstr "Benutzernamen können nicht geändert werden." + +#: wp-admin/options-reading.php:156 +msgid "items" +msgstr "Einträge" + +#: wp-admin/nav-menus.php:288 +msgid "The menu has been successfully deleted." +msgstr "Das Menü wurde erfolgreich gelöscht." + +#: wp-admin/options-reading.php:43 wp-admin/options-reading.php:178 +#: wp-admin/options-reading.php:179 wp-admin/install.php:182 +#: wp-admin/install.php:185 +msgid "Site visibility" +msgstr "Sichtbarkeit der Website" + +#: wp-admin/options-general.php:71 +msgid "In a few words, explain what this site is about." +msgstr "Erkläre in ein paar Worten, worum es auf deiner Website geht." + +#: wp-admin/includes/class-walker-nav-menu-edit.php:212 +msgid "CSS Classes (optional)" +msgstr "CSS-Klassen (optional)" + +#: wp-admin/includes/nav-menu.php:1106 +msgid "Link Target" +msgstr "Linkziel" + +#: wp-admin/nav-menus.php:966 wp-admin/nav-menus.php:1101 +msgid "Save Menu" +msgstr "Menü speichern" + +#. translators: 1: Theme name, 2: Number of the theme, 3: Total number of +#. themes being updated. +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:24 +msgid "Updating Theme %1$s (%2$d/%3$d)" +msgstr "Aktualisierung des Themes %1$s (%2$d von %3$d)" + +#: wp-admin/includes/schema.php:1102 +msgid "You can still use your site but any subdomain you create may not be accessible. If you know your DNS is correct, ignore this message." +msgstr "Du kannst deine Website weiterhin benutzen, nur wird jede angelegte Subdomain möglicherweise nicht erreichbar sein. Wenn du weißt, dass deine DNS-Einstellungen korrekt sind, kannst du diesen Hinweis ignorieren." + +#. translators: %s: Error message. +#: wp-admin/includes/schema.php:1092 +msgid "This resulted in an error message: %s" +msgstr "Dabei trat eine Fehlermeldung auf: %s" + +#: wp-admin/includes/schema.php:990 +msgid "You must provide a valid email address." +msgstr "Du musst eine gültige E-Mail-Adresse angeben." + +#: wp-admin/includes/schema.php:981 wp-admin/includes/schema.php:985 +msgid "The network already exists." +msgstr "Das Netzwerk existiert bereits." + +#: wp-admin/includes/schema.php:974 +msgid "You must provide a name for your network of sites." +msgstr "Du musst einen Namen für dein Netzwerk angeben." + +#: wp-admin/includes/schema.php:971 +msgid "You must provide a domain name." +msgstr "Du musst einen Domainnamen angeben." + +#: wp-admin/includes/user.php:524 +msgid "Notice:" +msgstr "Hinweis:" + +#: wp-admin/edit-form-advanced.php:544 +msgid "Get Shortlink" +msgstr "Kurzlink anzeigen" + +#. translators: %s: Title of an update. +#: wp-admin/includes/class-bulk-upgrader-skin.php:45 +msgid "The update of %s failed." +msgstr "Die Aktualisierung von %s ist fehlgeschlagen." + +#. translators: 1: Plugin name, 2: Number of the plugin, 3: Total number of +#. plugins being updated. +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:24 +msgid "Updating Plugin %1$s (%2$d/%3$d)" +msgstr "Aktualisierung des Plugins %1$s (%2$d von %3$d)" + +#: wp-admin/includes/upgrade.php:117 +msgid "The password you chose during installation." +msgstr "Das Passwort, das du während der Installation gewählt hast." + +#: wp-admin/includes/upgrade.php:100 +msgid "User already exists. Password inherited." +msgstr "Dieser Benutzer existiert bereits. Es gilt das bereits vorhandene Passwort." + +#: wp-admin/includes/update-core.php:1432 +#: wp-admin/includes/class-wp-automatic-updater.php:403 +#: wp-admin/update-core.php:729 +msgid "WordPress updated successfully." +msgstr "WordPress wurde erfolgreich aktualisiert." + +#: wp-admin/update-core.php:682 +msgid "Update WordPress" +msgstr "WordPress aktualisieren" + +#: wp-admin/update-core.php:324 wp-admin/update-core.php:453 +#: wp-admin/update-core.php:970 wp-admin/update-core.php:974 +#: wp-admin/plugins.php:156 +msgid "Update Plugins" +msgstr "Plugins aktualisieren" + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/update-core.php:99 wp-admin/upgrade.php:99 +msgid "You cannot update because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Du kannst nicht aktualisieren, da WordPress %2$s mindestens die PHP-Version %3$s und die MySQL-Version %4$s voraussetzt. Du verwendest die PHP-Version %5$s und die MySQL-Version %6$s." + +#: wp-admin/update-core.php:797 wp-admin/update-core.php:858 +msgid "WordPress Updates" +msgstr "WordPress-Aktualisierungen" + +#: wp-admin/includes/class-walker-nav-menu-edit.php:175 +msgid "Edit menu item" +msgstr "Menüeintrag bearbeiten" + +#: wp-admin/about.php:309 +msgid "Go to Dashboard" +msgstr "Zum Dashboard" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:539 +msgid "Drop-in (%s)" +msgid_plural "Drop-ins (%s)" +msgstr[0] "Drop-in (%s)" +msgstr[1] "Drop-ins (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:531 +msgid "Must-Use (%s)" +msgid_plural "Must-Use (%s)" +msgstr[0] "Obligatorisch (%s)" +msgstr[1] "Obligatorisch (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:759 +msgid "Inactive:" +msgstr "Inaktiv:" + +#: wp-admin/plugins.php:392 +msgid "Yes, delete these files and data" +msgstr "Ja, lösche diese Dateien und Daten" + +#: wp-admin/plugins.php:374 +msgid "Are you sure you want to delete these files and data?" +msgstr "Bist du sicher, dass du diese Dateien und Daten löschen möchtest?" + +#: wp-admin/plugins.php:344 +msgid "You are about to remove the following plugin:" +msgstr "Du bist dabei, das folgende Plugin zu entfernen:" + +#: wp-admin/plugins.php:340 +msgid "Delete Plugin" +msgstr "Plugin löschen" + +#: wp-admin/options-general.php:295 +msgid "This timezone does not observe daylight saving time." +msgstr "In dieser Zeitzone gibt es keine Sommerzeit." + +#: wp-admin/options-general.php:272 +msgid "This timezone is currently in daylight saving time." +msgstr "Diese Zeitzone ist zurzeit in der Sommerzeit." + +#: wp-admin/options-general.php:113 wp-admin/network/settings.php:164 +msgid "This address is used for admin purposes. If you change this, we will send you an email at your new address to confirm it. The new address will not become active until confirmed." +msgstr "Diese Adresse wird für administrative Zwecke verwendet. Wenn du diese änderst, bekommst du eine E-Mail an deine neue E-Mail-Adresse, um die Änderung zu bestätigen. Die neue Adresse wird erst nach dieser Bestätigung benutzt." + +#: wp-admin/includes/nav-menu.php:518 wp-admin/includes/nav-menu.php:805 +msgid "View All" +msgstr "Alle anzeigen" + +#: wp-admin/nav-menus.php:383 wp-admin/nav-menus.php:405 +msgid "Please enter a valid menu name." +msgstr "Bitte gib einen gültigen Menünamen ein." + +#. translators: 1: URL to WordPress release notes, 2: WordPress version number, +#. 3: Minimum required PHP version number, 4: Minimum required MySQL version +#. number, 5: Current PHP version number, 6: Current MySQL version number. +#: wp-admin/install.php:257 +msgid "You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s." +msgstr "Die Installation kann nicht gestartet werden, da WordPress %2$s mindestens die PHP-Version %3$s und die MySQL-Version %4$s voraussetzt. Du verwendest die PHP-Version %5$s und die MySQL-Version %6$s." + +#: wp-admin/includes/plugin.php:505 +msgid "Executed before Multisite is loaded." +msgstr "Wird ausgeführt, bevor das Netzwerk geladen wird." + +#: wp-admin/includes/plugin.php:499 +msgid "External object cache." +msgstr "Externer Objekt-Cache." + +#: wp-admin/includes/plugin.php:498 +msgid "Custom maintenance message." +msgstr "Individuelle Wartungsmodus-Nachricht." + +#: wp-admin/includes/plugin.php:496 +msgid "Custom database error message." +msgstr "Individuelle Datenbank-Fehlermeldung." + +#: wp-admin/includes/plugin.php:495 +msgid "Custom database class." +msgstr "Individuelle Datenbankklasse." + +#: wp-admin/includes/plugin.php:494 +msgid "Advanced caching plugin." +msgstr "Erweitertes Caching-Plugin." + +#: wp-admin/includes/file.php:832 +msgid "File is empty. Please upload something more substantial." +msgstr "Die Datei ist leer. Bitte lade etwas mit mehr Substanz hoch." + +#: wp-admin/edit-comments.php:314 +msgid "This comment is already marked as spam." +msgstr "Dieser Kommentar ist bereits als Spam markiert." + +#: wp-admin/edit-comments.php:311 +msgid "View Trash" +msgstr "Papierkorb anzeigen" + +#: wp-admin/edit-comments.php:311 +msgid "This comment is already in the Trash." +msgstr "Dieser Kommentar befindet sich bereits im Papierkorb." + +#: wp-admin/edit-comments.php:308 +msgid "This comment is already approved." +msgstr "Dieser Kommentar wurde bereits freigegeben." + +#: wp-admin/comment.php:158 +msgid "This comment is currently in the Trash." +msgstr "Dieser Kommentar ist bereits im Papierkorb." + +#: wp-admin/comment.php:155 +msgid "This comment is currently marked as spam." +msgstr "Dieser Kommentar wurde als Spam eingestuft." + +#: wp-admin/comment.php:152 +msgid "This comment is currently approved." +msgstr "Dieser Kommentar ist derzeit freigegeben." + +#: wp-admin/comment.php:99 +msgid "Moderate Comment" +msgstr "Kommentar moderieren" + +#: wp-admin/export.php:186 +msgid "Categories:" +msgstr "Kategorien:" + +#: wp-admin/widgets.php:129 +msgid "Drag widgets here to remove them from the sidebar but keep their settings." +msgstr "Willst du Widgets entfernen, aber ihre Einstellungen behalten, ziehe sie hierher." + +#: wp-admin/widgets.php:438 wp-admin/widgets.php:441 +msgid "Available Widgets" +msgstr "Verfügbare Widgets" + +#: wp-admin/widgets.php:379 +msgid "Error in displaying the widget settings form." +msgstr "Fehler beim Anzeigen des Einstellungsformular für Widgets." + +#: wp-admin/includes/misc.php:1246 wp-admin/includes/post.php:1958 +#: wp-admin/widgets.php:378 +msgid "Error while saving." +msgstr "Fehler beim Speichern." + +#: wp-admin/widgets.php:374 wp-admin/js/inline-edit-tax.js:227 +#: wp-admin/js/inline-edit-post.js:434 +msgid "Changes saved." +msgstr "Änderungen gespeichert." + +#: wp-admin/widgets.php:357 +msgid "Save Widget" +msgstr "Widget speichern" + +#: wp-admin/widgets.php:315 +msgid "Position" +msgstr "Position" + +#: wp-admin/widgets.php:313 +msgid "Select both the sidebar for this widget and the position of the widget in that sidebar." +msgstr "Wähle die Seitenleiste für das Widget und seine Position darin." + +#. translators: %s: Widget name. +#: wp-admin/widgets.php:298 +msgid "Widget %s" +msgstr "Widget %s" + +#: wp-admin/widgets.php:126 +msgid "Inactive Widgets" +msgstr "Inaktive Widgets" + +#: wp-admin/includes/class-wp-users-list-table.php:300 +msgid "Change" +msgstr "Wechseln" + +#: wp-admin/includes/class-wp-users-list-table.php:294 +#: wp-admin/includes/class-wp-users-list-table.php:296 +msgid "Change role to…" +msgstr "Rolle ändern in …" + +#. translators: 1: User role name, 2: Number of users. +#: wp-admin/includes/class-wp-users-list-table.php:227 +#: wp-admin/includes/class-wp-users-list-table.php:246 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#: wp-admin/users.php:523 +msgid "Other users have been deleted." +msgstr "Andere Benutzer sind gelöscht worden." + +#: wp-admin/users.php:522 +msgid "You can’t delete the current user." +msgstr "Du kannst den aktuellen Benutzer nicht löschen." + +#: wp-admin/users.php:519 +msgid "Other user roles have been changed." +msgstr "Die Rollen der anderen Benutzer sind verändert worden." + +#: wp-admin/users.php:518 +msgid "The current user’s role must have user editing capabilities." +msgstr "Die Rolle des aktuellen Benutzers muss die Berechtigung zum Bearbeiten von Benutzern haben." + +#: wp-admin/users.php:495 +msgid "New user created." +msgstr "Neuen Benutzer eingerichtet." + +#: wp-admin/users.php:347 +msgid "There are no valid users selected for deletion." +msgstr "Es sind keine gültigen Benutzer zum Löschen ausgewählt." + +#: wp-admin/users.php:274 +msgid "Delete Users" +msgstr "Benutzer löschen" + +#: wp-admin/user-new.php:424 wp-admin/user-new.php:594 +msgid "Skip Confirmation Email" +msgstr "Keine Bestätigungs-E-Mail" + +#: wp-admin/user-new.php:303 +msgid "Invitation email sent to new user. A confirmation link must be clicked before their account is created." +msgstr "Die Einladungs-E-Mail wurde zum neuen Benutzer versandt. Er muss noch den Bestätigungslink anklicken, damit dieses Benutzerkonto erfolgreich angelegt wird." + +#. translators: Joining confirmation notification email subject. %s: Site +#. title. +#: wp-admin/user-new.php:130 +msgid "[%s] Joining Confirmation" +msgstr "[%s] Anmeldebestätigung" + +#: wp-admin/user-edit.php:777 +msgid "Update User" +msgstr "Benutzer aktualisieren" + +#: wp-admin/user-edit.php:777 +msgid "Update Profile" +msgstr "Profil aktualisieren" + +#: wp-admin/user-edit.php:746 +msgid "Additional Capabilities" +msgstr "Zusätzliche Berechtigungen" + +#: wp-admin/user-edit.php:652 +msgid "Type your new password again." +msgstr "Gib dein neues Passwort nochmal ein." + +#: wp-admin/user-edit.php:628 +msgid "New Password" +msgstr "Neues Passwort" + +#: wp-admin/user-edit.php:573 +msgid "Share a little biographical information to fill out your profile. This may be shown publicly." +msgstr "Teile ein paar biografische Informationen, um dein Profil zu ergänzen. Die Informationen könnten öffentlich sichtbar sein." + +#: wp-admin/user-edit.php:571 +msgid "Biographical Info" +msgstr "Biografische Angaben" + +#: wp-admin/user-edit.php:567 +msgid "About the user" +msgstr "Über den Benutzer" + +#: wp-admin/user-edit.php:567 +msgid "About Yourself" +msgstr "Über Dich" + +#: wp-admin/user-edit.php:498 +msgid "Contact Info" +msgstr "Kontaktinfo" + +#: wp-admin/user-edit.php:459 +msgid "Display name publicly as" +msgstr "Öffentlicher Name" + +#: wp-admin/user-edit.php:454 +msgid "Nickname" +msgstr "Spitzname" + +#: wp-admin/user-new.php:494 wp-admin/user-edit.php:449 +msgid "Last Name" +msgstr "Nachname" + +#: wp-admin/user-new.php:490 wp-admin/user-edit.php:444 +msgid "First Name" +msgstr "Vorname" + +#: wp-admin/user-edit.php:321 +msgid "Enable keyboard shortcuts for comment moderation." +msgstr "Tastaturkürzel für die Kommentarmoderation aktivieren." + +#: wp-admin/includes/misc.php:952 wp-admin/user-edit.php:295 +msgid "Admin Color Scheme" +msgstr "Farbschema verwalten" + +#: wp-admin/user-edit.php:264 +msgid "Disable the visual editor when writing" +msgstr "Beim Schreiben den visuellen Editor nicht benutzen" + +#: wp-admin/user-edit.php:261 +msgid "Visual Editor" +msgstr "Visueller Editor" + +#: wp-admin/user-edit.php:256 +msgid "Personal Options" +msgstr "Persönliche Optionen" + +#: wp-admin/user-edit.php:198 +msgid "User updated." +msgstr "Benutzer aktualisiert." + +#: wp-admin/includes/user.php:565 +msgid "Always use https when visiting the admin" +msgstr "Nutze immer https, wenn du den Administratorbereich aufrufst" + +#: wp-admin/includes/user.php:564 +msgid "Use https" +msgstr "Https verwenden" + +#: wp-admin/user-new.php:312 wp-admin/users.php:508 +#: wp-admin/network/user-new.php:94 +msgid "Edit user" +msgstr "Benutzer bearbeiten" + +#: wp-admin/upload.php:344 wp-admin/upload.php:357 +msgid "Media file restored from the Trash." +msgstr "Mediendatei aus dem Papierkorb wiederhergestellt." + +#: wp-admin/upload.php:331 wp-admin/upload.php:356 +msgid "Media file moved to the Trash." +msgstr "Mediendatei in den Papierkorb verschoben." + +#: wp-admin/upload.php:319 wp-admin/upload.php:354 +msgid "Media file permanently deleted." +msgstr "Mediendatei endgültig gelöscht." + +#: wp-admin/edit-tags.php:137 wp-admin/options.php:78 +msgid "Sorry, you are not allowed to delete these items." +msgstr "Du bist leider nicht berechtigt, diese Elemente zu löschen." + +#: wp-admin/upgrade.php:73 +msgid "Your WordPress database is already up to date!" +msgstr "Deine WordPress-Datenbank ist aktuell!" + +#. translators: %s: File name. +#: wp-admin/update.php:305 +msgid "Installing theme from uploaded file: %s" +msgstr "Installiere Theme aus hochgeladener Datei: %s" + +#: wp-admin/update.php:298 wp-admin/theme-install.php:58 +#: wp-admin/theme-install.php:152 wp-admin/theme-install.php:154 +msgid "Upload Theme" +msgstr "Theme hochladen" + +#. translators: %s: Theme name and version. +#: wp-admin/update.php:278 +msgid "Installing Theme: %s" +msgstr "Installiere Theme: %s" + +#. translators: %s: File name. +#: wp-admin/update.php:162 +msgid "Installing plugin from uploaded file: %s" +msgstr "Installiere Plugin aus hochgeladener Datei: %s" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:114 +#: wp-admin/update.php:156 wp-admin/plugin-install.php:138 +msgid "Upload Plugin" +msgstr "Plugin hochladen" + +#. translators: %s: Plugin name and version. +#: wp-admin/update.php:132 +msgid "Installing Plugin: %s" +msgstr "Installiere Plugin: %s" + +#: wp-admin/update.php:95 +msgid "Plugin failed to reactivate due to a fatal error." +msgstr "Das Plugin konnte aufgrund eines fatalen Fehlers nicht reaktiviert werden." + +#: wp-admin/update.php:91 +msgid "Plugin reactivated successfully." +msgstr "Das Plugin wurde erfolgreich reaktiviert." + +#: wp-admin/update.php:89 +msgid "Plugin Reactivation" +msgstr "Pluginreaktivierung" + +#: wp-admin/includes/class-wp-automatic-updater.php:401 +#: wp-admin/update-core.php:723 wp-admin/js/updates.js:805 +#: wp-admin/js/updates.js:1442 +msgid "Installation failed." +msgstr "Installation fehlgeschlagen." + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:360 wp-admin/update-core.php:369 +msgid "Compatibility with WordPress %s: Unknown" +msgstr "Kompatibilität mit WordPress %s: unbekannt" + +#. translators: %s: WordPress version. +#: wp-admin/update-core.php:357 wp-admin/update-core.php:366 +msgid "Compatibility with WordPress %s: 100%% (according to its author)" +msgstr "Kompatibilität mit WordPress %s: 100 %% (laut Autor)" + +#: wp-admin/update-core.php:192 +msgid "Hide hidden updates" +msgstr "Verborgene Aktualisierungen ausblenden" + +#: wp-admin/update-core.php:191 wp-admin/update-core.php:202 +msgid "Show hidden updates" +msgstr "Verborgene Aktualisierungen anzeigen" + +#: wp-admin/update-core.php:159 +msgid "Bring back this update" +msgstr "Diese Aktualisierung wieder einblenden" + +#: wp-admin/update-core.php:157 +msgid "Hide this update" +msgstr "Diese Aktualisierung ausblenden" + +#: wp-admin/themes.php:574 +msgid "Broken Themes" +msgstr "Beschädigte Themes" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-themes-list-table.php:232 +msgid "" +"You are about to delete this theme '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Du bist dabei, dieses Theme zu löschen: ‚%s‘\n" +" ‚Abbrechen‘ zum Beenden, ‚OK‘ zum Löschen." + +#: wp-admin/includes/theme.php:804 wp-admin/themes.php:924 +msgid "Current Theme" +msgstr "Aktuelles Theme" + +#: wp-admin/themes.php:276 wp-admin/network/themes.php:384 +msgid "Theme deleted." +msgstr "Theme gelöscht." + +#: wp-admin/theme-editor.php:225 +msgid "Select theme to edit:" +msgstr "Zu bearbeitendes Theme wählen:" + +#: wp-admin/theme-editor.php:21 +msgid "Edit Themes" +msgstr "Themes bearbeiten" + +#: wp-admin/includes/theme.php:983 wp-admin/themes.php:1087 +msgid "Tags:" +msgstr "Tags:" + +#. translators: %s: Post title. +#: wp-admin/revision.php:109 +msgid "Compare Revisions of “%s”" +msgstr "Vergleiche Revisionen von „%s“" + +#: wp-admin/post.php:143 +msgid "You can’t edit this item because it is in the Trash. Please restore it and try again." +msgstr "Du kannst dieses Element nicht bearbeiten, da es im Papierkorb liegt. Stelle es wieder her und versuche es dann erneut." + +#: wp-admin/edit-tags.php:173 wp-admin/includes/post.php:1964 +#: wp-admin/includes/class-wp-screen.php:295 wp-admin/post.php:20 +#: wp-admin/post.php:47 wp-admin/post.php:139 wp-admin/term.php:43 +#: wp-admin/media-upload.php:47 +msgid "Sorry, you are not allowed to edit this item." +msgstr "Du bist leider nicht berechtigt, dieses Element zu bearbeiten." + +#: wp-admin/edit-tags.php:160 wp-admin/edit-tags.php:180 wp-admin/post.php:127 +#: wp-admin/term.php:31 +msgid "You attempted to edit an item that doesn’t exist. Perhaps it was deleted?" +msgstr "Du versuchst ein Element zu bearbeiten, welches nicht existiert. Möglicherweise wurde es gelöscht?" + +#: wp-admin/includes/class-wp-plugins-list-table.php:418 +msgid "No plugins found." +msgstr "Keine Plugins gefunden." + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:523 +msgid "Inactive (%s)" +msgid_plural "Inactive (%s)" +msgstr[0] "Inaktiv (%s)" +msgstr[1] "Inaktiv (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:515 +msgid "Recently Active (%s)" +msgid_plural "Recently Active (%s)" +msgstr[0] "Kürzlich aktiv (%s)" +msgstr[1] "Kürzlich aktiv (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:507 +msgid "Active (%s)" +msgid_plural "Active (%s)" +msgstr[0] "Aktiviert (%s)" +msgstr[1] "Aktiviert (%s)" + +#. translators: %s: Number of plugins. +#: wp-admin/includes/class-wp-plugins-list-table.php:498 +msgctxt "plugins" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%s)" + +#: wp-admin/includes/class-wp-plugins-list-table.php:659 +msgid "Clear List" +msgstr "Liste säubern" + +#: wp-admin/includes/class-wp-plugins-list-table.php:1048 +msgid "Visit plugin site" +msgstr "Plugin-Seite aufrufen" + +#: wp-admin/includes/class-wp-plugins-list-table.php:602 +#: wp-admin/includes/class-wp-plugins-list-table.php:799 +#: wp-admin/includes/class-plugin-installer-skin.php:124 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:587 +#: wp-admin/js/updates.js:734 +msgid "Network Activate" +msgstr "Für das gesamte Netzwerk aktivieren" + +#: wp-admin/includes/class-wp-plugins-list-table.php:606 +#: wp-admin/includes/class-wp-plugins-list-table.php:788 +msgid "Network Deactivate" +msgstr "Netzwerkweit deaktivieren" + +#. translators: %s: Error message. +#: wp-admin/plugins.php:674 +msgid "Plugin could not be deleted due to an error: %s" +msgstr "Das Plugin konnte aufgrund eines Fehlers nicht gelöscht werden: %s" + +#: wp-admin/plugins.php:637 +msgid "Plugin could not be activated because it triggered a fatal error." +msgstr "Das Plugin kann nicht aktiviert werden, da es einen fatalen Fehler erzeugt." + +#. translators: %s: WP_PLUGIN_DIR constant value. +#: wp-admin/plugins.php:562 +msgid "If something goes wrong with a plugin and you can’t use WordPress, delete or rename that file in the %s directory and it will be automatically deactivated." +msgstr "Wenn etwas mit einem Plugin falsch läuft und du WordPress nicht mehr einwandfrei benutzen kannst, dann benenne das Plugin im Verzeichnis %s um oder lösche es. Dadurch wird es automatisch deaktiviert." + +#: wp-admin/plugins.php:545 +msgid "Plugins extend and expand the functionality of WordPress. Once a plugin is installed, you may activate it or deactivate it here." +msgstr "Plugins vergrößern und erweitern den Funktionsumfang von WordPress. Sobald ein Plugin installiert ist, kannst du es auf dieser Seite aktivieren oder auch wieder deaktivieren." + +#: wp-admin/plugins.php:400 +msgid "No, return me to the plugin list" +msgstr "Nein. Zurück zur Pluginliste" + +#: wp-admin/plugins.php:392 +msgid "Yes, delete these files" +msgstr "Ja, diese Dateien löschen" + +#: wp-admin/plugins.php:376 +msgid "Are you sure you want to delete these files?" +msgstr "Bist du sicher, dass du diese Dateien löschen möchtest?" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:108 +msgctxt "Plugin Installer" +msgid "Popular" +msgstr "Populär" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:107 +msgctxt "Plugin Installer" +msgid "Featured" +msgstr "Vorgestellt" + +#: wp-admin/theme-editor.php:314 wp-admin/plugin-editor.php:287 +msgid "Update File" +msgstr "Datei aktualisieren" + +#: wp-admin/theme-editor.php:293 wp-admin/plugin-editor.php:272 +msgid "Documentation:" +msgstr "Dokumentation:" + +#: wp-admin/plugin-editor.php:242 +msgid "Plugin Files" +msgstr "Plugin-Dateien" + +#: wp-admin/plugin-editor.php:219 +msgid "Select plugin to edit:" +msgstr "Zu bearbeitendes Plugin wählen:" + +#: wp-admin/includes/ajax-actions.php:4716 wp-admin/theme-editor.php:189 +#: wp-admin/plugin-editor.php:184 +msgid "File edited successfully." +msgstr "Die Datei wurde erfolgreich bearbeitet." + +#: wp-admin/includes/file.php:486 wp-admin/plugin-editor.php:116 +msgid "Files of this type are not editable." +msgstr "Dateien von diesem Typ können nicht bearbeitet werden." + +#: wp-admin/plugin-editor.php:21 +msgid "Edit Plugins" +msgstr "Plugins bearbeiten" + +#: wp-admin/options.php:348 +msgid "All Settings" +msgstr "Einstellungen" + +#: wp-admin/options-writing.php:44 wp-admin/options-writing.php:201 +msgid "Update Services" +msgstr "Update-Services" + +#: wp-admin/options-writing.php:172 +msgid "Default Mail Category" +msgstr "Standard-Kategorie für Beiträge per E-Mail" + +#: wp-admin/options-writing.php:162 +msgid "Login Name" +msgstr "Anmeldename" + +#: wp-admin/options-writing.php:157 +msgid "Port" +msgstr "Port" + +#: wp-admin/options-writing.php:155 +msgid "Mail Server" +msgstr "E-Mail-Server" + +#. translators: 1, 2, 3: Examples of random email addresses. +#: wp-admin/options-writing.php:145 +msgid "To post to WordPress by email, you must set up a secret email account with POP3 access. Any mail received at this address will be posted, so it’s a good idea to keep this address very secret. Here are three random strings you could use: %1$s, %2$s, %3$s." +msgstr "Um Beiträge in WordPress via E-Mail zu veröffentlichen, musst du ein geheimes E-Mail-Konto mit POP3-Zugang einrichten. Jede E-Mail, die an diese Adresse geschickt wird, wird auf deiner Website veröffentlicht. Halte deshalb diese Adresse strengstens geheim. Hier drei Beispiele zufälliger Zeichenketten, die du verwenden könntest: %1$s, %2$s, %3$s." + +#: wp-admin/options-writing.php:140 +msgid "Post via email" +msgstr "Beitrag per E-Mail veröffentlichen" + +#: wp-admin/options-writing.php:112 +msgid "Default Link Category" +msgstr "Standard-Linkkategorie" + +#: wp-admin/options-writing.php:78 +msgid "Default Post Category" +msgstr "Standard-Beitragskategorie" + +#: wp-admin/options-writing.php:73 +msgid "WordPress should correct invalidly nested XHTML automatically" +msgstr "WordPress soll falsch verschachteltes XHTML automatisch korrigieren." + +#: wp-admin/options-writing.php:72 +msgid "Convert emoticons like :-) and :-P to graphics on display" +msgstr "Emoticons wie :-) und :-P in Grafiken umwandeln." + +#: wp-admin/options-writing.php:68 wp-admin/options-writing.php:69 +msgid "Formatting" +msgstr "Formatierung" + +#: wp-admin/options-writing.php:16 +msgid "Writing Settings" +msgstr "Einstellungen › Schreiben" + +#: wp-admin/options-reading.php:66 +msgid "Encoding for pages and feeds" +msgstr "Zeichensatz für Seiten und Feeds" + +#: wp-admin/options-reading.php:163 +msgid "Summary" +msgstr "Kurzfassung" + +#: wp-admin/options-reading.php:162 +msgid "Full text" +msgstr "ganzen Text" + +#: wp-admin/options-reading.php:155 +msgid "Syndication feeds show the most recent" +msgstr "Newsfeeds zeigen die letzten" + +#: wp-admin/options-reading.php:149 +msgid "Blog pages show at most" +msgstr "Blogseiten zeigen maximal" + +#: wp-admin/options-reading.php:140 +msgid "Warning: these pages should not be the same!" +msgstr "Warnung: Diese Seiten sollten nicht gleich sein!" + +#. translators: %s: Select field to choose the page for posts. +#: wp-admin/options-reading.php:125 +msgid "Posts page: %s" +msgstr "Beitragsseite: %s" + +#. translators: %s: URL to Pages screen. +#: wp-admin/options-reading.php:97 +msgid "A static page (select below)" +msgstr "Eine statische Seite (unten auswählen)" + +#: wp-admin/options-reading.php:16 +msgid "Reading Settings" +msgstr "Einstellungen › Lesen" + +#: wp-admin/options-privacy.php:115 +msgid "Privacy Settings" +msgstr "Einstellungen › Datenschutz" + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:392 +msgid "If you temporarily make your site’s root directory writable for us to generate the %s file automatically, do not forget to revert the permissions after the file has been created." +msgstr "Wenn du das Stammverzeichnis deiner Website kurzfristig beschreibbar machst, um die Datei %s automatisch erstellen zu lassen, dann vergiss nicht, die Berechtigungen zurückzusetzen, nachdem die Datei angelegt wurde." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:367 +msgid "If you temporarily make your %s file writable for us to generate rewrite rules automatically, do not forget to revert the permissions after rule has been saved." +msgstr "Wenn du deine %s-Datei temporär beschreibbar machst, um die rewrite-Regeln automatisch eintragen zu lassen, vergiss nicht, die Berechtigungen zurückzusetzen, nachdem die Regeln gespeichert worden sind." + +#: wp-admin/options-permalink.php:331 +msgid "Tag base" +msgstr "Schlagwort-Basis" + +#. translators: Prefix for category permalinks. +#: wp-admin/options-permalink.php:327 +msgid "Category base" +msgstr "Kategorie-Basis" + +#: wp-admin/options-permalink.php:317 +msgid "Optional" +msgstr "Optional" + +#: wp-admin/options-permalink.php:244 +msgid "Custom Structure" +msgstr "Individuelle Struktur" + +#: wp-admin/options-permalink.php:234 +msgid "Numeric" +msgstr "Numerisch" + +#: wp-admin/options-permalink.php:230 +msgid "Month and name" +msgstr "Monat und Name" + +#: wp-admin/options-permalink.php:226 +msgid "Day and name" +msgstr "Tag und Name" + +#: wp-admin/options-permalink.php:150 +msgid "Permalink structure updated." +msgstr "Permalink-Struktur aktualisiert." + +#. translators: %s: web.config +#: wp-admin/options-permalink.php:162 +msgid "Permalink structure updated. Remove write access on %s file now!" +msgstr "Die Permalink-Struktur wurde aktualisiert. Entferne jetzt die Schreibrechte für %s!" + +#: wp-admin/options-permalink.php:16 wp-admin/options-permalink.php:32 +msgid "Permalink Settings" +msgstr "Einstellungen › Permalinks" + +#: wp-admin/options-media.php:143 +msgid "Organize my uploads into month- and year-based folders" +msgstr "Meine Uploads in monats- und jahresbasierten Ordnern organisieren" + +#: wp-admin/options-media.php:132 +msgid "Configuring this is optional. By default, it should be blank." +msgstr "Diese Einstellung ist optional. Standardmäßig sollte sie leer sein" + +#: wp-admin/options-media.php:130 +msgid "Full URL path to files" +msgstr "Kompletter Pfad zu den Dateien" + +#: wp-admin/options-media.php:118 +msgid "Store uploads in this folder" +msgstr "Uploads in folgendem Ordner speichern" + +#: wp-admin/options-media.php:107 +msgid "Uploading Files" +msgstr "Dateien hochladen" + +#: wp-admin/options-media.php:81 wp-admin/options-media.php:82 +msgid "Large size" +msgstr "Groß" + +#: wp-admin/options-media.php:75 wp-admin/options-media.php:86 +msgid "Max Height" +msgstr "Maximale Höhe" + +#: wp-admin/options-media.php:72 wp-admin/options-media.php:83 +msgid "Max Width" +msgstr "Maximale Breite" + +#: wp-admin/options-media.php:70 wp-admin/options-media.php:71 +msgid "Medium size" +msgstr "Mittelgroß" + +#: wp-admin/options-media.php:65 +msgid "Crop thumbnail to exact dimensions (normally thumbnails are proportional)" +msgstr "Das Vorschaubild auf die exakte Größe beschneiden (Vorschaubilder sind normalerweise proportional)" + +#: wp-admin/options-media.php:56 wp-admin/options-media.php:57 +msgid "Thumbnail size" +msgstr "Vorschaubilder" + +#: wp-admin/options-media.php:51 +msgid "Image sizes" +msgstr "Bildgröße" + +#: wp-admin/options-media.php:16 +msgid "Media Settings" +msgstr "Einstellungen › Medien" + +#: wp-admin/options-general.php:383 +msgid "Week Starts On" +msgstr "Woche beginnt am " + +#: wp-admin/options-general.php:333 wp-admin/options-general.php:370 +msgid "Custom:" +msgstr "Angepasst:" + +#: wp-admin/options-general.php:274 +msgid "This timezone is currently in standard time." +msgstr "Diese Zeitzone ist zurzeit in der Winterzeit." + +#: wp-admin/includes/class-wp-debug-data.php:80 +#: wp-admin/options-general.php:224 +msgid "Timezone" +msgstr "Zeitzone" + +#: wp-admin/options-general.php:149 +msgid "New User Default Role" +msgstr "Standardrolle eines neuen Benutzers" + +#: wp-admin/options-general.php:144 +msgid "Anyone can register" +msgstr "Jeder kann sich registrieren." + +#: wp-admin/options-general.php:141 wp-admin/options-general.php:142 +msgid "Membership" +msgstr "Mitgliedschaft" + +#: wp-admin/options-general.php:19 +msgid "General Settings" +msgstr "Einstellungen › Allgemein" + +#: wp-admin/options-discussion.php:280 +msgid "MonsterID (Generated)" +msgstr "MonsterID (automatisch generiert)" + +#: wp-admin/options-discussion.php:279 +msgid "Wavatar (Generated)" +msgstr "Wavatar (automatisch generiert)" + +#: wp-admin/options-discussion.php:278 +msgid "Identicon (Generated)" +msgstr "Identicon (automatisch generiert)" + +#: wp-admin/options-discussion.php:277 +msgid "Gravatar Logo" +msgstr "Gravatar-Logo" + +#: wp-admin/options-discussion.php:276 +msgid "Blank" +msgstr "Kein Avatar" + +#: wp-admin/options-discussion.php:270 +msgid "For users without a custom avatar of their own, you can either display a generic logo or a generated one based on their email address." +msgstr "Für Benutzer, die selbst keinen eigenen, individuellen Avatar haben, kann wahlweise ein allgemeines Logo oder ein auf Basis der E-Mail-Adresse erzeugter Avatar angezeigt werden." + +#: wp-admin/options-discussion.php:266 wp-admin/options-discussion.php:267 +msgid "Default Avatar" +msgstr "Standard-Avatar" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:255 +msgid "X — Even more mature than above" +msgstr "X — Keine Jugendfreigabe" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:253 +msgid "R — Intended for adult audiences above 17" +msgstr "R — Entspricht in etwa dem deutschen FSK18" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:251 +msgid "PG — Possibly offensive, usually for audiences 13 and above" +msgstr "PG — Entspricht dem deutschen FSK12" + +#. translators: Content suitability rating: +#. https://en.wikipedia.org/wiki/Motion_Picture_Association_of_America_film_rating_system +#: wp-admin/options-discussion.php:249 +msgid "G — Suitable for all audiences" +msgstr "G — Jugendfrei" + +#: wp-admin/options-discussion.php:243 wp-admin/options-discussion.php:244 +msgid "Maximum Rating" +msgstr "Avatare anzeigen mit der Einstufung bis einschließlich" + +#: wp-admin/options-discussion.php:238 +msgid "Show Avatars" +msgstr "Avatare anzeigen" + +#: wp-admin/options-discussion.php:234 +msgid "Avatar Display" +msgstr "Avataranzeige" + +#: wp-admin/options-discussion.php:218 +msgid "Avatars" +msgstr "Avatare" + +#: wp-admin/options-discussion.php:209 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be put in the Trash. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Wenn ein Kommentar innerhalb von Inhalt, Namen, URL, E-Mail-Adresse oder in der IP-Adresse eines der unten aufgeführten Wörter oder Werte enthält, dann wird er als Spam markiert. Ein Wort oder eine IP-Adresse pro Zeile. Wortteile werden auch berücksichtigt, also wird durch „press“ auch „WordPress“ gefiltert." + +#: wp-admin/options-discussion.php:200 +msgid "When a comment contains any of these words in its content, author name, URL, email, IP address, or browser’s user agent string, it will be held in the moderation queue. One word or IP address per line. It will match inside words, so “press” will match “WordPress”." +msgstr "Wenn ein Kommentar innerhalb von Inhalt, Namen, URL, E-Mail-Adresse oder in der IP-Adresse eines der unten aufgeführten Wörter oder Werte enthält, dann verschiebe diesen Kommentar zum Freischalten in die Warteschlange. Ein Wort oder eine IP-Adresse pro Zeile. Wortteile werden auch berücksichtigt, also wird durch „press“ auch „WordPress“ gefiltert." + +#. translators: %s: Number of links. +#: wp-admin/options-discussion.php:194 +msgid "Hold a comment in the queue if it contains %s or more links. (A common characteristic of comment spam is a large number of hyperlinks.)" +msgstr "Einen Kommentar in die Warteschlange schieben, wenn er %s oder mehr Links enthält. (Eine hohe Anzahl von Links ist ein typisches Merkmal von Kommentar-Spam.)" + +#: wp-admin/options-discussion.php:188 wp-admin/options-discussion.php:189 +msgid "Comment Moderation" +msgstr "Kommentarmoderation" + +#: wp-admin/options-discussion.php:184 +msgid "Comment author must have a previously approved comment" +msgstr "muss der Autor bereits einen freigegebenen Kommentar geschrieben haben." + +#: wp-admin/options-discussion.php:178 wp-admin/options-discussion.php:179 +msgid "Before a comment appears" +msgstr "Bevor ein Kommentar erscheint," + +#: wp-admin/options-discussion.php:174 +msgid "A comment is held for moderation" +msgstr "ein Kommentar auf Freischaltung wartet." + +#: wp-admin/options-discussion.php:170 +msgid "Anyone posts a comment" +msgstr "jemand einen Kommentar schreibt." + +#: wp-admin/options-discussion.php:166 wp-admin/options-discussion.php:167 +msgid "Email me whenever" +msgstr "Mir eine E-Mail senden, wenn" + +#. translators: %s: Form field control for 'older' or 'newer' comments. +#: wp-admin/options-discussion.php:159 +msgid "Comments should be displayed with the %s comments at the top of each page" +msgstr "Die %s Kommentare sollen oben stehen" + +#: wp-admin/options-discussion.php:156 +msgid "newer" +msgstr "neuesten" + +#: wp-admin/options-discussion.php:152 +msgid "older" +msgstr "ältesten" + +#. translators: 1: Form field control for number of top level comments per +#. page, 2: Form field control for the 'first' or 'last' page. +#: wp-admin/options-discussion.php:138 +msgid "Break comments into pages with %1$s top level comments per page and the %2$s page displayed by default" +msgstr "Kommentare in Seiten umbrechen, mit %1$s Top-Level-Kommentaren pro Seite und die %2$s-Seite standardmäßig anzeigen." + +#: wp-admin/options-discussion.php:135 +msgid "first" +msgstr "erste" + +#: wp-admin/options-discussion.php:131 +msgid "last" +msgstr "letzte" + +#. translators: %s: Number of levels. +#: wp-admin/options-discussion.php:119 +msgid "Enable threaded (nested) comments %s levels deep" +msgstr "Verschachtelte Kommentare in %s Ebenen organisieren" + +#. translators: %s: Number of days. +#: wp-admin/options-discussion.php:83 +msgid "Automatically close comments on posts older than %s days" +msgstr "Kommentare zu Beiträgen, die älter als %s Tage sind, automatisch schließen" + +#: wp-admin/options-discussion.php:70 +msgid "Users must be registered and logged in to comment" +msgstr "Benutzer müssen zum Kommentieren registriert und angemeldet sein" + +#: wp-admin/options-discussion.php:66 +msgid "Comment author must fill out name and email" +msgstr "Benutzer müssen zum Kommentieren Name und E-Mail-Adresse angeben" + +#: wp-admin/options-discussion.php:64 wp-admin/options-discussion.php:65 +msgid "Other comment settings" +msgstr "Weitere Kommentareinstellungen" + +#: wp-admin/options-discussion.php:60 +msgid "These settings may be overridden for individual posts." +msgstr "Diese Einstellungen können für jeden Beitrag individuell geändert werden." + +#: wp-admin/edit-form-advanced.php:405 wp-admin/options-discussion.php:15 +msgid "Discussion Settings" +msgstr "Einstellungen › Diskussion" + +#: wp-admin/includes/class-wp-users-list-table.php:159 +#: wp-admin/includes/deprecated.php:570 +#: wp-admin/includes/class-wp-ms-users-list-table.php:126 +msgid "No users found." +msgstr "Es wurden keinen Benutzer gefunden." + +#: wp-admin/update-core.php:486 wp-admin/update-core.php:617 +#: wp-admin/update-core.php:1008 wp-admin/update-core.php:1013 +#: wp-admin/network/themes.php:84 +msgid "Update Themes" +msgstr "Themes aktualisieren" + +#: wp-admin/my-sites.php:124 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:718 +#: wp-admin/network/site-info.php:137 wp-admin/network/site-users.php:229 +#: wp-admin/network/site-themes.php:179 wp-admin/network/site-settings.php:94 +msgid "Visit" +msgstr "Ansehen" + +#: wp-admin/my-sites.php:13 wp-admin/ms-delete-site.php:13 +#: wp-admin/network/admin.php:17 +msgid "Multisite support is not enabled." +msgstr "Die Unterstützung für eine Netzwerk-Installation (Multisite) ist nicht aktiviert." + +#: wp-admin/menu.php:298 +msgid "Permalinks" +msgstr "Permalinks" + +#: wp-admin/credits.php:39 wp-admin/privacy.php:12 wp-admin/privacy.php:36 +#: wp-admin/privacy.php:42 wp-admin/freedoms.php:42 wp-admin/about.php:37 +#: wp-admin/menu.php:299 +msgid "Privacy" +msgstr "Datenschutz" + +#: wp-admin/menu.php:295 +msgid "Reading" +msgstr "Lesen" + +#: wp-admin/menu.php:294 +msgid "Writing" +msgstr "Schreiben" + +#: wp-admin/menu.php:293 +msgctxt "settings screen" +msgid "General" +msgstr "Allgemein" + +#: wp-admin/user-edit.php:31 wp-admin/user/menu.php:14 wp-admin/menu.php:255 +#: wp-admin/menu.php:267 wp-admin/menu.php:270 +msgid "Profile" +msgstr "Profil" + +#. translators: Add new plugin. +#: wp-admin/plugins.php:725 wp-admin/menu.php:246 wp-admin/network/menu.php:106 +msgctxt "plugin" +msgid "Add New" +msgstr "Installieren" + +#: wp-admin/menu.php:188 +msgid "Appearance" +msgstr "Design" + +#. translators: %s: Number of comments. +#: wp-admin/menu.php:98 +msgid "Comments %s" +msgstr "Kommentare %s" + +#. translators: Add new file. +#: wp-admin/media.php:129 wp-admin/upload.php:90 wp-admin/upload.php:273 +#: wp-admin/menu.php:69 +msgctxt "file" +msgid "Add New" +msgstr "Datei hinzufügen" + +#: wp-admin/menu.php:67 +msgid "Library" +msgstr "Medienübersicht" + +#: wp-admin/media.php:136 wp-admin/media.php:156 +msgid "Update Media" +msgstr "Dateien aktualisieren" + +#: wp-admin/media.php:73 +msgid "You can’t edit this attachment because it is in the Trash. Please move it out of the Trash and try again." +msgstr "Du kannst diesen Anhang nicht bearbeiten, da er im Papierkorb liegt. Bitte hole ihn zuerst aus dem Papierkorb und versuche es erneut." + +#: wp-admin/media.php:67 +msgid "You attempted to edit an attachment that doesn’t exist. Perhaps it was deleted?" +msgstr "Du versuchst einen Anhang zu bearbeiten, der nicht existiert. Möglicherweise wurde er gelöscht?" + +#: wp-admin/media.php:23 wp-admin/media.php:61 +msgid "Sorry, you are not allowed to edit this attachment." +msgstr "Du bist leider nicht berechtigt, diesen Anhang zu bearbeiten." + +#: wp-admin/media-new.php:42 +msgid "Upload New Media" +msgstr "Neue Medien hochladen" + +#: wp-admin/maint/repair.php:169 +msgid "Repair and Optimize Database" +msgstr "Repariere und optimiere die Datenbank" + +#: wp-admin/maint/repair.php:167 +msgid "Repair Database" +msgstr "Datenbank reparieren" + +#. translators: %s: URL to "Fixing WordPress" forum. +#: wp-admin/maint/repair.php:146 +msgid "Some database problems could not be repaired. Please copy-and-paste the following list of errors to the WordPress support forums to get additional assistance." +msgstr "Einige Datenbank-Probleme konnten nicht behoben werden. Du kannst anhand der folgenden Fehlerauflistung in den WordPress support forums (WordPress-Hilfeforen) oder in den Support-Foren der deutschsprachigen WordPress-Community um Unterstützung bitten." + +#: wp-admin/maint/repair.php:20 +msgid "WordPress › Database Repair" +msgstr "WordPress › Datenbank-Reparatur" + +#: wp-admin/link.php:117 +msgid "Link not found." +msgstr "Link nicht gefunden." + +#: wp-admin/includes/class-wp-links-list-table.php:80 +msgid "No links found." +msgstr "Keine Links gefunden." + +#: wp-admin/link-manager.php:127 +msgid "Search Links" +msgstr "Links suchen" + +#. translators: %s: Number of links. +#: wp-admin/link-manager.php:119 +msgid "%s link deleted." +msgid_plural "%s links deleted." +msgstr[0] "%s Link gelöscht." +msgstr[1] "%s Links gelöscht." + +#. translators: Add new links. +#: wp-admin/link-manager.php:103 wp-admin/edit-link-form.php:90 +#: wp-admin/menu.php:83 +msgctxt "link" +msgid "Add New" +msgstr "Link hinzufügen" + +#: wp-admin/link-add.php:16 +msgid "Add New Link" +msgstr "Link hinzufügen" + +#: wp-admin/install.php:417 +msgid "Success!" +msgstr "Installation erfolgreich!" + +#: wp-admin/install.php:361 +msgid "Please provide the following information. Don’t worry, you can always change these settings later." +msgstr "Bitte trage die folgenden Informationen ein. Keine Sorge, du kannst all diese Einstellungen später auch wieder ändern." + +#: wp-admin/install.php:360 +msgid "Information needed" +msgstr "Benötigte Informationen" + +#: wp-admin/install.php:207 +msgid "Install WordPress" +msgstr "WordPress installieren" + +#: wp-admin/install.php:179 +msgid "Double-check your email address before continuing." +msgstr "Bitte überprüfe nochmal deine E-Mail-Adresse auf Richtigkeit, bevor du weitermachst." + +#: wp-admin/install.php:177 +msgid "Your Email" +msgstr "Deine E-Mail-Adresse" + +#: wp-admin/install.php:122 +msgid "User(s) already exists." +msgstr "Benutzer existiert (existieren) bereits" + +#: wp-admin/install.php:73 +msgid "WordPress › Installation" +msgstr "WordPress › Installation" + +#: wp-admin/includes/user.php:201 +msgid "Error: Please enter an email address." +msgstr "Fehler: Bitte gib eine E-Mail-Adresse ein." + +#: wp-admin/includes/user.php:172 +msgid "Error: Passwords may not contain the character \"\\\"." +msgstr "Fehler: In Passwörtern darf das Zeichen „\\“ nicht vorkommen." + +#: wp-admin/includes/user.php:167 +msgid "Error: Please enter a password." +msgstr "Fehler: Bitte gib ein Passwort ein." + +#. translators: Default post slug. +#: wp-admin/includes/upgrade.php:242 wp-admin/includes/upgrade.php:556 +msgctxt "Default post slug" +msgid "hello-world" +msgstr "hallo-welt" + +#: wp-admin/includes/upgrade.php:240 +msgid "Hello world!" +msgstr "Hallo Welt!" + +#. translators: %s: Site link. +#. translators: First post content. %s: Site link. +#: wp-admin/includes/schema.php:1251 wp-admin/includes/upgrade.php:213 +msgid "Welcome to %s. This is your first post. Edit or delete it, then start writing!" +msgstr "Willkommen bei %s. Dies ist dein erster Beitrag. Bearbeite oder lösche ihn und beginne mit dem Schreiben!" + +#. translators: Default category slug. +#: wp-admin/includes/upgrade.php:160 +msgctxt "Default category slug" +msgid "Uncategorized" +msgstr "Allgemein" + +#: wp-admin/includes/upgrade.php:89 +msgid "Note that password carefully! It is a random password that was generated just for you." +msgstr "Notiere dir bitte das Passwort! Dies ist ein Zufallspasswort, das nur für dich erstellt wurde." + +#: wp-admin/includes/update.php:830 +msgid "An automated WordPress update has failed to complete! Please notify the site administrator." +msgstr "Ein automatisches Update konnte nicht beendet werden! Bitte benachrichtige jemand von der Website-Administration." + +#. translators: %s: URL to WordPress Updates screen. +#: wp-admin/includes/update.php:826 +msgid "An automated WordPress update has failed to complete - please attempt the update again now." +msgstr "Ein automatisches Update konnte nicht beendet werden – Bitte starte die Aktualisierung jetzt erneut." + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:346 +msgid "Latest" +msgstr "Letztes" + +#. translators: %s: WordPress version number, or 'Latest' string. +#: wp-admin/includes/update.php:346 +msgid "Update to %s" +msgstr "Auf %s aktualisieren" + +#. translators: 1: WordPress version number, 2: URL to WordPress Updates +#. screen. +#: wp-admin/includes/update.php:255 +msgid "You are using a development version (%1$s). Cool! Please stay updated." +msgstr "Du benutzt eine Entwicklungsversion (%1$s). Super! Halte dich auf dem Laufenden." + +#: wp-admin/includes/update-core.php:1285 +msgid "Upgrading database…" +msgstr "Die Datenbank wird aktualisiert …" + +#: wp-admin/includes/update-core.php:929 +msgid "The update could not be unpacked" +msgstr "Das Update konnte nicht entpackt werden" + +#: wp-admin/includes/update-core.php:916 +msgid "Verifying the unpacked files…" +msgstr "Überprüfung der entpackten Dateien …" + +#. translators: 1: WordPress version number, 2: Minimum required MySQL version +#. number, 3: Current MySQL version number. +#: wp-admin/includes/update-core.php:1010 +msgid "The update cannot be installed because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s." +msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die MySQL-Version %2$s voraussetzt. Du verwendest die Version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Current PHP version number. +#: wp-admin/includes/update-core.php:999 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s." +msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die PHP-Version %2$s voraussetzt. Du verwendest die Version %3$s." + +#. translators: 1: WordPress version number, 2: Minimum required PHP version +#. number, 3: Minimum required MySQL version number, 4: Current PHP version +#. number, 5: Current MySQL version number. +#: wp-admin/includes/update-core.php:986 +msgid "The update cannot be installed because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s." +msgstr "Das Update konnte nicht installiert werden, da WordPress %1$s mindestens die PHP-Version %2$s und die MySQL-Version %3$s voraussetzt. Du verwendest die PHP-Version %4$s und die MySQL-Version %5$s." + +#. translators: %s: Theme name. +#: wp-admin/includes/theme.php:83 +msgid "Could not fully remove the theme %s." +msgstr "Das Theme %s konnte nicht vollständig entfernt werden." + +#: wp-admin/includes/theme.php:72 wp-admin/includes/class-wp-upgrader.php:155 +msgid "Unable to locate WordPress theme directory." +msgstr "Das WordPress-Theme-Verzeichnis konnte nicht gefunden werden." + +#: wp-admin/includes/class-theme-installer-skin.php:224 +msgid "This theme is already installed." +msgstr "Dieses Theme ist bereits installiert." + +#. translators: %s: Theme version. +#: wp-admin/includes/theme.php:809 wp-admin/themes.php:929 +#: wp-admin/theme-install.php:461 +msgid "Version: %s" +msgstr "Version: %s" + +#: wp-admin/includes/theme-install.php:182 +msgid "If you have a theme in a .zip format, you may install or update it by uploading it here." +msgstr "Wenn du ein Theme im .zip-Format hast, kannst du es hier hochladen, um es zu installieren oder aktualisieren." + +#: wp-admin/includes/theme-install.php:172 +msgid "Find Themes" +msgstr "Themes finden" + +#: wp-admin/includes/theme.php:296 +msgid "Holiday" +msgstr "Feiertage" + +#: wp-admin/includes/theme.php:290 wp-admin/includes/theme.php:359 +msgid "Subject" +msgstr "Thema" + +#: wp-admin/includes/theme.php:317 +msgid "Sticky Post" +msgstr "Beitrag oben halten" + +#: wp-admin/includes/theme.php:318 +msgid "Theme Options" +msgstr "Theme-Einstellungen" + +#: wp-admin/includes/theme.php:307 +msgid "Custom Colors" +msgstr "Individuelle Farben" + +#: wp-admin/includes/theme.php:302 wp-admin/includes/theme.php:358 +msgid "Features" +msgstr "Funktionen" + +#: wp-admin/includes/theme.php:328 +msgid "Right Sidebar" +msgstr "Seitenleiste rechts" + +#: wp-admin/includes/theme.php:327 +msgid "Left Sidebar" +msgstr "Seitenleiste links" + +#: wp-admin/includes/theme.php:326 +msgid "Four Columns" +msgstr "Vier Spalten" + +#: wp-admin/includes/theme.php:325 +msgid "Three Columns" +msgstr "Drei Spalten" + +#: wp-admin/includes/theme.php:324 +msgid "Two Columns" +msgstr "Zwei Spalten" + +#: wp-admin/includes/theme.php:323 +msgid "One Column" +msgstr "Eine Spalte" + +#: wp-admin/includes/theme-install.php:139 wp-admin/theme-install.php:182 +msgid "Feature Filter" +msgstr "Nach Funktionen filtern" + +#: wp-admin/includes/class-wp-screen.php:969 +msgid "Screen Options" +msgstr "Ansicht anpassen" + +#: wp-admin/widgets.php:412 +msgid "Disable accessibility mode" +msgstr "Zugänglichkeitsmodus deaktivieren" + +#: wp-admin/widgets.php:412 +msgid "Enable accessibility mode" +msgstr "Zugänglichkeitsmodus aktivieren" + +#: wp-admin/themes.php:126 +msgid "Manage Themes" +msgstr "Themes verwalten" + +#: wp-admin/update.php:272 +msgid "Install Themes" +msgstr "Themes installieren" + +#: wp-admin/includes/template.php:992 +msgid "Upload file and import" +msgstr "Datei hochladen und importieren" + +#. translators: %s: Maximum allowed file size. +#: wp-admin/includes/template.php:985 +msgid "Maximum size: %s" +msgstr "Maximale Größe: %s" + +#: wp-admin/includes/template.php:983 +msgid "Choose a file from your computer:" +msgstr "Wähle eine Datei von deinem Computer:" + +#: wp-admin/includes/template.php:973 +msgid "Before you can upload your import file, you will need to fix the following error:" +msgstr "Ehe du die Importdatei hochladen kannst, musst du folgende Fehler beheben:" + +#: wp-admin/includes/template.php:753 +msgid "Add Custom Field" +msgstr "Individuelles Feld hinzufügen" + +#: wp-admin/includes/template.php:740 +msgid "Enter new" +msgstr "Neu eingeben" + +#: wp-admin/includes/template.php:714 +msgid "Add New Custom Field:" +msgstr "Ein neues individuelles Feld hinzufügen:" + +#: wp-admin/includes/template.php:642 +msgid "Key" +msgstr "Schlüssel" + +#: wp-admin/includes/template.php:572 wp-admin/includes/template.php:587 +#: wp-admin/includes/template.php:652 wp-admin/includes/template.php:719 +msgid "Value" +msgstr "Wert" + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:549 +msgid "Comment by %s marked as spam." +msgstr "Kommentar von %s wurde als Spam markiert." + +#. translators: %s: Comment author, filled by Ajax. +#: wp-admin/includes/template.php:540 +msgid "Comment by %s moved to the Trash." +msgstr "Kommentar von %s wurde in den Papierkorb gelegt." + +#: wp-admin/includes/template.php:496 +msgid "Submit Reply" +msgstr "Antwort senden" + +#: wp-admin/includes/template.php:454 +msgid "Reply to Comment" +msgstr "Antwort auf Kommentar" + +#: wp-admin/includes/class-wp-posts-list-table.php:1098 +msgid "Missed schedule" +msgstr "Verpasste Planung" + +#: wp-admin/includes/class-wp-posts-list-table.php:1849 +msgid "Make this post sticky" +msgstr "Beitrag oben halten" + +#: wp-admin/includes/class-wp-posts-list-table.php:1841 +msgid "Not Sticky" +msgstr "Nicht oben halten" + +#: wp-admin/includes/class-wp-posts-list-table.php:1837 +#: wp-admin/includes/class-wp-posts-list-table.php:1840 +msgid "Sticky" +msgstr "Oben halten" + +#: wp-admin/includes/class-wp-posts-list-table.php:1799 +msgid "Allow Pings" +msgstr "Pings erlauben" + +#: wp-admin/includes/class-wp-posts-list-table.php:1790 +msgid "Allow Comments" +msgstr "Erlaube Kommentare" + +#: wp-admin/includes/class-wp-posts-list-table.php:1761 +#: wp-admin/includes/class-wp-posts-list-table.php:1774 +msgid "Do not allow" +msgstr "Nicht erlauben" + +#: wp-admin/includes/class-wp-posts-list-table.php:1760 +#: wp-admin/includes/class-wp-posts-list-table.php:1773 +msgid "Allow" +msgstr "Erlauben" + +#. translators: Between password field and private checkbox on post quick edit +#. interface. +#: wp-admin/includes/class-wp-posts-list-table.php:1620 +msgid "–OR–" +msgstr "– ODER –" + +#: wp-admin/includes/class-wp-posts-list-table.php:1589 +#: wp-admin/includes/class-wp-posts-list-table.php:1680 +#: wp-admin/includes/class-wp-posts-list-table.php:1717 +#: wp-admin/includes/class-wp-posts-list-table.php:1759 +#: wp-admin/includes/class-wp-posts-list-table.php:1772 +#: wp-admin/includes/class-wp-posts-list-table.php:1816 +#: wp-admin/includes/class-wp-posts-list-table.php:1839 +#: wp-admin/includes/class-wp-posts-list-table.php:1864 +msgid "— No Change —" +msgstr "– Keine Änderung –" + +#: wp-admin/includes/class-wp-posts-list-table.php:1534 +msgid "Bulk Edit" +msgstr "Mehrfachbearbeitung" + +#: wp-admin/includes/class-wp-links-list-table.php:135 +msgid "Visible" +msgstr "Sichtbar" + +#: wp-admin/includes/class-wp-links-list-table.php:134 +msgid "Relationship" +msgstr "Beziehung" + +#: wp-admin/includes/class-wp-comments-list-table.php:455 +#: wp-admin/includes/class-wp-post-comments-list-table.php:27 +msgctxt "column name" +msgid "Comment" +msgstr "Kommentar" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:347 +msgctxt "column name" +msgid "Date" +msgstr "Datum" + +#. translators: Column name. +#: wp-admin/includes/class-wp-media-list-table.php:311 +msgctxt "column name" +msgid "File" +msgstr "Datei" + +#. translators: Posts screen column name. +#: wp-admin/includes/class-wp-posts-list-table.php:621 +msgctxt "column name" +msgid "Title" +msgstr "Titel" + +#: wp-admin/includes/class-wp-terms-list-table.php:484 +#: wp-admin/includes/class-wp-comments-list-table.php:781 +#: wp-admin/includes/class-wp-posts-list-table.php:1356 +msgid "Quick Edit" +msgstr "QuickEdit" + +#: wp-admin/includes/class-wp-terms-list-table.php:643 +#: wp-admin/includes/class-wp-posts-list-table.php:1534 +msgid "Quick Edit" +msgstr "QuickEdit" + +#: wp-admin/includes/schema.php:1083 +msgid "Warning! Wildcard DNS may not be configured correctly!" +msgstr "Warnung! Wildcard DNS wurde eventuell nicht korrekt konfiguriert!" + +#. translators: %s: Network title. +#: wp-admin/includes/schema.php:549 +msgid "Just another %s site" +msgstr "Eine weitere %s Website" + +#. translators: Site tagline. +#: wp-admin/includes/schema.php:405 +msgid "Just another WordPress site" +msgstr "Eine weitere WordPress-Website" + +#: wp-admin/includes/post.php:1471 +msgid "Change Permalinks" +msgstr "Permalinks ändern" + +#: wp-admin/includes/post.php:1458 wp-admin/includes/post.php:1483 +msgid "Permalink:" +msgstr "Permalink:" + +#: wp-admin/includes/post.php:685 +msgid "Auto Draft" +msgstr "Automatisch gespeicherter Entwurf" + +#: wp-admin/includes/post.php:36 wp-admin/includes/post.php:81 +msgid "Sorry, you are not allowed to edit posts as this user." +msgstr "Du bist leider nicht berechtigt, als dieser Benutzer Beiträge zu bearbeiten." + +#: wp-admin/includes/post.php:34 wp-admin/includes/post.php:79 +msgid "Sorry, you are not allowed to edit pages as this user." +msgstr "Du bist leider nicht berechtigt, als dieser Benutzer Seiten zu bearbeiten." + +#: wp-admin/includes/plugin.php:1106 +msgid "The plugin does not have a valid header." +msgstr "Das Plugin hat keinen validen Header." + +#: wp-admin/includes/plugin.php:1101 +msgid "Plugin file does not exist." +msgstr "Diese Plugindatei existiert nicht." + +#: wp-admin/includes/plugin.php:1098 +msgid "Invalid plugin path." +msgstr "Ungültiger Pfad zum Plugin." + +#. translators: %s: Comma-separated list of plugin filenames. +#: wp-admin/includes/plugin.php:1038 +msgid "Could not fully remove the plugins %s." +msgstr "Die Plugins %s konnten nicht vollständig entfernt werden." + +#: wp-admin/includes/plugin.php:881 +msgid "One of the plugins is invalid." +msgstr "Eines der Plugins ist ungültig." + +#: wp-admin/includes/plugin.php:731 +msgid "The plugin generated unexpected output." +msgstr "Das Plugin hat eine unerwartete Ausgabe erzeugt." + +#: wp-admin/includes/plugin-install.php:823 +msgid "Warning: This plugin has not been tested with your current version of WordPress." +msgstr "Achtung: Dieses Plugin wurde nicht mit deiner aktuellen WordPress-Version getestet." + +#: wp-admin/includes/plugin-install.php:708 +msgid "Average Rating" +msgstr "Durchschnittliche Bewertung" + +#: wp-admin/includes/plugin-install.php:700 +msgid "WordPress.org Plugin Page »" +msgstr "WordPress.org-Plugin-Seite »" + +#: wp-admin/includes/plugin-install.php:673 +msgid "Compatible up to:" +msgstr "Kompatibel bis zu:" + +#. translators: %s: Version number. +#: wp-admin/includes/plugin-install.php:669 +#: wp-admin/includes/plugin-install.php:679 +msgid "%s or higher" +msgstr "%s oder höher" + +#: wp-admin/includes/plugin-install.php:666 +msgid "Requires WordPress Version:" +msgstr "Erforderliche WordPress-Version:" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:731 +#: wp-admin/includes/plugin-install.php:658 +msgid "Last Updated:" +msgstr "Zuletzt aktualisiert:" + +#: wp-admin/includes/plugin-install.php:886 +msgid "Latest Version Installed" +msgstr "Aktuelle Version installiert" + +#. translators: %s: Plugin version. +#: wp-admin/includes/plugin-install.php:883 +msgid "Newer Version (%s) Installed" +msgstr "Aktuellere Version (%s) installiert" + +#: wp-admin/includes/plugin-install.php:872 +msgid "Install Update Now" +msgstr "Update jetzt installieren" + +#. translators: %s: Number of ratings. +#: wp-admin/includes/plugin-install.php:722 +msgid "(based on %s rating)" +msgid_plural "(based on %s ratings)" +msgstr[0] "(basierend auf %s Abstimmung)" +msgstr[1] "(basierend auf %s Abstimmungen)" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:533 +#: wp-admin/includes/theme-install.php:187 +#: wp-admin/includes/class-wp-theme-install-list-table.php:327 +#: wp-admin/includes/plugin-install.php:357 +#: wp-admin/includes/plugin-install.php:860 wp-admin/press-this.php:63 +#: wp-admin/import.php:160 wp-admin/js/updates.js:895 +#: wp-admin/js/updates.js:2150 wp-admin/js/updates.js:2193 +msgid "Install Now" +msgstr "Jetzt installieren" + +#: wp-admin/includes/plugin-install.php:355 +msgid "Plugin zip file" +msgstr "ZIP-Datei des Plugins" + +#: wp-admin/includes/plugin-install.php:352 +msgid "If you have a plugin in a .zip format, you may install or update it by uploading it here." +msgstr "Wenn du ein Plugin im .zip-Format hast, kannst du es hier hochladen, um es zu installieren oder aktualisieren." + +#: wp-admin/includes/plugin-install.php:337 +#: wp-admin/includes/plugin-install.php:339 +msgid "Search Plugins" +msgstr "Plugins suchen" + +#: wp-admin/includes/plugin-install.php:282 +msgid "You may also browse based on the most popular tags in the Plugin Directory:" +msgstr "Du kannst das Plugin-Verzeichnis auch, sondiert nach den beliebtesten Schlagwörtern, durchsuchen:" + +#: wp-admin/includes/plugin-install.php:281 +msgid "Popular tags" +msgstr "Populäre Schlagwörter" + +#: wp-admin/includes/meta-boxes.php:1372 +msgid "(Leave at 0 for no rating.)" +msgstr "(Bei 0 belassen, wenn es keine Bewertung geben soll.)" + +#: wp-admin/includes/class-wp-links-list-table.php:136 +#: wp-admin/includes/meta-boxes.php:1361 +msgid "Rating" +msgstr "Bewertung" + +#: wp-admin/includes/meta-boxes.php:1357 +msgid "Notes" +msgstr "Notizen" + +#: wp-admin/includes/meta-boxes.php:1353 +msgid "RSS Address" +msgstr "RSS-Adresse" + +#: wp-admin/includes/meta-boxes.php:1349 +msgid "Image Address" +msgstr "Bild-Adresse" + +#: wp-admin/includes/meta-boxes.php:1334 +msgid "If the link is to a person, you can specify your relationship with them using the above form. If you would like to learn more about the idea check out XFN." +msgstr "Wenn der Link zu einer Person führt, kannst du deine Beziehung zu dieser Person mithilfe des obigen Formulars angeben. Wenn du mehr über die Idee erfahren möchtest, schau unter XFN nach." + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1328 +msgid "sweetheart" +msgstr "Liebling" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1325 +msgid "date" +msgstr "Verabredung" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1322 +msgid "crush" +msgstr "verrückt nach" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1319 +msgid "muse" +msgstr "Muse" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1316 wp-admin/includes/meta-boxes.php:1317 +msgid "romantic" +msgstr "Verhältnis" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1308 +msgid "spouse" +msgstr "Partner" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1305 +msgid "sibling" +msgstr "Geschwister" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1302 +msgid "parent" +msgstr "Eltern" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1299 +msgid "kin" +msgstr "Angehörige" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1296 +msgid "child" +msgstr "Kind" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1293 wp-admin/includes/meta-boxes.php:1294 +msgid "family" +msgstr "Familie" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1285 +msgid "neighbor" +msgstr "Nachbar" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1282 +msgid "co-resident" +msgstr "Mitbewohner" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1279 wp-admin/includes/meta-boxes.php:1280 +msgid "geographical" +msgstr "Umfeld" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1274 +msgid "colleague" +msgstr "Kollege" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1271 +msgid "co-worker" +msgstr "Mitarbeiter" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1268 wp-admin/includes/meta-boxes.php:1269 +msgid "professional" +msgstr "beruflich" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1263 +msgid "met" +msgstr "getroffen" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1260 wp-admin/includes/meta-boxes.php:1261 +msgid "physical" +msgstr "reale Welt" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1255 wp-admin/includes/meta-boxes.php:1288 +#: wp-admin/includes/meta-boxes.php:1311 +msgid "none" +msgstr "keine" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1252 +msgid "friend" +msgstr "Freund" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1249 +msgid "acquaintance" +msgstr "Bekannschaft" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1246 +msgid "contact" +msgstr "Kontakt" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1243 wp-admin/includes/meta-boxes.php:1244 +msgid "friendship" +msgstr "Freundschaft" + +#: wp-admin/includes/meta-boxes.php:1239 +msgid "another web address of mine" +msgstr "eine weitere meiner Webadressen" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1235 wp-admin/includes/meta-boxes.php:1236 +msgid "identity" +msgstr "Identität" + +#. translators: xfn: https://gmpg.org/xfn +#: wp-admin/includes/meta-boxes.php:1231 +msgid "rel:" +msgstr "Beziehung" + +#: wp-admin/includes/meta-boxes.php:1175 +msgid "Choose the target frame for your link." +msgstr "Wähle das Ziel für deine Links." + +#: wp-admin/includes/meta-boxes.php:1173 +msgid "_none — same window or tab." +msgstr "_none – dasselbe Fenster oder derselbe Tab." + +#: wp-admin/includes/meta-boxes.php:1170 +msgid "_top — current window or tab, with no frames." +msgstr "_top – aktuelles Fenster oder aktueller Tab, ohne Frames." + +#: wp-admin/includes/meta-boxes.php:1167 +msgid "_blank — new window or tab." +msgstr "_blank – neues Fenster oder neuer Tab." + +#. translators: %s: Link name. +#: wp-admin/includes/class-wp-links-list-table.php:333 +#: wp-admin/includes/meta-boxes.php:1078 +msgid "" +"You are about to delete this link '%s'\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Du bist dabei, diesen Link zu löschen: ‚%s‘\n" +" ‚Abbrechen‘ zum Beenden, ‚OK‘ zum Löschen." + +#: wp-admin/includes/meta-boxes.php:1060 +msgid "Keep this link private" +msgstr "Diesen Link als Privat markieren" + +#: wp-admin/includes/meta-boxes.php:1052 +msgid "Visit Link" +msgstr "Link besuchen" + +#: wp-admin/includes/class-wp-posts-list-table.php:1674 +msgid "Main Page (no parent)" +msgstr "Hauptseite (keine Übergeordnete)" + +#: wp-admin/includes/meta-boxes.php:967 +#: wp-admin/includes/class-wp-posts-list-table.php:1668 +msgid "Parent" +msgstr "Eltern" + +#: wp-admin/includes/meta-boxes.php:872 +msgid "Show comments" +msgstr "Kommentare zeigen" + +#: wp-admin/includes/meta-boxes.php:740 +msgid "Separate multiple URLs with spaces" +msgstr "Mehrere URLs durch Leerzeichen trennen" + +#: wp-admin/includes/meta-boxes.php:737 +msgid "Send trackbacks to:" +msgstr "Sende Trackbacks an:" + +#: wp-admin/includes/meta-boxes.php:727 +msgid "Already pinged:" +msgstr "Bereits gepingt:" + +#: wp-admin/includes/meta-boxes.php:1144 +msgid "New category name" +msgstr "Neuer Kategoriename" + +#: wp-admin/includes/meta-boxes.php:1141 wp-admin/includes/meta-boxes.php:1143 +msgid "+ Add New Category" +msgstr "+ Neue Kategorie hinzufügen" + +#: wp-admin/includes/meta-boxes.php:230 wp-admin/includes/meta-boxes.php:244 +msgid "Publish immediately" +msgstr "Sofort veröffentlichen" + +#: wp-admin/includes/meta-boxes.php:198 +msgid "Stick this post to the front page" +msgstr "Beitrag auf der Startseite halten" + +#: wp-admin/includes/meta-boxes.php:103 wp-admin/edit-form-comment.php:98 +#: wp-admin/export.php:222 wp-admin/export.php:269 +msgid "Status:" +msgstr "Status:" + +#: wp-admin/includes/meta-boxes.php:71 +msgid "Preview Changes" +msgstr "Vorschau der Änderungen" + +#: wp-admin/includes/media.php:2924 +msgid "Link text, e.g. “Ransom Demands (PDF)”" +msgstr "Link-Text, z. B. „Airheads – Sie haben den Beat (PDF)“" + +#: wp-admin/includes/media.php:2955 +msgid "Link to image" +msgstr "Mit Bild verlinken" + +#: wp-admin/includes/media.php:2950 +msgid "Link Image To:" +msgstr "Mit Bild verlinken:" + +#: wp-admin/includes/media.php:2880 +msgid "Image Caption" +msgstr "Bildbeschriftung" + +#: wp-admin/includes/media.php:2832 +msgid "Filter »" +msgstr "Auswahl einschränken »" + +#: wp-admin/includes/media.php:2740 +msgid "All Types" +msgstr "Alle Arten" + +#: wp-admin/includes/media.php:2703 wp-admin/includes/media.php:2705 +msgid "Search Media" +msgstr "Dateien suchen" + +#: wp-admin/includes/media.php:2644 +msgid "Update gallery settings" +msgstr "Galerie-Einstellungen aktualisieren" + +#: wp-admin/includes/media.php:2623 +msgid "Gallery columns:" +msgstr "Galeriespalten" + +#: wp-admin/includes/media.php:2608 +msgid "Order:" +msgstr "Reihenfolge:" + +#: wp-admin/includes/media.php:2600 +msgid "Random" +msgstr "Zufällig" + +#: wp-admin/includes/media.php:2599 +msgid "Date/Time" +msgstr "Datum/Zeit" + +#: wp-admin/includes/media.php:2597 +msgid "Menu order" +msgstr "Menüreihenfolge" + +#: wp-admin/includes/media.php:2592 +msgid "Order images by:" +msgstr "Bilder anordnern nach:" + +#: wp-admin/includes/media.php:2582 +msgid "Image File" +msgstr "Bilddatei" + +#: wp-admin/includes/media.php:2577 +msgid "Link thumbnails to:" +msgstr "Vorschaubilder verlinken auf:" + +#: wp-admin/includes/media.php:2535 wp-admin/includes/media.php:2616 +msgid "Descending" +msgstr "Absteigend" + +#: wp-admin/includes/media.php:2534 wp-admin/includes/media.php:2613 +msgid "Ascending" +msgstr "Aufsteigend" + +#: wp-admin/includes/media.php:2533 +msgid "Sort Order:" +msgstr "Sortierung:" + +#: wp-admin/includes/media.php:2529 +msgid "All Tabs:" +msgstr "Alle Tabs:" + +#: wp-admin/includes/media.php:2337 wp-admin/includes/media.php:2556 +#: wp-admin/includes/media.php:2859 +msgid "Save all changes" +msgstr "Alle Änderungen speichern" + +#: wp-admin/includes/media.php:2307 +msgid "Add media files from your computer" +msgstr "Mediendateien von deinem Computer hinzufügen" + +#: wp-admin/includes/media.php:1694 wp-admin/includes/media.php:2961 +#: wp-admin/includes/media.php:2967 +msgid "Insert into Post" +msgstr "In Beitrag einfügen" + +#: wp-admin/includes/media.php:1668 +msgid "Upload date:" +msgstr "Upload-Datum:" + +#: wp-admin/includes/media.php:1585 wp-admin/includes/media.php:2531 +#: wp-admin/install.php:146 wp-admin/user-new.php:545 +#: wp-admin/user-edit.php:638 wp-admin/js/user-profile.js:70 +msgid "Hide" +msgstr "Verstecken" + +#: wp-admin/includes/media.php:1584 wp-admin/includes/media.php:2530 +#: wp-admin/js/user-profile.js:70 +msgid "Show" +msgstr "Anzeigen" + +#: wp-admin/includes/media.php:1393 +msgid "Location of the uploaded file." +msgstr "Ort der hochgeladenen Datei." + +#: wp-admin/includes/media.php:1307 +msgid "Empty Title filled from filename." +msgstr "Wenn kein Titel angegeben wird, wird der Dateiname eingesetzt." + +#: wp-admin/includes/media.php:1450 wp-admin/includes/media.php:2931 +msgid "Alt text for the image, e.g. “The Mona Lisa”" +msgstr "Beschreibung des Bildes, z. B. „Die Mona Lisa“" + +#: wp-admin/includes/media.php:1228 wp-admin/includes/media.php:1389 +msgid "File URL" +msgstr "Datei-URL" + +#: wp-admin/credits.php:30 wp-admin/includes/class-wp-debug-data.php:64 +#: wp-admin/includes/class-wp-privacy-policy-content.php:721 +#: wp-admin/includes/media.php:518 wp-admin/includes/template.php:2014 +#: wp-admin/privacy.php:27 wp-admin/install.php:77 wp-admin/freedoms.php:33 +#: wp-admin/upgrade.php:68 wp-admin/about.php:28 wp-admin/setup-config.php:118 +#: wp-admin/maint/repair.php:24 +msgid "WordPress" +msgstr "WordPress" + +#: wp-admin/includes/media.php:518 +msgid "Uploads" +msgstr "Uploads" + +#. translators: %s: Number of attachments. +#: wp-admin/includes/media.php:64 +msgid "Gallery (%s)" +msgstr "Galerie (%s)" + +#: wp-admin/includes/media.php:19 +msgid "From URL" +msgstr "Von URL" + +#: wp-admin/includes/media.php:18 +msgid "From Computer" +msgstr "Vom Computer" + +#: wp-admin/includes/image-edit.php:987 +msgid "Image saved" +msgstr "Das Bild wurde gespeichert" + +#: wp-admin/includes/image-edit.php:859 +msgid "Unable to save the image." +msgstr "Das Bild konnte nicht gespeichert werden." + +#: wp-admin/includes/image-edit.php:810 +msgid "Nothing to save, the image has not changed." +msgstr "Es gibt nichts zu speichern, das Bild wurde nicht verändert." + +#: wp-admin/includes/image-edit.php:801 +msgid "Error while saving the scaled image. Please reload the page and try again." +msgstr "Fehler beim Speichern des skalierten Bildes. Bitte lade die Seite neu und versuche es nochmal." + +#: wp-admin/includes/image-edit.php:777 +msgid "Unable to create new image." +msgstr "Neues Bild konnte nicht erstellt werden." + +#: wp-admin/includes/image-edit.php:750 +msgid "Image restored successfully." +msgstr "Das Bild wurde erfolgreich wiederhergestellt." + +#: wp-admin/includes/image-edit.php:748 +msgid "Image metadata is inconsistent." +msgstr "Die Bild-Metadaten sind inkonsistent." + +#: wp-admin/includes/image-edit.php:743 +msgid "Cannot save image metadata." +msgstr "Die Bild-Metadaten konnten nicht gespeichert werden." + +#: wp-admin/includes/image-edit.php:683 +msgid "Cannot load image metadata." +msgstr "Die Bild-Metadaten konnten nicht geladen werden." + +#: wp-admin/includes/image-edit.php:239 +msgid "All sizes except thumbnail" +msgstr "Alle Größen außer dem Vorschaubild" + +#: wp-admin/includes/image-edit.php:229 +msgid "All image sizes" +msgstr "Alle Bildgrößen" + +#: wp-admin/includes/image-edit.php:225 +msgid "Apply changes to:" +msgstr "Änderungen anwenden auf:" + +#: wp-admin/includes/image-edit.php:220 +msgid "Current thumbnail" +msgstr "Das aktuelle Vorschaubild" + +#: wp-admin/includes/image-edit.php:211 +msgid "Thumbnail Settings" +msgstr "Vorschaubild-Einstellungen" + +#: wp-admin/includes/image-edit.php:192 +msgid "Selection:" +msgstr "Auswahl:" + +#: wp-admin/includes/image-edit.php:181 +msgid "Aspect ratio:" +msgstr "Bildformat:" + +#: wp-admin/includes/image-edit.php:175 +msgid "Crop Selection" +msgstr "Ausschnittsbereich" + +#: wp-admin/includes/image-edit.php:172 +msgid "Crop Aspect Ratio" +msgstr "Bildformat des Ausschnitts" + +#: wp-admin/includes/image-edit.php:166 +msgid "Image Crop" +msgstr "Bildausschnitt" + +#: wp-admin/includes/image-edit.php:156 +msgid "Restore image" +msgstr "Bild wiederherstellen" + +#: wp-admin/includes/image-edit.php:151 +msgid "Previously edited copies of the image will not be deleted." +msgstr "Bereits bearbeitete Kopien des Bildes werden nicht gelöscht." + +#: wp-admin/includes/image-edit.php:148 +msgid "Discard any changes and restore the original image." +msgstr "Änderungen verwerfen und Originalbild wiederherstellen." + +#: wp-admin/includes/class-custom-background.php:313 +#: wp-admin/includes/class-custom-background.php:317 +msgid "Restore Original Image" +msgstr "Originalbild wiederherstellen" + +#. translators: %s: Image width and height in pixels. +#: wp-admin/includes/image-edit.php:115 +msgid "Original dimensions %s" +msgstr "Originalgröße %s" + +#: wp-admin/includes/image-edit.php:105 +msgid "Scale Image" +msgstr "Bild skalieren" + +#: wp-admin/includes/image-edit.php:77 +msgid "Flip horizontal" +msgstr "Horizontal umdrehen" + +#: wp-admin/includes/image-edit.php:76 +msgid "Flip vertical" +msgstr "Vertikal umdrehen" + +#: wp-admin/includes/image-edit.php:28 wp-admin/includes/image-edit.php:818 +msgid "Image data does not exist. Please re-upload the image." +msgstr "Es liegen keine Bilddaten vor, bitte lade das Bild erneut hoch." + +#: wp-admin/includes/file.php:2269 +msgid "Proceed" +msgstr "Weiter" + +#: wp-admin/includes/file.php:2225 +msgid "Connection Type" +msgstr "Verbindungstyp" + +#: wp-admin/includes/file.php:2252 +msgid "Private Key:" +msgstr "Privater Schlüssel:" + +#: wp-admin/includes/file.php:2248 +msgid "Public Key:" +msgstr "Öffentlicher Schlüssel:" + +#: wp-admin/includes/file.php:2246 +msgid "Authentication Keys" +msgstr "Authentifizierungschlüssel" + +#: wp-admin/includes/file.php:2203 +msgid "Hostname" +msgstr "Hostname" + +#: wp-admin/includes/file.php:2169 +msgid "Connection Information" +msgstr "Verbindungsinformation" + +#: wp-admin/includes/file.php:2142 +msgid "SSH2" +msgstr "SSH2" + +#: wp-admin/includes/file.php:2139 +msgid "FTPS (SSL)" +msgstr "FTPS (SSL)" + +#: wp-admin/includes/file.php:2136 +msgid "FTP" +msgstr "FTP" + +#: wp-admin/includes/file.php:1649 +msgid "Empty archive." +msgstr "Leeres Archiv." + +#: wp-admin/includes/update-core.php:1236 +#: wp-admin/includes/update-core.php:1364 wp-admin/includes/file.php:1602 +#: wp-admin/includes/file.php:1720 wp-admin/includes/file.php:1759 +msgid "Could not copy file." +msgstr "Die Datei konnte nicht kopiert werden." + +#: wp-admin/includes/file.php:1598 +msgid "Could not extract file from archive." +msgstr "Die Datei konnte nicht aus dem Archiv extrahiert werden." + +#: wp-admin/includes/file.php:1513 wp-admin/includes/file.php:1580 +msgid "Could not retrieve file from archive." +msgstr "Die Datei konnte nicht im ZIP-Archiv gefunden werden." + +#: wp-admin/includes/file.php:1046 +msgid "Could not create Temporary file." +msgstr "Es konnte keine temporäre Datei erstellt werden." + +#: wp-admin/includes/file.php:1039 +msgid "Invalid URL Provided." +msgstr "Es wurde eine fehlerhafte URL übergeben." + +#: wp-admin/includes/file.php:825 +msgid "Specified file failed upload test." +msgstr "Fehler beim Uploadtest der ausgewählten Datei." + +#: wp-admin/includes/file.php:815 +msgid "Invalid form submission." +msgstr "Fehlerhafte Formulareingabe." + +#: wp-admin/includes/file.php:801 +msgid "File upload stopped by extension." +msgstr "Der Datei-Upload wurde von einer Erweiterung gestoppt." + +#: wp-admin/includes/file.php:800 +msgid "Failed to write file to disk." +msgstr "Konnte die Datei nicht auf die Festplatte kopieren." + +#: wp-admin/includes/file.php:799 +msgid "Missing a temporary folder." +msgstr "Es fehlt ein temporärer Ordner." + +#: wp-admin/includes/file.php:797 +msgid "No file was uploaded." +msgstr "Keine Datei hochgeladen." + +#: wp-admin/includes/file.php:796 +msgid "The uploaded file was only partially uploaded." +msgstr "Die hochgeladene Datei ist nur zum Teil angekommen." + +#: wp-admin/includes/file.php:405 wp-admin/includes/file.php:465 +#: wp-admin/includes/file.php:705 wp-admin/includes/file.php:711 +msgid "Sorry, that file cannot be edited." +msgstr "Diese Datei kann leider nicht bearbeitet werden." + +#: wp-admin/includes/file.php:63 +msgid "Popup Comments Template" +msgstr "Popup-Kommentar-Template" + +#: wp-admin/includes/file.php:62 +msgid "Comments Template" +msgstr "Kommentar-Template" + +#: wp-admin/includes/file.php:59 +msgid ".htaccess (for rewrite rules )" +msgstr ".htaccess (für Rewrite-Regeln)" + +#: wp-admin/includes/file.php:58 +msgid "my-hacks.php (legacy hacks support)" +msgstr "my-hacks.php (Legacy Hacks Support)" + +#: wp-admin/includes/file.php:45 +msgid "Application Attachment Template" +msgstr "Anhang-Template (Anwendung)" + +#: wp-admin/includes/file.php:44 +msgid "Audio Attachment Template" +msgstr "Anhang-Template (Audios)" + +#: wp-admin/includes/file.php:43 +msgid "Video Attachment Template" +msgstr "Anhang-Template (Videos)" + +#: wp-admin/includes/file.php:42 +msgid "Image Attachment Template" +msgstr "Anhang-Template (Bilder)" + +#: wp-admin/includes/file.php:41 +msgid "Attachment Template" +msgstr "Anhang-Template" + +#: wp-admin/includes/file.php:16 +msgid "Theme Functions" +msgstr "Theme-Funktionen" + +#: wp-admin/includes/file.php:23 +msgid "Links Template" +msgstr "Links-Template" + +#: wp-admin/includes/file.php:22 +msgid "404 Template" +msgstr "404-Template" + +#: wp-admin/includes/file.php:36 +msgid "Single Post" +msgstr "Einzelner Beitrag" + +#: wp-admin/includes/file.php:21 +msgid "Search Form" +msgstr "Suchformular" + +#: wp-admin/erase-personal-data.php:77 wp-admin/export-personal-data.php:77 +msgid "Search Requests" +msgstr "Anfragen durchsuchen" + +#: wp-admin/includes/file.php:29 +msgid "Category Template" +msgstr "Kategorie-Template" + +#: wp-admin/includes/file.php:64 +msgid "Popup Comments" +msgstr "Popup-Kommentare" + +#: wp-admin/includes/file.php:56 +msgid "RTL Stylesheet" +msgstr "Stylesheet für linksläufige Sprachen" + +#: wp-admin/includes/file.php:25 +msgid "Main Index Template" +msgstr "Hauptindex-Template" + +#: wp-admin/includes/dashboard.php:1097 wp-admin/includes/dashboard.php:1276 +msgid "This widget requires JavaScript." +msgstr "Dieses Widget benötigt JavaScript." + +#. translators: 1: Type of comment, 2: Notification if the comment is pending. +#: wp-admin/includes/dashboard.php:850 +msgctxt "dashboard" +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#: wp-admin/includes/dashboard.php:808 wp-admin/includes/dashboard.php:815 +#: wp-admin/includes/dashboard.php:845 wp-admin/includes/dashboard.php:852 +msgid "[Pending]" +msgstr "[Ausstehend]" + +#. translators: 1: Comment author, 2: Post link, 3: Notification if the comment +#. is pending. +#: wp-admin/includes/dashboard.php:805 +msgid "From %1$s on %2$s %3$s" +msgstr "Von %1$s zu %2$s %3$s" + +#: wp-admin/includes/class-wp-media-list-table.php:704 +#: wp-admin/includes/class-wp-media-list-table.php:760 +#: wp-admin/includes/class-wp-comments-list-table.php:760 +#: wp-admin/includes/class-wp-posts-list-table.php:1376 +#: wp-admin/includes/dashboard.php:734 +msgctxt "verb" +msgid "Trash" +msgstr "Papierkorb" + +#: wp-admin/includes/class-wp-comments-list-table.php:759 +#: wp-admin/includes/dashboard.php:733 +msgid "Move this comment to the Trash" +msgstr "Diesen Kommentar in den Papierkorb legen" + +#. translators: "Mark as spam" link. +#: wp-admin/includes/class-wp-comments-list-table.php:724 +#: wp-admin/includes/dashboard.php:717 +msgctxt "verb" +msgid "Spam" +msgstr "Spam" + +#: wp-admin/includes/class-wp-comments-list-table.php:722 +#: wp-admin/includes/dashboard.php:715 +msgid "Mark this comment as spam" +msgstr "Diesen Kommentar als Spam markieren" + +#: wp-admin/includes/class-wp-comments-list-table.php:790 +#: wp-admin/includes/dashboard.php:707 +msgid "Reply to this comment" +msgstr "Auf diesen Kommentar antworten" + +#: wp-admin/includes/class-wp-comments-list-table.php:687 +#: wp-admin/includes/class-wp-comments-list-table.php:712 +#: wp-admin/includes/dashboard.php:692 +msgid "Unapprove this comment" +msgstr "Kommentar zurückweisen" + +#: wp-admin/includes/class-wp-comments-list-table.php:695 +#: wp-admin/includes/class-wp-comments-list-table.php:704 +#: wp-admin/includes/dashboard.php:684 +msgid "Approve this comment" +msgstr "Diesen Kommentar freigeben" + +#: wp-admin/edit-form-comment.php:105 +msgid "Pending" +msgstr "Offen" + +#: wp-admin/includes/nav-menu.php:465 wp-admin/includes/nav-menu.php:752 +msgid "Page" +msgstr "Seite" + +#: wp-admin/includes/dashboard.php:191 +msgid "Configure" +msgstr "Konfigurieren" + +#: wp-admin/includes/dashboard.php:136 +msgid "View all" +msgstr "Alle ansehen" + +#: wp-admin/includes/dashboard.php:1485 +msgid "Other WordPress News" +msgstr "Weitere WordPress-News" + +#: wp-admin/includes/dashboard.php:65 +msgid "Right Now" +msgstr "Auf einen Blick" + +#. translators: %s: Destination file path. +#: wp-admin/includes/file.php:915 +msgid "The uploaded file could not be moved to %s." +msgstr "Die hochgeladene Datei konnte nicht nach %s verschoben werden." + +#: wp-admin/includes/class-file-upload-upgrader.php:56 +#: wp-admin/includes/class-file-upload-upgrader.php:95 +#: wp-admin/includes/class-file-upload-upgrader.php:111 +msgid "Please select a file" +msgstr "Wähle bitte eine Datei" + +#: wp-admin/includes/class-theme-installer-skin.php:164 +#: wp-admin/includes/class-theme-upgrader-skin.php:127 +#: wp-admin/includes/class-bulk-theme-upgrader-skin.php:51 +msgid "Return to Themes page" +msgstr "Zurück zur Theme-Seite" + +#: wp-admin/includes/class-theme-installer-skin.php:158 +msgid "Return to Theme Installer" +msgstr "Zurück zur Theme-Installation" + +#. translators: %s: Theme name. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-theme-install-list-table.php:273 +#: wp-admin/includes/class-wp-posts-list-table.php:1398 +msgid "Preview “%s”" +msgstr "„%s“ ansehen" + +#. translators: 1: Theme name, 2: Theme version. +#: wp-admin/includes/class-theme-upgrader.php:84 +msgid "Successfully installed the theme %1$s %2$s." +msgstr "Das Theme %1$s %2$s wurde erfolgreich installiert." + +#: wp-admin/includes/class-plugin-installer-skin.php:139 +#: wp-admin/includes/class-plugin-installer-skin.php:145 +msgid "Return to Plugin Installer" +msgstr "Zurück zur Plugin-Installation" + +#. translators: 1: Plugin name, 2: Plugin version. +#: wp-admin/includes/class-plugin-upgrader.php:86 +msgid "Successfully installed the plugin %1$s %2$s." +msgstr "Das Plugin %1$s %2$s wurde erfolgreich installiert." + +#: wp-admin/includes/class-plugin-installer-skin.php:151 +#: wp-admin/includes/class-bulk-plugin-upgrader-skin.php:51 +#: wp-admin/includes/class-plugin-upgrader-skin.php:101 +msgid "Return to Plugins page" +msgstr "Zurück zur Plugin-Seite" + +#: wp-admin/includes/class-plugin-installer-skin.php:116 +#: wp-admin/includes/class-plugin-upgrader-skin.php:96 +msgid "Activate Plugin" +msgstr "Plugin aktivieren" + +#: wp-admin/includes/class-core-upgrader.php:35 +msgid "Could not copy files." +msgstr "Dateien konnte nicht kopiert werden." + +#: wp-admin/includes/class-core-upgrader.php:29 +msgid "WordPress is at the latest version." +msgstr "WordPress ist auf dem neuesten Stand." + +#: wp-admin/includes/class-theme-upgrader.php:82 +msgid "Theme installed successfully." +msgstr "Das Theme wurde erfolgreich installiert." + +#: wp-admin/includes/class-theme-upgrader.php:77 +msgid "Installing the theme…" +msgstr "Das Theme wird installiert …" + +#: wp-admin/includes/class-theme-upgrader.php:62 +#: wp-admin/includes/class-theme-upgrader.php:79 +msgid "Could not remove the old theme." +msgstr "Altes Theme konnte nicht entfernt werden." + +#: wp-admin/includes/class-theme-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:78 +msgid "Removing the old version of the theme…" +msgstr "Entfernung der alten Version des Themes …" + +#: wp-admin/includes/class-theme-upgrader.php:56 +msgid "The theme is at the latest version." +msgstr "Das Theme ist auf dem neuesten Stand." + +#: wp-admin/includes/class-plugin-upgrader.php:84 +msgid "Plugin installed successfully." +msgstr "Das Plugin wurde erfolgreich installiert." + +#: wp-admin/includes/class-plugin-upgrader.php:79 +msgid "Installing the plugin…" +msgstr "Das Plugin wird installiert …" + +#: wp-admin/includes/class-plugin-upgrader.php:78 +#: wp-admin/includes/class-theme-upgrader.php:76 +msgid "Unpacking the package…" +msgstr "Entpacken des Pakets …" + +#: wp-admin/includes/class-plugin-upgrader.php:75 +#: wp-admin/includes/class-theme-upgrader.php:73 +msgid "Installation package not available." +msgstr "Installationspaket nicht verfügbar." + +#: wp-admin/includes/class-plugin-upgrader.php:63 +msgid "Could not remove the old plugin." +msgstr "Altes Plugin konnte nicht entfernt werden." + +#: wp-admin/includes/class-plugin-upgrader.php:62 +msgid "Removing the old version of the plugin…" +msgstr "Entfernung der alten Version des Plugins …" + +#: wp-admin/includes/class-plugin-upgrader.php:61 +#: wp-admin/includes/class-theme-upgrader.php:60 +#: wp-admin/includes/class-core-upgrader.php:34 +#: wp-admin/includes/class-language-pack-upgrader.php:118 +msgid "Unpacking the update…" +msgstr "Entpacken der aktualisierten Version …" + +#: wp-admin/includes/class-plugin-upgrader.php:57 +msgid "The plugin is at the latest version." +msgstr "Das Plugin ist auf dem neuesten Stand." + +#: wp-admin/includes/update-core.php:1191 +#: wp-admin/includes/class-wp-upgrader.php:168 +msgid "Disabling Maintenance mode…" +msgstr "Abschalten des Wartungsmodus …" + +#: wp-admin/includes/update-core.php:1094 +#: wp-admin/includes/class-wp-upgrader.php:167 +msgid "Enabling Maintenance mode…" +msgstr "Anschalten des Wartungsmodus …" + +#: wp-admin/includes/file.php:1505 wp-admin/includes/file.php:1645 +msgid "Incompatible Archive." +msgstr "Inkompatibles Archiv." + +#: wp-admin/includes/update-core.php:1375 +#: wp-admin/includes/class-wp-upgrader.php:163 wp-admin/includes/file.php:1572 +#: wp-admin/includes/file.php:1699 wp-admin/includes/file.php:1767 +msgid "Could not create directory." +msgstr "Verzeichnis konnte nicht angelegt werden." + +#: wp-admin/includes/class-wp-upgrader.php:162 +msgid "Destination folder already exists." +msgstr "Der Zielordner existiert bereits." + +#: wp-admin/includes/class-wp-upgrader.php:160 +msgid "Installing the latest version…" +msgstr "Die aktuelle Version wird installiert …" + +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:62 +#: wp-admin/includes/class-wp-upgrader.php:159 +msgid "Download failed." +msgstr "Download fehlgeschlagen." + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-upgrader.php:157 +msgid "Unable to locate needed folder (%s)." +msgstr "Der benötigte Ordner (%s) kann nicht gefunden werden." + +#: wp-admin/includes/class-wp-upgrader.php:154 wp-admin/includes/plugin.php:953 +msgid "Unable to locate WordPress plugin directory." +msgstr "Das Plugin-Verzeichnis von WordPress kann nicht gefunden werden." + +#: wp-admin/includes/class-wp-upgrader.php:153 +msgid "Unable to locate WordPress content directory (wp-content)." +msgstr "Das Inhalts-Verzeichnis von WordPress (wp-content) kann nicht gefunden werden." + +#: wp-admin/includes/class-wp-upgrader.php:152 +msgid "Unable to locate WordPress root directory." +msgstr "Das Stamm-Verzeichnis von WordPress kann nicht gefunden werden." + +#: wp-admin/includes/theme.php:66 wp-admin/includes/class-wp-upgrader.php:151 +#: wp-admin/includes/plugin.php:947 +msgid "Filesystem error." +msgstr "Dateisystem-Fehler." + +#: wp-admin/includes/theme.php:62 +#: wp-admin/includes/class-wp-automatic-updater.php:386 +#: wp-admin/includes/class-wp-upgrader.php:150 wp-admin/includes/file.php:1428 +#: wp-admin/includes/plugin.php:943 +msgid "Could not access filesystem." +msgstr "Konnte nicht auf das Dateisystem zugreifen." + +#: wp-admin/includes/class-wp-upgrader.php:149 +msgid "Invalid data provided." +msgstr "Ungültige Daten eingegeben." + +#. translators: %s: Command. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:226 +msgid "Unable to perform command: %s" +msgstr "Konnte folgenden Befehl nicht ausführen: %s" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ssh2.php:158 +msgid "Public and Private keys incorrect for %s" +msgstr "Die öffentlichen und privaten Schlüssel für %s sind nicht korrekt" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ssh2.php:131 +msgid "Failed to connect to SSH2 Server %s" +msgstr "Kann nicht mit SSH2-Server %s verbinden" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:105 +msgid "SSH2 password is required" +msgstr "SSH2-Passwort (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:95 +msgid "SSH2 username is required" +msgstr "SSH2-Benutzername (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:81 +msgid "SSH2 hostname is required" +msgstr "SSH2-Hostname (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ssh2.php:69 +msgid "The ssh2 PHP extension is not available" +msgstr "Die SSH2-PHP-Erweiterung ist nicht verfügbar" + +#. translators: %s: Username. +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:113 +#: wp-admin/includes/class-wp-filesystem-ftpext.php:110 +#: wp-admin/includes/class-wp-filesystem-ssh2.php:145 +msgid "Username/Password incorrect for %s" +msgstr "Benutzername/Passwort für %s ist nicht korrekt" + +#. translators: %s: hostname:port +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:87 +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:100 +#: wp-admin/includes/class-wp-filesystem-ftpext.php:97 +msgid "Failed to connect to FTP Server %s" +msgstr "Kann nicht mit FTP-Server %s verbinden" + +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:62 +#: wp-admin/includes/class-wp-filesystem-ftpext.php:66 +msgid "FTP password is required" +msgstr "FTP-Passwort (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:56 +#: wp-admin/includes/class-wp-filesystem-ftpext.php:60 +msgid "FTP username is required" +msgstr "FTP-Benutzername (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ftpsockets.php:49 +#: wp-admin/includes/class-wp-filesystem-ftpext.php:53 +msgid "FTP hostname is required" +msgstr "FTP-Hostname (erforderlich)" + +#: wp-admin/includes/class-wp-filesystem-ftpext.php:37 +msgid "The ftp PHP extension is not available" +msgstr "Die FTP-PHP-Erweiterung ist nicht verfügbar" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:313 +msgid "Found %s" +msgstr "Gefunden %s" + +#. translators: %s: Directory name. +#: wp-admin/includes/class-wp-filesystem-base.php:295 +msgid "Changing to %s" +msgstr "Geändert zu %s" + +#: wp-admin/includes/bookmark.php:216 +msgid "Could not insert link into the database." +msgstr "Der Link konnte nicht in die Datenbank eingefügt werden." + +#: wp-admin/includes/bookmark.php:208 +msgid "Could not update link in the database." +msgstr "Der Link konnte nicht in der Datenbank aktualisiert werden." + +#: wp-admin/includes/import.php:208 +msgid "Movable Type and TypePad" +msgstr "Movable Type und TypePad" + +#: wp-admin/includes/import.php:202 +msgid "LiveJournal" +msgstr "LiveJournal" + +#: wp-admin/includes/class-wp-plugin-install-list-table.php:278 +#: wp-admin/includes/class-wp-theme-install-list-table.php:151 +#: wp-admin/theme-install.php:65 wp-admin/setup-config.php:280 +msgid "Try Again" +msgstr "Erneut versuchen" + +#: wp-admin/includes/import.php:190 +msgid "Blogger" +msgstr "Blogger" + +#: wp-admin/import.php:96 +msgid "No importers are available." +msgstr "Es sind keine Importer verfügbar." + +#: wp-admin/export.php:320 +msgid "Download Export File" +msgstr "Export-Datei herunterladen" + +#: wp-admin/export.php:172 +msgid "This format, which we call WordPress eXtended RSS or WXR, will contain your posts, pages, comments, custom fields, categories, and tags." +msgstr "Dieses Format, das wir „WordPress eXtended RSS“ oder WXR nennen, beinhaltet deine Beiträge, Seiten, Kommentare, individuellen Felder, Kategorien und Schlagwörter." + +#: wp-admin/export.php:171 +msgid "When you click the button below WordPress will create an XML file for you to save to your computer." +msgstr "Wenn du unten auf Export-Datei herunterladen klickst, wird WordPress eine XML-Datei für dich erstellen, die du auf deinem Computer speichern kannst." + +#: wp-admin/export.php:18 wp-admin/menu.php:281 +msgid "Export" +msgstr "Daten exportieren" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:330 +msgctxt "posts" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%s)" + +#. translators: %s: Number of posts. +#: wp-admin/includes/class-wp-posts-list-table.php:309 +msgctxt "posts" +msgid "Mine (%s)" +msgid_plural "Mine (%s)" +msgstr[0] "Meine (%s)" +msgstr[1] "Meine (%s)" + +#. translators: %s: Number of blocks. +#: wp-admin/edit.php:363 +msgid "%s block not updated, somebody is editing it." +msgid_plural "%s blocks not updated, somebody is editing them." +msgstr[0] "%s Block wurde nicht aktualisiert, jemand bearbeitet ihn gerade." +msgstr[1] "%s Blöcke wurden nicht aktualisiert, jemand bearbeitet sie gerade." + +#. translators: %s: Number of posts. +#: wp-admin/edit.php:334 +msgid "%s post updated." +msgid_plural "%s posts updated." +msgstr[0] "%s Beitrag aktualisiert." +msgstr[1] "%s Beiträge aktualisiert." + +#: wp-admin/edit-tags.php:117 wp-admin/post.php:309 wp-admin/themes.php:63 +#: wp-admin/upload.php:191 wp-admin/edit.php:156 +msgid "Sorry, you are not allowed to delete this item." +msgstr "Du bist leider nicht berechtigt, dieses Element zu löschen." + +#: wp-admin/includes/edit-tag-messages.php:19 +msgid "Items deleted." +msgstr "Elemente gelöscht." + +#: wp-admin/includes/edit-tag-messages.php:17 +msgid "Item not added." +msgstr "Element wurde nicht hinzugefügt." + +#: wp-admin/includes/edit-tag-messages.php:16 +msgid "Item updated." +msgstr "Elemente wurden aktualisiert." + +#: wp-admin/includes/edit-tag-messages.php:15 +msgid "Item deleted." +msgstr "Element wurde gelöscht." + +#: wp-admin/edit-tags.php:491 wp-admin/edit-tag-form.php:181 +msgid "Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional." +msgstr "Kategorien können, im Gegensatz zu Schlagwörtern, hierarchisch angeordnet werden. Du kannst z. B. eine Kategorie Musik anlegen, welche die Unterkategorien Schlager und Jazz enthält." + +#: wp-admin/edit-tags.php:442 wp-admin/edit-tag-form.php:134 +msgid "The name is how it appears on your site." +msgstr "Dieser Name wird dann auf der Website angezeigt." + +#: wp-admin/edit-link-form.php:133 +msgid "This will be shown when someone hovers over the link in the blogroll, or optionally below the link." +msgstr "Wird bei Mauszeigerkontakt eines Links in der Blogroll angezeigt, oder wahlweise unter dem Link." + +#: wp-admin/edit-link-form.php:125 +msgid "Example: https://wordpress.org/ — don’t forget the https://" +msgstr "Beispiel: https://wordpress.org/ – das https:// nicht vergessen" + +#: wp-admin/edit-link-form.php:122 +msgid "Web Address" +msgstr "Web-Adresse" + +#: wp-admin/edit-link-form.php:117 +msgid "Example: Nifty blogging software" +msgstr "Beispiel: Meine schönsten Katzenfotos" + +#: wp-admin/edit-link-form.php:95 +msgid "Link added." +msgstr "Link wurde hinzugefügt." + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:22 +msgid "Links / Add New Link" +msgstr "Links / Neuen Link hinzufügen" + +#: wp-admin/includes/meta-boxes.php:1087 wp-admin/edit-link-form.php:17 +msgid "Update Link" +msgstr "Link aktualisieren" + +#. translators: %s: URL to Links screen. +#: wp-admin/edit-link-form.php:16 +msgid "Links / Edit Link" +msgstr "Links / Links bearbeiten" + +#: wp-admin/edit-tags.php:500 wp-admin/edit-tag-form.php:191 +msgid "The description is not prominent by default; however, some themes may show it." +msgstr "Die Beschreibung wird nicht immer angezeigt. Bei dem ein oder anderen Theme mag sie angezeigt werden." + +#: wp-admin/edit-tags.php:448 wp-admin/edit-tag-form.php:156 +msgid "The “slug” is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens." +msgstr "Die „Titelform“ ist die lesbare URL-Variante des Namens. Sie besteht normalerweise nur aus Kleinbuchstaben, Zahlen und Bindestrichen." + +#: wp-admin/themes.php:267 wp-admin/themes.php:271 +msgid "Visit site" +msgstr "Website ansehen" + +#: wp-admin/includes/template.php:495 +msgid "Update Comment" +msgstr "Kommentar aktualisieren" + +#. translators: 1: Date of last edit, 2: Time of last edit. +#. translators: 1: Post edited date, 2: Post edited time. +#: wp-admin/includes/ajax-actions.php:2816 wp-admin/edit-form-advanced.php:628 +msgid "Last edited on %1$s at %2$s" +msgstr "Zuletzt geändert am %1$s um %2$s Uhr" + +#. translators: 1: User's display name, 2: Date of last edit, 3: Time of last +#. edit. +#. translators: 1: Name of most recent post author, 2: Post edited date, 3: +#. Post edited time. +#: wp-admin/includes/ajax-actions.php:2813 wp-admin/edit-form-advanced.php:625 +msgid "Last edited by %1$s on %2$s at %3$s" +msgstr "Zuletzt geändert von %1$s am %2$s um %3$s Uhr" + +#: wp-admin/includes/meta-boxes.php:1520 +msgid "Custom Fields" +msgstr "Individuelle Felder" + +#: wp-admin/includes/meta-boxes.php:1514 +msgid "Send Trackbacks" +msgstr "Trackbacks senden" + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:200 +msgid "Page restored to revision from %s." +msgstr "Seite aus Revision vom %s wiederhergestellt." + +#: wp-admin/edit-form-advanced.php:187 +msgid "Post saved." +msgstr "Beitrag gespeichert." + +#. translators: %s: Date and time of the revision. +#: wp-admin/edit-form-advanced.php:185 +msgid "Post restored to revision from %s." +msgstr "Beitrag aus Revision vom %s wiederhergestellt." + +#: wp-admin/edit-form-advanced.php:182 wp-admin/edit-form-advanced.php:197 +msgid "Custom field deleted." +msgstr "Individuelles Feld gelöscht." + +#: wp-admin/edit-form-advanced.php:181 wp-admin/edit-form-advanced.php:196 +msgid "Custom field updated." +msgstr "Individuelles Feld aktualisiert." + +#: wp-admin/includes/class-wp-comments-list-table.php:223 +msgid "No comments found." +msgstr "Es wurden keine Kommentare gefunden." + +#: wp-admin/includes/class-wp-media-list-table.php:210 +#: wp-admin/includes/class-wp-comments-list-table.php:415 +#: wp-admin/includes/class-wp-posts-list-table.php:570 +msgid "Empty Trash" +msgstr "Papierkorb leeren" + +#: wp-admin/includes/class-wp-comments-list-table.php:415 +msgid "Empty Spam" +msgstr "Spam leeren" + +#: wp-admin/includes/class-wp-links-list-table.php:119 +#: wp-admin/includes/class-wp-media-list-table.php:207 +#: wp-admin/includes/class-wp-comments-list-table.php:409 +#: wp-admin/includes/class-wp-posts-list-table.php:565 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:338 +msgid "Filter" +msgstr "Auswahl einschränken" + +#: wp-admin/includes/class-wp-comments-list-table.php:486 +#: wp-admin/includes/class-wp-posts-list-table.php:1770 +msgid "Pings" +msgstr "Pings" + +#: wp-admin/includes/class-wp-comments-list-table.php:359 +#: wp-admin/includes/class-wp-comments-list-table.php:696 +#: wp-admin/includes/class-wp-comments-list-table.php:705 +#: wp-admin/includes/dashboard.php:685 +msgid "Approve" +msgstr "Freigeben" + +#: wp-admin/includes/class-wp-comments-list-table.php:356 +#: wp-admin/includes/class-wp-comments-list-table.php:688 +#: wp-admin/includes/class-wp-comments-list-table.php:713 +#: wp-admin/includes/dashboard.php:693 +msgid "Unapprove" +msgstr "Zurückweisen" + +#: wp-admin/includes/class-wp-list-table.php:470 wp-admin/edit.php:267 +msgid "Bulk actions" +msgstr "Mehrfachaktionen" + +#. translators: 1: Starting number of users on the current page, 2: Ending +#. number of users, 3: Total number of users. +#: wp-admin/includes/deprecated.php:605 +msgid "Displaying %1$s–%2$s of %3$s" +msgstr "%1$s–%2$s von %3$s anzeigen" + +#: wp-admin/edit-comments.php:329 +msgid "Search Comments" +msgstr "Kommentare durchsuchen" + +#: wp-admin/edit-form-comment.php:102 +msgid "Approved" +msgstr "Freigegeben" + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:300 +msgid "%s comment permanently deleted." +msgid_plural "%s comments permanently deleted." +msgstr[0] "%s Kommentar wurde endgültig gelöscht." +msgstr[1] "%s Kommentare wurden endgültig gelöscht." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:284 +msgid "%s comment restored from the spam." +msgid_plural "%s comments restored from the spam." +msgstr[0] "%s Kommentar aus dem Spam geholt." +msgstr[1] "%s Kommentare aus dem Spam geholt." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:279 +msgid "%s comment marked as spam." +msgid_plural "%s comments marked as spam." +msgstr[0] "%s Kommentar als Spam markiert." +msgstr[1] "%s Kommentare als Spam markiert." + +#. translators: %s: Number of comments. +#: wp-admin/edit-comments.php:273 +msgid "%s comment approved." +msgid_plural "%s comments approved." +msgstr[0] "%s Kommentar freigegeben." +msgstr[1] "%s Kommentare freigegeben." + +#: wp-admin/includes/class-wp-media-list-table.php:184 +#: wp-admin/includes/class-wp-media-list-table.php:555 +#: wp-admin/includes/class-wp-media-list-table.php:732 +msgid "Attach" +msgstr "Verknüpfen" + +#: wp-admin/includes/class-wp-media-list-table.php:545 +msgid "(Unattached)" +msgstr "(Nicht verknüpft)" + +#: wp-admin/includes/class-wp-media-list-table.php:478 +#: wp-admin/includes/class-wp-posts-list-table.php:1078 +msgid "Unpublished" +msgstr "Nicht veröffentlicht" + +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-media-list-table.php:722 +#: wp-admin/includes/class-wp-media-list-table.php:780 +#: wp-admin/includes/class-wp-posts-list-table.php:1407 +msgid "View “%s”" +msgstr "„%s“ ansehen" + +#: wp-admin/includes/media.php:1700 +#: wp-admin/includes/class-wp-media-list-table.php:714 +#: wp-admin/includes/class-wp-media-list-table.php:771 +#: wp-admin/includes/class-wp-comments-list-table.php:752 +#: wp-admin/includes/class-wp-posts-list-table.php:1385 +#: wp-admin/includes/dashboard.php:726 wp-admin/edit-form-comment.php:205 +msgid "Delete Permanently" +msgstr "Endgültig löschen" + +#. translators: %s: Link name. +#. translators: %s: Taxonomy term name. +#. translators: %s: Attachment title. +#. translators: %s: Post title. +#: wp-admin/includes/class-wp-links-list-table.php:195 +#: wp-admin/includes/class-wp-terms-list-table.php:477 +#: wp-admin/includes/class-wp-media-list-table.php:693 +#: wp-admin/includes/class-wp-media-list-table.php:741 +#: wp-admin/includes/class-wp-posts-list-table.php:1347 +#: wp-admin/includes/dashboard.php:620 wp-admin/includes/dashboard.php:985 +msgid "Edit “%s”" +msgstr "„%s“ bearbeiten" + +#: wp-admin/includes/class-custom-image-header.php:856 +msgid "Choose the part of the image you want to use as your header." +msgstr "Wähle den Teil des Bildes, den du in deinem Header verwenden möchtest." + +#: wp-admin/includes/class-custom-image-header.php:838 +#: wp-admin/includes/class-custom-image-header.php:981 +msgid "Image Processing Error" +msgstr "Bildbearbeitungs-Fehler" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-image-header.php:496 +msgid "Header updated. Visit your site to see how it looks." +msgstr "Header aktualisiert. Sieh dir das Ergebnis an." + +#: wp-admin/includes/theme.php:308 +#: wp-admin/includes/class-custom-image-header.php:475 +msgid "Custom Header" +msgstr "Individueller Header" + +#: wp-admin/includes/template.php:2443 wp-admin/nav-menus.php:808 +#: wp-admin/options.php:402 +msgid "Save Changes" +msgstr "Änderungen speichern" + +#: wp-admin/includes/class-custom-background.php:329 +#: wp-admin/includes/class-custom-image-header.php:609 +msgid "Choose an image from your computer:" +msgstr "Wähle ein Bild von deinem Computer:" + +#. translators: %s: Home URL. +#: wp-admin/includes/class-custom-background.php:247 +msgid "Background updated. Visit your site to see how it looks." +msgstr "Das Hintergrundbild wurde aktualisiert. Besuche deine Website, um zu sehen, wie es aussieht." + +#: wp-admin/includes/class-custom-background.php:226 +#: wp-admin/includes/theme.php:306 +msgid "Custom Background" +msgstr "Hintergrund anpassen" + +#: wp-admin/comment.php:367 +msgid "Unknown action." +msgstr "Unbekannte Aktion." + +#: wp-admin/comment.php:144 +msgid "Approve comment" +msgstr "Kommentar freigeben" + +#: wp-admin/comment.php:143 +msgid "You are about to approve the following comment:" +msgstr "Du bist dabei, den folgenden Kommentar freizugeben:" + +#: wp-admin/comment.php:140 +msgid "Permanently delete comment" +msgstr "Kommentar endgültig löschen" + +#: wp-admin/comment.php:139 +msgid "You are about to delete the following comment:" +msgstr "Du bist dabei, den folgenden Kommentar zu löschen:" + +#: wp-admin/comment.php:135 +msgid "You are about to move the following comment to the Trash:" +msgstr "Du bist dabei, den folgenden Kommentar in den Papierkorb zu legen." + +#: wp-admin/comment.php:131 +msgid "You are about to mark the following comment as spam:" +msgstr "Du bist dabei, den folgenden Kommentar als Spam zu markieren:" + +#: wp-admin/comment.php:86 +msgid "This comment is in the Trash. Please move it out of the Trash if you want to edit it." +msgstr "Dieser Kommentar befindet sich im Papierkorb. Wenn du ihn bearbeiten möchtest, musst du ihn aus dem Papierkorb wiederherstellen." + +#: wp-admin/includes/comment.php:55 wp-admin/comment.php:279 +#: wp-admin/edit-comments.php:253 +msgid "Sorry, you are not allowed to edit comments on this post." +msgstr "Du bist leider nicht berechtigt, Kommentare zu diesem Beitrag zu bearbeiten." + +#: wp-admin/includes/template.php:453 wp-admin/comment.php:56 +#: wp-admin/edit-form-comment.php:17 +msgid "Edit Comment" +msgstr "Kommentar bearbeiten" + +#: wp-admin/admin.php:329 wp-admin/import.php:18 wp-admin/menu.php:280 +msgid "Import" +msgstr "Daten importieren" + +#. translators: %s: Admin page generated by a plugin. +#: wp-admin/admin.php:269 +msgid "Cannot load %s." +msgstr "%s kann nicht geladen werden." + +#: wp-admin/admin.php:262 +msgid "Invalid plugin page." +msgstr "Ungültige Plugin-Seite." + +#: wp-admin/includes/meta-boxes.php:114 wp-admin/includes/meta-boxes.php:145 +#: wp-admin/includes/ajax-actions.php:2195 +#: wp-admin/includes/class-wp-posts-list-table.php:1100 +#: wp-admin/includes/class-wp-posts-list-table.php:1821 +msgid "Scheduled" +msgstr "Geplant" + +#: wp-admin/includes/edit-tag-messages.php:18 +#: wp-admin/includes/ajax-actions.php:2131 +#: wp-admin/includes/ajax-actions.php:2137 +msgid "Item not updated." +msgstr "Element wurde nicht aktualisiert." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2008 +msgid "Saving is disabled: %s is currently editing this post." +msgstr "Speichern nicht möglich: %s bearbeitet diesen Beitrag gerade." + +#. translators: %s: User's display name. +#: wp-admin/includes/ajax-actions.php:2012 +msgid "Saving is disabled: %s is currently editing this page." +msgstr "Speichern nicht möglich: %s bearbeitet diese Seite gerade." + +#: wp-admin/includes/ajax-actions.php:2005 +msgid "Someone" +msgstr "Jemand" + +#. translators: %s: Date and time. +#: wp-admin/includes/misc.php:1254 +msgid "Draft saved at %s." +msgstr "Entwurf wurde um %s Uhr gespeichert." + +#. translators: Draft saved date format, see https://www.php.net/date +#: wp-admin/includes/misc.php:1250 +msgid "g:i:s a" +msgstr "G:i:s" + +#: wp-admin/includes/ajax-actions.php:1581 +#: wp-admin/includes/ajax-actions.php:1589 +msgid "Please provide a custom field value." +msgstr "Bitte gib einen Wert für das individuelle Feld ein." + +#: wp-admin/includes/ajax-actions.php:1301 +msgid "Sorry, you must be logged in to reply to a comment." +msgstr "Um auf einen Kommentar zu antworten, musst du angemeldet sein." + +#: wp-admin/includes/taxonomy.php:136 +msgid "You did not enter a category name." +msgstr "Du hast keinen Kategorienamen eingegeben." + +#. translators: %d: Comment ID. +#: wp-admin/includes/ajax-actions.php:960 +msgid "Comment %d does not exist" +msgstr "Kommentar %d existiert nicht" + +#: wp-admin/includes/media.php:2783 wp-admin/includes/nav-menu.php:464 +#: wp-admin/includes/nav-menu.php:751 +msgid "»" +msgstr "»" + +#: wp-admin/includes/media.php:2782 wp-admin/includes/nav-menu.php:463 +#: wp-admin/includes/nav-menu.php:750 +msgid "«" +msgstr "«" \ No newline at end of file diff --git a/web/app/languages/admin-network-de_DE.mo b/web/app/languages/admin-network-de_DE.mo new file mode 100644 index 0000000..19126ec Binary files /dev/null and b/web/app/languages/admin-network-de_DE.mo differ diff --git a/web/app/languages/admin-network-de_DE.po b/web/app/languages/admin-network-de_DE.po new file mode 100644 index 0000000..6082f3d --- /dev/null +++ b/web/app/languages/admin-network-de_DE.po @@ -0,0 +1,1458 @@ +# Translation of WordPress - 5.5.x - Development - Administration - Network Admin in German +# This file is distributed under the same license as the WordPress - 5.5.x - Development - Administration - Network Admin package. +msgid "" +msgstr "" +"PO-Revision-Date: 2020-08-11 04:42:40+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/3.0.0-alpha.2\n" +"Language: de\n" +"Project-Id-Version: WordPress - 5.5.x - Development - Administration - Network Admin\n" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:293 +msgctxt "site" +msgid "Not spam" +msgstr "Kein Spam" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:405 +msgid "%s theme will no longer be auto-updated." +msgid_plural "%s themes will no longer be auto-updated." +msgstr[0] "%s Theme wird nicht mehr automatisch aktualisiert." +msgstr[1] "%s Themes werden nicht mehr automatisch aktualisiert." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:396 +msgid "%s theme will be auto-updated." +msgid_plural "%s themes will be auto-updated." +msgstr[0] "%s Theme wird automatisch aktualisiert." +msgstr[1] "%s Themes werden automatisch aktualisiert." + +#: wp-admin/network/themes.php:225 +msgid "Sorry, you are not allowed to change themes automatic update settings." +msgstr "Du bist leider nicht berechtigt, die Einstellungen für die automatische Aktualisierung der Themes zu ändern." + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:321 +msgid "No themes are currently available." +msgstr "Momentan sind keine Themes verfügbar." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:475 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:496 +#: wp-admin/includes/class-wp-ms-users-list-table.php:336 +msgid "Y/m/d g:i:s a" +msgstr "d.m.Y G:i:s" + +#: wp-admin/includes/network.php:629 +msgid "https://wordpress.org/support/article/nginx/" +msgstr "https://wordpress.org/support/article/nginx/" + +#. translators: %s: Documentation URL. +#: wp-admin/includes/network.php:628 +msgid "It seems your network is running with Nginx web server. Learn more about further configuration." +msgstr "Es sieht so aus, als würde dein Netzwerk mit einem Nginx-Webserver laufen. Erfahre hier mehr über die weitere Konfiguration (engl.)." + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:254 +msgid "Deleted (%s)" +msgid_plural "Deleted (%s)" +msgstr[0] "Gelöscht (%s)" +msgstr[1] "Gelöscht (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:247 +msgctxt "sites" +msgid "Spam (%s)" +msgid_plural "Spam (%s)" +msgstr[0] "Spam (%s)" +msgstr[1] "Spam (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:241 +msgid "Mature (%s)" +msgid_plural "Mature (%s)" +msgstr[0] "Erwachseneninhalt (%s)" +msgstr[1] "Erwachseneninhalt (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:235 +msgid "Archived (%s)" +msgid_plural "Archived (%s)" +msgstr[0] "Archiviert (%s)" +msgstr[1] "Archivierte (%s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:229 +msgid "Public (%s)" +msgid_plural "Public (%s)" +msgstr[0] "Öffentlich (%s)" +msgstr[1] "Öffentliche (%1$s)" + +#. translators: %s: Number of sites. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:222 +msgctxt "sites" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Insgesamt (%s)" +msgstr[1] "Insgesamt (%s)" + +#: wp-admin/network/upgrade.php:31 +msgid "Documentation on Upgrade Network" +msgstr "Dokumentation über Upgraden des Netzwerks (engl.)" + +#: wp-admin/network/index.php:55 +msgid "Documentation on the Network Admin" +msgstr "Dokumentation zur Netzwerkverwaltung (engl.)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:406 +msgctxt "themes" +msgid "Update Available (%s)" +msgid_plural "Update Available (%s)" +msgstr[0] "Update verfügbar (%s)" +msgstr[1] "Updates verfügbar (%s)" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:614 +msgid "Main" +msgstr "Hauptseite" + +#: wp-admin/network.php:67 wp-admin/network.php:80 +msgid "Documentation on the Network Screen" +msgstr "Dokumentation über den Netzwerk-Bildschirm (engl.)" + +#: wp-admin/network.php:66 wp-admin/network.php:79 +msgid "Documentation on Creating a Network" +msgstr "Dokumentation zum Aufbau eines Netzwerks (engl.)" + +#. translators: %s: DO_NOT_UPGRADE_GLOBAL_TABLES +#: wp-admin/includes/network.php:118 +msgid "The constant %s cannot be defined when creating a network." +msgstr "Die Konstante %s kann nicht beim Erstellen eines Netzwerks definiert sein." + +#: wp-admin/network/sites.php:195 +msgid "You are about to delete the following sites:" +msgstr "Du bist dabei, die folgenden Websites zu löschen:" + +#: wp-admin/network/site-users.php:248 +msgid "User could not be added to this site." +msgstr "Benutzer konnte dieser Website nicht hinzugefügt werden." + +#: wp-admin/network/site-new.php:287 +msgid "The username and a link to set the password will be mailed to this email address." +msgstr "Der Benutzername und ein Link zum Festlegen des Passworts werden an diese E-Mail-Adresse gesendet." + +#. translators: %s: New network admin email. +#: wp-admin/network/settings.php:175 +msgid "There is a pending change of the network admin email to %s." +msgstr "Es gibt eine ausstehende Änderung der E-Mail-Adresse des Netzwerkadministrators auf %s." + +#: wp-admin/includes/network.php:332 +msgid "Sub-domain Installation" +msgstr "Subdomain-Installation" + +#: wp-admin/includes/network.php:301 wp-admin/includes/network.php:319 +msgid "Sub-directory Installation" +msgstr "Unterverzeichnis-Installation" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:909 +msgid "Active Child Theme" +msgstr "Aktives Child-Theme" + +#: wp-admin/network/site-info.php:193 +msgid "Attributes" +msgstr "Attribute" + +#. translators: %s: File size in kilobytes. +#: wp-admin/network/settings.php:407 +msgid "%s KB" +msgstr "%s KB" + +#. translators: %s: Default network title. +#: wp-admin/includes/network.php:172 +msgid "%s Sites" +msgstr "%s Websites" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:624 +msgctxt "theme" +msgid "Delete %s" +msgstr "%s löschen" + +#: wp-admin/network/themes.php:101 +msgid "Sorry, you are not allowed to delete themes for this site." +msgstr "Du bist leider nicht berechtigt, Themes dieser Website zu löschen." + +#: wp-admin/network/themes.php:14 +msgid "Sorry, you are not allowed to manage network themes." +msgstr "Du bist leider nicht berechtigt, Themes dieses Netzwerks zu verwalten." + +#: wp-admin/network/sites.php:320 +msgid "Sorry, you are not allowed to delete that site." +msgstr "Du bist leider nicht berechtigt, diese Website zu löschen." + +#: wp-admin/network/site-themes.php:14 +msgid "Sorry, you are not allowed to manage themes for this site." +msgstr "Du bist leider nicht berechtigt, Themes dieser Website zu verwalten." + +#: wp-admin/network/site-new.php:17 +msgid "Sorry, you are not allowed to add sites to this network." +msgstr "Du bist leider nicht berechtigt, Websites zu diesem Netzwerk hinzuzufügen." + +#: wp-admin/network/site-info.php:14 wp-admin/network/site-users.php:14 +#: wp-admin/network/site-settings.php:14 +msgid "Sorry, you are not allowed to edit this site." +msgstr "Du bist leider nicht berechtigt, diese Website zu bearbeiten." + +#: wp-admin/network/settings.php:357 +msgid "The email address of the first comment author on a new site." +msgstr "Die E-Mail-Adresse des ersten Kommentar-Autors auf einer neuen Website." + +#: wp-admin/network/settings.php:353 +msgid "First Comment Email" +msgstr "E-Mail-Adresse des ersten Kommentars" + +#: wp-admin/includes/network.php:485 +msgid "That’s all, stop editing! Happy publishing." +msgstr "That’s all, stop editing! Happy publishing." + +#. translators: 1: wp-config.php, 2: Location of wp-config file, 3: Translated +#. version of "That's all, stop editing! Happy publishing." +#: wp-admin/includes/network.php:477 +msgid "Add the following to your %1$s file in %2$s above the line reading %3$s:" +msgstr "Füge folgendes zur deiner %1$s Datei hinzu, in %2$s oberhalb der Zeile die %3$s enthält: " + +#. translators: 1: Theme name, 2: Theme author. +#: wp-admin/network/themes.php:149 +msgctxt "theme" +msgid "%1$s by %2$s" +msgstr "%1$s von %2$s" + +#: wp-admin/network/site-new.php:243 +msgid "Only lowercase letters (a-z), numbers, and hyphens are allowed." +msgstr "Nur Kleinbuchstaben (a-z), Ziffern und Bindestriche sind erlaubt." + +#: wp-admin/network/site-new.php:169 +msgctxt "email \"From\" field" +msgid "Site Admin" +msgstr "Website-Administrator" + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:540 +msgid "These unique authentication keys are also missing from your %s file." +msgstr "Diese einmaligen Schlüssel zur Authentifikation fehlen ebenfalls in der Datei %s." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:534 +msgid "This unique authentication key is also missing from your %s file." +msgstr "Dieser einmalige Schlüssel zur Authentifikation fehlt ebenfalls in der Datei %s." + +#. translators: %s: wp-config.php +#: wp-admin/includes/network.php:463 +msgid "We recommend you back up your existing %s file." +msgstr "Wir empfehlen dir, die existierende Datei %s zu sichern." + +#. translators: 1: wp-config.php, 2: .htaccess +#. translators: 1: wp-config.php, 2: web.config +#: wp-admin/includes/network.php:447 wp-admin/includes/network.php:455 +msgid "We recommend you back up your existing %1$s and %2$s files." +msgstr "Wir empfehlen dir, die existierenden Dateien %1$s und %2$s zu sichern." + +#. translators: 1: localhost, 2: localhost.localdomain +#: wp-admin/includes/network.php:306 +msgid "Because you are using %1$s, the sites in your WordPress network must use sub-directories. Consider using %2$s if you wish to use sub-domains." +msgstr "Weil du %1$s verwendest, müssen die Websites in deinem WordPress-Netzwerk Unterverzeichnisse verwenden. Du kannst in Erwägung ziehen, %2$s zu verwenden, wenn du Subdomains nutzen möchtest." + +#. translators: %s: Host name. +#: wp-admin/includes/network.php:288 wp-admin/includes/network.php:348 +msgid "The internet address of your network will be %s." +msgstr "Die Internetadresse deines Netzwerks wird %s sein." + +#. translators: 1: Site URL, 2: Host name, 3: www. +#: wp-admin/includes/network.php:274 +msgid "We recommend you change your site domain to %1$s before enabling the network feature. It will still be possible to visit your site using the %3$s prefix with an address like %2$s but any links will not have the %3$s prefix." +msgstr "Wir empfehlen, die Domain deiner Website zu %1$s zu ändern, bevor du die Netzwerkfunktionalität aktivierst. Es wird weiterhin möglich sein, deine Website unter Verwendung des Präfix %3$s mit einer Adresse wie %2$s aufzurufen, aber die Links werden kein Präfix %3$s haben." + +#: wp-admin/includes/network.php:229 +msgid "You cannot change this later." +msgstr "Dies kann später nicht geändert werden." + +#: wp-admin/includes/network.php:228 +msgid "Please choose whether you would like sites in your WordPress network to use sub-domains or sub-directories." +msgstr "Bitte wähle, ob die Websites in deinem WordPress-Netzwerk Subdomains oder Unterverzeichnisse verwenden sollen." + +#. translators: 1: mod_rewrite, 2: mod_rewrite documentation URL, 3: Google +#. search for mod_rewrite. +#: wp-admin/includes/network.php:216 +msgid "If %1$s is disabled, ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up." +msgstr "Wenn %1$s deaktiviert ist, bitte deinen Serveradministrator darum, das Modul zu aktivieren oder suche in der Apache Dokumentation (engl.) oder anderswo nach Hilfe zur Einrichtung." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:206 +msgid "It looks like the Apache %s module is not installed." +msgstr "Es sieht danach aus, dass das Apache-Modul %s nicht installiert ist." + +#. translators: %s: mod_rewrite +#: wp-admin/includes/network.php:198 +msgid "Please make sure the Apache %s module is installed as it will be used at the end of this installation." +msgstr "Bitte vergewissere dich, dass das Apache-Modul %s installiert ist, da es am Ende dieser Installation benötigt wird." + +#. translators: %s: Port number. +#: wp-admin/includes/network.php:145 +msgid "You cannot use port numbers such as %s." +msgstr "Du kannst keine Port-Nummern wie %s verwenden." + +#: wp-admin/includes/class-wp-ms-users-list-table.php:200 +msgctxt "user" +msgid "Registered" +msgstr "Registriert" + +#. translators: Number of users. +#: wp-admin/includes/class-wp-ms-users-list-table.php:164 +msgid "Super Admin (%s)" +msgid_plural "Super Admins (%s)" +msgstr[0] "Super-Administrator (%s)" +msgstr[1] "Super-Administratoren (%s)" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:118 +msgctxt "user" +msgid "Not spam" +msgstr "Kein Spam" + +#: wp-admin/includes/class-wp-ms-users-list-table.php:117 +msgctxt "user" +msgid "Mark as spam" +msgstr "Als Spam markieren" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:727 +msgid "Visit Theme Site" +msgstr "Theme Seite besuchen" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:721 +msgid "Visit %s homepage" +msgstr "%s Homepage besuchen" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:690 +msgid "Broken Theme:" +msgstr "Fehlerhaftes Theme:" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:596 +msgid "Network Disable %s" +msgstr "%s netzwerkweit deaktivieren" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:593 +msgid "Disable %s" +msgstr "%s deaktivieren" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:570 +msgid "Network Enable %s" +msgstr "%s netzwerkweit aktivieren" + +#. translators: %s: Theme name. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:567 +msgid "Enable %s" +msgstr "%s aktivieren" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:472 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:603 +msgid "Network Disable" +msgstr "Netzwerkweit deaktivieren" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:472 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:603 +msgid "Disable" +msgstr "Deaktivieren" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:469 +#: wp-admin/includes/class-wp-ms-themes-list-table.php:577 +msgid "Enable" +msgstr "Freischalten" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:415 +msgctxt "themes" +msgid "Broken (%s)" +msgid_plural "Broken (%s)" +msgstr[0] "Fehlerhaft (%s)" +msgstr[1] "Fehlerhaft (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:397 +msgctxt "themes" +msgid "Disabled (%s)" +msgid_plural "Disabled (%s)" +msgstr[0] "Deaktiviert (%s)" +msgstr[1] "Deaktiviert (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:388 +msgctxt "themes" +msgid "Enabled (%s)" +msgid_plural "Enabled (%s)" +msgstr[0] "Aktiviert (%s)" +msgstr[1] "Aktiviert (%s)" + +#. translators: %s: Number of themes. +#: wp-admin/includes/class-wp-ms-themes-list-table.php:379 +msgctxt "themes" +msgid "All (%s)" +msgid_plural "All (%s)" +msgstr[0] "Alle (%s)" +msgstr[1] "Alle (%s)" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:331 +msgid "Theme" +msgstr "Theme" + +#: wp-admin/includes/class-wp-ms-themes-list-table.php:319 +msgid "No themes found." +msgstr "Keine Themes gefunden." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:704 +msgctxt "verb; site" +msgid "Archive" +msgstr "Archivieren" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:702 +msgid "Unarchive" +msgstr "Wiederherstellen" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:478 +msgid "Never" +msgstr "Noch nie" + +#. translators: 1: Site title, 2: Site tagline. +#: wp-admin/includes/class-wp-ms-sites-list-table.php:451 +msgid "%1$s – %2$s" +msgstr "%1$s – %2$s" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:363 +#: wp-admin/network/site-info.php:176 +msgctxt "site" +msgid "Registered" +msgstr "Registriert" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:362 +#: wp-admin/network/site-info.php:180 +msgid "Last Updated" +msgstr "Zuletzt aktualisiert" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:708 +msgctxt "site" +msgid "Not Spam" +msgstr "Kein Spam" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:292 +msgctxt "site" +msgid "Mark as spam" +msgstr "Als Spam markieren" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:207 +msgid "No sites found." +msgstr "Keine Websites gefunden." + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:42 +#: wp-admin/network/site-info.php:190 +msgid "Mature" +msgstr "Erwachseneninhalt" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:41 +#: wp-admin/network/site-info.php:188 +msgid "Deleted" +msgstr "Gelöscht" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:40 +#: wp-admin/includes/class-wp-ms-sites-list-table.php:710 +#: wp-admin/network/site-info.php:187 +msgctxt "site" +msgid "Spam" +msgstr "Spam" + +#: wp-admin/includes/class-wp-ms-sites-list-table.php:39 +#: wp-admin/network/site-info.php:186 +msgid "Archived" +msgstr "Archiviert" + +#: wp-admin/network/user-new.php:136 wp-admin/network/site-users.php:360 +msgid "A password reset link will be sent to the user via email." +msgstr "Ein Link zum Zurücksetzen des Passwortes wird per E-Mail verschickt." + +#. translators: 1: NOBLOGREDIRECT, 2: wp-config.php +#: wp-admin/network/settings.php:212 +msgid "If registration is disabled, please set %1$s in %2$s to a URL you will redirect visitors to if they visit a non-existent site." +msgstr "Bei deaktivierter Registrierung, bitte %1$s in %2$s zu einer URL ändern, zu der Besucher weitergeleitet werden, falls diese eine nicht existierende Website aufrufen." + +#. translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php +#: wp-admin/network.php:44 +msgid "You must define the %1$s constant as true in your %2$s file to allow creation of a Network." +msgstr "Die Konstante %1$s in der Datei %2$s muss als true definiert werden, um die Erstellung eines Netzwerks zu erlauben." + +#: wp-admin/network/themes.php:331 +msgid "Themes list navigation" +msgstr "Theme-Liste Navigation" + +#: wp-admin/network/sites.php:52 +msgid "Sites list" +msgstr "Website-Liste" + +#: wp-admin/network/sites.php:51 +msgid "Sites list navigation" +msgstr "Navigation für die Website-Liste" + +#: wp-admin/network/site-users.php:27 +msgid "Site users list" +msgstr "Benutzerliste" + +#: wp-admin/network/site-users.php:26 +msgid "Site users list navigation" +msgstr "Navigation für die Benutzerliste" + +#: wp-admin/network/site-users.php:25 +msgid "Filter site users list" +msgstr "Liste der Website-Benutzer filtern" + +#: wp-admin/network/site-themes.php:24 +msgid "Site themes list" +msgstr "Theme-Liste" + +#: wp-admin/network/site-themes.php:23 +msgid "Site themes list navigation" +msgstr "Theme-Liste Navigation" + +#: wp-admin/network/site-themes.php:22 +msgid "Filter site themes list" +msgstr "Themes-Liste der Website filtern" + +#: wp-admin/network/site-new.php:121 +msgid "The domain or path entered conflicts with an existing username." +msgstr "Domain oder Pfad stehen im Konflikt mit einem bereits existierenden Benutzernamen." + +#: wp-admin/network/sites.php:89 +msgid "The requested action is not valid." +msgstr "Die angeforderte Aktion ist nicht gültig." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:81 +msgid "You are about to mark the site %s as not mature." +msgstr "Du bist dabei, die Website %s als jugendfrei zu kennzeichnen." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:79 +msgid "You are about to mark the site %s as mature." +msgstr "Du bist dabei, die Website %s als nicht jugendfrei zu kennzeichnen." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:77 +msgid "You are about to delete the site %s." +msgstr "Du bist dabei, die Website %s zu löschen." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:75 +msgid "You are about to mark the site %s as spam." +msgstr "Du bist dabei, die Website %s als Spam zu markieren." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:73 +msgid "You are about to unspam the site %s." +msgstr "Du bist dabei, den Spam-Status der Website %s zu entfernen." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:71 +msgid "You are about to archive the site %s." +msgstr "Du bist dabei, die Website %s zu archivieren." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:69 +msgid "You are about to unarchive the site %s." +msgstr "Du bist dabei, die Website %s wieder zu aktivieren." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:67 +msgid "You are about to deactivate the site %s." +msgstr "Du bist dabei, die Website %s zu deaktivieren." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:65 +msgid "You are about to activate the site %s." +msgstr "Du bist dabei, die Website %s zu aktivieren." + +#: wp-admin/network/site-info.php:28 wp-admin/network/site-users.php:46 +#: wp-admin/network/site-themes.php:53 wp-admin/network/site-settings.php:28 +msgid "The requested site does not exist." +msgstr "Die angeforderte Website existiert nicht." + +#: wp-admin/network/user-new.php:29 wp-admin/network/users.php:230 +msgid "Documentation on Network Users" +msgstr "Dokumentation zu Netzwerk Benutzer (engl.)" + +#: wp-admin/network/themes.php:323 +msgid "Documentation on Network Themes" +msgstr "Dokumentation zu Netzwerk Themes (engl.)" + +#: wp-admin/network/settings.php:63 +msgid "Documentation on Network Settings" +msgstr "Dokumentation der Netzwerk-Einstellungen (engl.)" + +#. translators: 1: Site URL, 2: Server error message. +#: wp-admin/network/upgrade.php:98 +msgid "Warning! Problem updating %1$s. Your server may not be able to connect to sites running on it. Error message: %2$s" +msgstr "Warnung! Es ist ein Problem bei der Aktualisierung von %1$s aufgetreten. Dein Server könnte Probleme damit haben, sich mit Websites zu verbinden, die darauf laufen. Fehlermeldung: %2$s" + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:387 +msgid "%s theme deleted." +msgid_plural "%s themes deleted." +msgstr[0] "%s Theme gelöscht." +msgstr[1] "%s Themes gelöscht." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:378 wp-admin/network/site-themes.php:204 +msgid "%s theme disabled." +msgid_plural "%s themes disabled." +msgstr[0] "%s Theme deaktiviert." +msgstr[1] "%s Themes deaktiviert." + +#. translators: %s: Number of themes. +#: wp-admin/network/themes.php:369 wp-admin/network/site-themes.php:195 +msgid "%s theme enabled." +msgid_plural "%s themes enabled." +msgstr[0] "%s Theme aktiviert." +msgstr[1] "%s Themes aktiviert." + +#: wp-admin/network/themes.php:175 +msgid "Yes, delete these themes" +msgstr "Ja, lösche diese Themes" + +#: wp-admin/network/themes.php:142 +msgid "You are about to remove the following themes:" +msgstr "Du bist dabei, folgende Themes zu entfernen:" + +#: wp-admin/network/themes.php:141 +msgid "These themes may be active on other sites in the network." +msgstr "Diese Themes könnten auf anderen Websites im Netzwerk aktiviert sein." + +#: wp-admin/network/themes.php:140 +msgid "Delete Themes" +msgstr "Themes löschen" + +#: wp-admin/network/site-info.php:196 +msgid "Set site attributes" +msgstr "Website-Attribute festlegen" + +#: wp-admin/network/settings.php:479 +msgid "Enable menus" +msgstr "Menüs aktivieren" + +#: wp-admin/network/settings.php:412 +msgid "Size in kilobytes" +msgstr "Größe in Kilobyte" + +#: wp-admin/network/settings.php:396 +msgid "Allowed file types. Separate types by spaces." +msgstr "Erlaubte Dateitypen. Trenne die einzelnen Typen mit einem Leerzeichen." + +#: wp-admin/network/settings.php:202 +msgid "New registrations settings" +msgstr "Einstellungen für neue Registrierungen" + +#. translators: 1: File name (.htaccess or web.config), 2: File path. +#: wp-admin/includes/network.php:609 wp-admin/includes/network.php:661 +msgid "Add the following to your %1$s file in %2$s, replacing other WordPress rules:" +msgstr "Füge Folgendes zu deiner Datei %1$s in %2$s hinzu und ersetze andere WordPress-Regeln dadurch:" + +#: wp-admin/network/sites.php:114 wp-admin/network/sites.php:190 +msgid "Confirm your action" +msgstr "Bestätige deine Aktion" + +#: wp-admin/network/users.php:220 +msgid "Hover over any user on the list to make the edit links appear. The Edit link on the left will take you to their Edit User profile page; the Edit link on the right by any site name goes to an Edit Site screen for that site." +msgstr "Fahre mit der Maus über die Benutzer in der Liste, um die Bearbeiten-Links anzeigen zu lassen. Der Bearbeiten-Link auf der linken Seite bringt dich zur „Benutzerprofil bearbeiten“-Seite. Der Bearbeiten-Link auf der rechten Seite jedes Website-Namens führt zu einer Bearbeiten-Seite für diese Website." + +#: wp-admin/network/index.php:43 +msgid "To search for a site, enter the path or domain." +msgstr "Gib den Pfad oder die Domain an, um nach einer Website zu suchen." + +#: wp-admin/network/index.php:42 +msgid "To search for a user, enter an email address or username. Use a wildcard to search for a partial username, such as user*." +msgstr "Gib eine E-Mail-Adresse oder einen Benutzernamen an, um nach einem Benutzer zu suchen. Benutze einen Platzhalter, um nach Teilen eines Benutzernamens zu suchen, wie z. B. Nutzer*." + +#: wp-admin/network/index.php:40 +msgid "To add a new site, click Create a New Site." +msgstr "Klicke auf Neue Website anlegen, um deinem Netzwerk eine neue Website hinzuzufügen." + +#: wp-admin/network/index.php:39 +msgid "To add a new user, click Create a New User." +msgstr "Klicke auf Neuen Benutzer erstellen, um einen neuen Benutzer hinzuzufügen." + +#: wp-admin/network/index.php:48 +msgid "Quick Tasks" +msgstr "Schnellzugriff" + +#: wp-admin/network/index.php:41 +msgid "To search for a user or site, use the search boxes." +msgstr "Nutze die Suchfelder, um nach einem Benutzer oder einer Website zu suchen." + +#: wp-admin/network/index.php:38 +msgid "The Right Now widget on this screen provides current user and site counts on your network." +msgstr "Das „Auf einen Blick“-Widget zeigt die aktuelle Anzahl der Websites und Benutzer in deinem Netzwerk." + +#: wp-admin/network/index.php:28 +msgid "Modify global network settings" +msgstr "Alle globalen Netzwerkeinstellungen ändern" + +#: wp-admin/network/index.php:27 +msgid "Update your network" +msgstr "Dein Netzwerk aktualisieren" + +#: wp-admin/network/index.php:26 +msgid "Install and activate themes or plugins" +msgstr "Themes oder Plugins (Erweiterungen) installieren und aktivieren" + +#: wp-admin/network/index.php:25 +msgid "Add and manage sites or users" +msgstr "Neue Websites oder Benutzer hinzufügen und verwalten" + +#: wp-admin/network/index.php:24 +msgid "From here you can:" +msgstr "Von hier aus kannst du:" + +#: wp-admin/network/index.php:23 +msgid "Welcome to your Network Admin. This area of the Administration Screens is used for managing all aspects of your Multisite Network." +msgstr "Willkommen in der Netzwerkverwaltung. Diese Bereiche der Administration werden für die Verwaltung aller Aspekte deines Multisite-Netzwerks verwendet." + +#: wp-admin/network/upgrade.php:140 +msgid "WordPress has been updated! Before we send you on your way, we need to individually upgrade the sites in your network." +msgstr "WordPress wurde aktualisiert! Bevor du aber weitermachen kannst, müssen die einzelnen Websites in deinem Netzwerk ebenfalls noch aktualisiert werden." + +#: wp-admin/network/upgrade.php:23 +msgid "Only use this screen once you have updated to a new version of WordPress through Updates/Available Updates (via the Network Administration navigation menu or the Toolbar). Clicking the Upgrade Network button will step through each site in the network, five at a time, and make sure any database updates are applied." +msgstr "Benutze diese Ansicht nur, wenn du auf eine neue Version von WordPress durch Aktualisierungen/Verfügbare Aktualisierungen aktualisiert hast; etwa über das Netzwerk-Administrationsmenü oder die Toolbar. Durch Klick auf den „Netzwerk aktualisieren“-Button wirst du schrittweise durch jede Website im Netzwerk geführt, immer fünf zugleich, um sicherzustellen, dass alle Datenbank-Updates angewandt wurden." + +#: wp-admin/network/upgrade.php:15 wp-admin/network/upgrade.php:42 +#: wp-admin/network/upgrade.php:144 wp-admin/network/menu.php:46 +msgid "Upgrade Network" +msgstr "Netzwerk aktualisieren" + +#. translators: New site notification email. 1: User login, 2: Site URL, 3: +#. Site title. +#: wp-admin/network/site-new.php:157 +msgid "" +"New site created by %1$s\n" +"\n" +"Address: %2$s\n" +"Name: %3$s" +msgstr "" +"Neue Website erstellt von %1$s\n" +"\n" +"Adresse: %2$s\n" +"Name: %3$s" + +#: wp-admin/includes/network.php:263 wp-admin/includes/network.php:615 +#: wp-admin/includes/network.php:667 +msgid "Subdirectory networks may not be fully compatible with custom wp-content directories." +msgstr "Unterverzeichnis-Netzwerke können mit eigenen wp-content-Verzeichnissen nicht vollständig kompatibel sein." + +#: wp-admin/network.php:62 +msgid "Add the designated lines of code to wp-config.php (just before /*...stop editing...*/) and .htaccess (replacing the existing WordPress rules)." +msgstr "Füge die bezeichneten Zeilen Code zur wp-config.php (kurz vor /*... stop editing...*/) und .htaccess hinzu (ersetzt die bestehenden WordPress-Regeln)." + +#: wp-admin/network/settings.php:423 +msgid "Language Settings" +msgstr "Spracheinstellungen" + +#: wp-admin/network/settings.php:238 +msgid "Allow site administrators to add new users to their site via the \"Users → Add New\" page" +msgstr "Website-Administratoren das Hinzufügen neuer Benutzer zu deren Website über die Seite „Benutzer > Neu hinzufügen“ erlauben" + +#: wp-admin/network/settings.php:57 +msgid "Super admins can no longer be added on the Options screen. You must now go to the list of existing users on Network Admin > Users and click on Username or the Edit action link below that name. This goes to an Edit User page where you can check a box to grant super admin privileges." +msgstr "Super-Administratoren können nicht mehr über den Optionen-Bereich hinzugefügt werden. Du musst jetzt über Netzwerkverwaltung > Benutzer zu der Liste der existierenden Benutzer gehen und auf den Benutzernamen oder den Bearbeiten-Link unter dem Namen klicken, dem du Administratorrechte geben möchtest. Du kommst dadurch auf die Benutzerseite und kannst ihm per Checkbox Super-Administrator-Rechte geben." + +#: wp-admin/network/site-users.php:269 +msgid "Enter the username and email." +msgstr "Bitte Benutzername und E-Mail-Adresse eingeben." + +#: wp-admin/network/site-users.php:266 +msgid "User created." +msgstr "Der Benutzer wurde angelegt." + +#: wp-admin/network/site-users.php:263 +msgid "Select a user to remove." +msgstr "Bitte einen Benutzer auswählen, um diesen löschen zu können." + +#: wp-admin/network/site-users.php:257 +msgid "Select a user to change role." +msgstr "Bitte einen Benutzer auswählen, um die Benutzerrolle ändern zu können." + +#: wp-admin/network/site-users.php:251 +msgid "Enter the username of an existing user." +msgstr "Gib den Benutzernamen eines bestehenden Benutzers ein." + +#: wp-admin/network/site-users.php:245 +msgid "User is already a member of this site." +msgstr "Benutzer ist schon ein Mitglied dieser Website." + +#: wp-admin/network/site-settings.php:78 +msgid "Site options updated." +msgstr "Website-Einstellungen wurden aktualisiert." + +#: wp-admin/network/site-new.php:201 wp-admin/network/site-new.php:211 +msgid "Add New Site" +msgstr "Neue Website erstellen" + +#. translators: 1: Dashboard URL, 2: Network admin edit URL. +#: wp-admin/network/site-new.php:194 +msgid "Site added. Visit Dashboard or Edit Site" +msgstr "Website wurde hinzugefügt. Zum Dashboard wechseln oder Website bearbeiten." + +#: wp-admin/network/site-new.php:25 +msgid "This screen is for Super Admins to add new sites to the network. This is not affected by the registration settings." +msgstr "Dieser Bereich ist für die Super-Administratoren, um neue Websites zum Netzwerk hinzuzufügen. Dies wird nicht durch die Registrierungs-Einstellungen beeinflusst." + +#: wp-admin/network/site-info.php:121 +msgid "Site info updated." +msgstr "Website-Info wurde aktualisiert." + +#: wp-admin/network/themes.php:411 +msgid "You cannot delete a theme while it is active on the main site." +msgstr "Du kannst dieses Theme nicht löschen, solange es auf der Haupt-Website aktiv ist." + +#: wp-admin/network/themes.php:301 +msgid "Themes can be enabled on a site by site basis by the network admin on the Edit Site screen (which has a Themes tab); get there via the Edit action link on the All Sites screen. Only network admins are able to install or edit themes." +msgstr "" +"Themes können in der Netzwerkverwaltung Website für Website \n" +"im Bereich „Websites“ (dort ist ein Tab „Themes“) durch Freischalten zur Verfügung gestellt werden; du erreichst diese Funktion durch Klicken auf „Bearbeiten“ in der Ansicht der jeweiligen Website. Nur Netzwerk-Administratoren sind in der Lage Themes zu installieren, aktivieren oder zu bearbeiten." + +#: wp-admin/network/themes.php:182 +msgid "No, return me to the theme list" +msgstr "Nein, zurück zur Theme-Liste" + +#: wp-admin/network/themes.php:173 +msgid "Yes, delete this theme" +msgstr "Ja, lösche dieses Theme" + +#: wp-admin/network/themes.php:159 +msgid "Are you sure you want to delete these themes?" +msgstr "Bist du sicher, dass du diese Themes löschen möchtest?" + +#: wp-admin/network/themes.php:138 +msgid "You are about to remove the following theme:" +msgstr "Du bist dabei, folgendes Theme zu entfernen:" + +#: wp-admin/network/themes.php:137 +msgid "This theme may be active on other sites in the network." +msgstr "Dieses Theme könnte auf anderen Websites im Netzwerk aktiv sein." + +#: wp-admin/network/themes.php:136 +msgid "Delete Theme" +msgstr "Theme löschen" + +#: wp-admin/network/site-themes.php:212 +msgid "Network enabled themes are not shown on this screen." +msgstr "Im Netzwerk aktivierte Themes werden in dieser Ansicht nicht gezeigt." + +#: wp-admin/network/themes.php:409 wp-admin/network/site-themes.php:208 +msgid "No theme selected." +msgstr "Kein Theme ausgewählt." + +#: wp-admin/network/themes.php:375 wp-admin/network/site-themes.php:201 +msgid "Theme disabled." +msgstr "Das Theme wurde deaktiviert." + +#: wp-admin/network/themes.php:366 wp-admin/network/site-themes.php:192 +msgid "Theme enabled." +msgstr "Das Theme wurde aktiviert." + +#. translators: %s: Site title. +#: wp-admin/network/site-info.php:126 wp-admin/network/site-users.php:204 +#: wp-admin/network/site-themes.php:170 wp-admin/network/site-settings.php:83 +msgid "Edit Site: %s" +msgstr "Website bearbeiten: %s" + +#: wp-admin/network/site-info.php:23 wp-admin/network/site-users.php:41 +#: wp-admin/network/site-themes.php:46 wp-admin/network/site-settings.php:23 +msgid "Invalid site ID." +msgstr "Ungültige Website-ID." + +#. translators: %s: Site URL. +#: wp-admin/network/sites.php:167 +msgid "Sorry, you are not allowed to delete the site %s." +msgstr "Du bist leider nicht berechtigt, die Website %s zu löschen." + +#: wp-admin/network/sites.php:39 +msgid "Clicking on bold headings can re-sort this table." +msgstr "Du kannst die fett gedruckten Kopfzeilen anklicken, um die Tabelle neu zu sortieren." + +#: wp-admin/network/sites.php:36 +msgid "Delete which is a permanent action after the confirmation screens." +msgstr "Löschen ist eine permanente Aktion nach der Bestätigungsmeldung." + +#: wp-admin/network/sites.php:34 +msgid "Dashboard leads to the Dashboard for that site." +msgstr "Dashboard führt dich zum jeweiligen Dashboard der Website." + +#: wp-admin/network/sites.php:33 +msgid "An Edit link to a separate Edit Site screen." +msgstr "Bearbeiten, um in einem eigenen Bereich weitere Informationen der Website bearbeiten zu können." + +#: wp-admin/network/sites.php:30 +msgid "Add New takes you to the Add New Site screen. You can search for a site by Name, ID number, or IP address. Screen Options allows you to choose how many sites to display on one page." +msgstr "„Neu hinzufügen“ bringt dich in den „Neue Website erstellen“-Bereich. Dort kannst du Websites nach Name, ID oder IP-Adresse suchen. Über „Ansicht anpassen“ kannst du u.a. auswählen, wie viele Websites auf einer Seite dargestellt werden." + +#: wp-admin/network/user-new.php:148 wp-admin/network/site-users.php:323 +msgid "Add User" +msgstr "Benutzer hinzufügen" + +#: wp-admin/network/user-new.php:55 +msgid "Cannot add user." +msgstr "Der Benutzer konnte nicht hinzugefügt werden." + +#: wp-admin/network/user-new.php:22 +msgid "Add User will set up a new user account on the network and send that person an email with username and password." +msgstr "Die Funktion „Benutzer hinzufügen“ erstellt ein neues Benutzerkonto im Netzwerk und sendet der Person eine E-Mail mit Benutzername und Passwort." + +#: wp-admin/network/menu.php:41 +msgid "Updates" +msgstr "Aktualisierungen" + +#: wp-admin/network/settings.php:20 wp-admin/network/menu.php:111 +msgid "Network Settings" +msgstr "Netzwerk-Einstellungen" + +#: wp-admin/network/menu.php:80 +msgid "Installed Themes" +msgstr "Installierte Themes" + +#. translators: %s: Number of available theme updates. +#: wp-admin/network/menu.php:63 +msgid "Themes %s" +msgstr "Themes %s" + +#: wp-admin/network/menu.php:52 +msgid "All Sites" +msgstr "Alle Websites" + +#: wp-admin/includes/network.php:679 +msgid "Once you complete these steps, your network is enabled and configured. You will have to log in again." +msgstr "Nach Abschluss dieser Schritte ist dein Netzwerk aktiviert und eingerichtet. Dann musst du dich erneut anmelden." + +#: wp-admin/includes/network.php:545 +msgid "To make your installation more secure, you should also add:" +msgstr "Um deine Installation sicherer zu machen, solltest du Folgendes ebenfalls hinzufügen:" + +#: wp-admin/includes/network.php:440 +msgid "Complete the following steps to enable the features for creating a network of sites." +msgstr "Vervollständige die folgenden Schritte, um die Funktionen zum Erstellen eines Netzwerks von Websites zu aktivieren." + +#: wp-admin/includes/network.php:439 +msgid "Enabling the Network" +msgstr "Aktivieren des Netzwerks" + +#: wp-admin/includes/network.php:428 +msgid "Please complete the configuration steps. To create a new network, you will need to empty or remove the network database tables." +msgstr "Bitte schließe die Schritte zur Einrichtung ab. Um ein neues Netzwerk anzulegen, musst du die Netzwerk-Datenbanktabellen leeren oder entfernen." + +#: wp-admin/includes/network.php:427 +msgid "An existing WordPress network was detected." +msgstr "Ein bestehendes WordPress-Netzwerk wurde gefunden." + +#: wp-admin/includes/network.php:422 +msgid "The original configuration steps are shown here for reference." +msgstr "Als Referenz werden hier die originalen Einstellungsschritte gezeigt." + +#: wp-admin/includes/network.php:369 +msgid "Your email address." +msgstr "Deine E-Mail-Adresse." + +#: wp-admin/includes/network.php:360 +msgid "What would you like to call your network?" +msgstr "Wie möchtest du dein Netzwerk nennen?" + +#: wp-admin/includes/network.php:356 wp-admin/network/settings.php:153 +msgid "Network Title" +msgstr "Netzwerk-Titel" + +#: wp-admin/includes/network.php:335 +msgid "Because your installation is not new, the sites in your WordPress network must use sub-domains." +msgstr "Da deine Installation nicht neu ist, müssen die Websites in deinem WordPress-Netzwerk Subdomains verwenden." + +#: wp-admin/includes/network.php:322 +msgid "Because your installation is in a directory, the sites in your WordPress network must use sub-directories." +msgstr "Weil deine Installation in einem Verzeichnis ist, müssen die Websites deines WordPress-Netzwerks Unterverzeichnisse verwenden." + +#: wp-admin/includes/network.php:312 wp-admin/includes/network.php:325 +#: wp-admin/includes/network.php:336 +msgid "The main site in a sub-directory installation will need to use a modified permalink structure, potentially breaking existing links." +msgstr "Die Haupt-Website einer Installation in einem Unterverzeichnis benötigt eine modifizierte Permalink-Struktur, die möglicherweise bestehende Links beeinträchtigt." + +#: wp-admin/includes/network.php:297 +msgid "Network Details" +msgstr "Netzwerk-Details" + +#: wp-admin/includes/network.php:269 wp-admin/includes/network.php:283 +#: wp-admin/includes/network.php:343 +msgid "Server Address" +msgstr "Server-Adresse" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:251 +msgctxt "subdirectory examples" +msgid "like %1$s/site1 and %1$s/site2" +msgstr "wie %1$s/site1 und %1$s/site2" + +#: wp-admin/includes/network.php:246 +msgid "Sub-directories" +msgstr "Unterverzeichnisse" + +#. translators: 1: Host name. +#: wp-admin/includes/network.php:239 +msgctxt "subdomain examples" +msgid "like site1.%1$s and site2.%1$s" +msgstr "wie site1.%1$s und site2.%1$s" + +#: wp-admin/includes/network.php:234 +msgid "Sub-domains" +msgstr "Subdomains" + +#: wp-admin/includes/network.php:230 +msgid "You will need a wildcard DNS record if you are going to use the virtual host (sub-domain) functionality." +msgstr "Du benötigst einen Wildcard DNS-Eintrag, wenn du die Funktionalität des Virtual Host (Subdomain) verwenden möchtest." + +#: wp-admin/includes/network.php:227 +msgid "Addresses of Sites in your Network" +msgstr "Adressen der Websites in deinem Netzwerk" + +#: wp-admin/includes/network.php:195 +msgid "Note:" +msgstr "Hinweis:" + +#: wp-admin/includes/network.php:182 +msgid "Fill in the information below and you’ll be on your way to creating a network of WordPress sites. We will create configuration files in the next step." +msgstr "Fülle das nachfolgende Formular aus. Damit beginnst du den Einrichtungsprozess eines Netzwerks von WordPress-Websites. Im nächsten Schritt erstellen wir eine Konfigurationsdatei." + +#: wp-admin/includes/network.php:181 +msgid "Welcome to the Network installation process!" +msgstr "Willkommen zur Netzwerk-Installation!" + +#: wp-admin/includes/network.php:160 +msgid "Error: The network could not be created." +msgstr "Fehler: Das Netzwerk konnte nicht erstellt werden." + +#: wp-admin/includes/network.php:148 +msgid "Return to Dashboard" +msgstr "Zurück zum Dashboard" + +#: wp-admin/includes/network.php:142 +msgid "You cannot install a network of sites with your server address." +msgstr "Du kannst mit deiner Serveradresse kein Website-Netzwerk installieren." + +#: wp-admin/includes/network.php:133 +msgid "Once the network is created, you may reactivate your plugins." +msgstr "Sobald das Netzwerk erstellt wurde, kannst du deine Plugins wieder aktivieren." + +#. translators: %s: URL to Plugins screen. +#: wp-admin/includes/network.php:130 +msgid "Please deactivate your plugins before enabling the Network feature." +msgstr "Bitte deaktiviere deine Plugins, bevor du die Netzwerk-Funktionalität aktivierst." + +#: wp-admin/network.php:72 +msgid "Network" +msgstr "Netzwerk" + +#: wp-admin/network.php:64 +msgid "The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version." +msgstr "Die Auswahl, die Websites in Unterverzeichnissen anzulegen ist deaktiviert, sollte das Setup älter sein als einen Monat, wegen dem Permalink-Problem mit „/blog/“ auf der Haupt-Website. Diese Sperrung wird in der zukünftigen Version behoben sein." + +#: wp-admin/network.php:63 +msgid "Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar." +msgstr "Sobald du diesen Code hinzugefügt hast und deinen Browser neu lädst, sollte das Netzwerk aktiviert sein. Dieser Bereich zeigt nun das Netzwerk-Administrationsmenü und enthält eine Archivierung des zusätzlichen Codes. Du kannst zwischen der Netzwerk-Administration und Website-Administration wechseln durch Klicken auf „Netzwerkverwaltung“ oder der individuellen Website unter dem „Meine Websites“-Aufklappmenü in der Werkzeugleiste." + +#: wp-admin/network.php:61 +msgid "The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files." +msgstr "Der nächste Bereich im Netzwerk Setup gibt dir individuell generierte Code-Zeilen, die du zu deiner wp-config.php- und .htaccess-Datei hinzufügen sollst. Stelle sicher, dass dein FTP-Programm alle Dateien anzeigt, auch die, die mit einem . beginnen, damit du auch die .htaccess findest. Du kannst manuell eine .htaccess Datei erstellen, sollte noch keine im Verzeichnis vorhanden sein. Mache bitte eine Sicherheitskopie von der wp-config.php und .htaccess-Datei." + +#: wp-admin/network.php:60 +msgid "Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories)." +msgstr "Wähle Subdomains oder Unterverzeichnisse. Dies kann später nur durch Rekonfiguration der Installation verändert werden. Fülle die Netzwerk-Details aus und klicke Installieren. Sollte dies nicht funktionieren, solltest du einen Wildcard-DNS-Eintrag (für Subdomains) anlegen oder andere Einstellungen in Permalinks (für Unterverzeichnisse) setzen." + +#: wp-admin/network.php:59 +msgid "This screen allows you to configure a network as having subdomains (site1.example.com) or subdirectories (example.com/site1). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it." +msgstr "Dieser Bereich erlaubt dir, ein Netzwerk mit Subdomains (site1.example.com) oder Unterverzeichnissen example.com/site1) zu konfigurieren. Subdomains benötigen eine Wildcard-Subdomain-Konfiguration in den Apache- und DNS-Einstellungen, sofern dein Server dies unterstützt." + +#: wp-admin/network.php:55 +msgid "Create a Network of WordPress Sites" +msgstr "Erstelle ein Netzwerk von WordPress Websites" + +#: wp-admin/network.php:29 +msgid "The Network creation panel is not for WordPress MU networks." +msgstr "Das Netzwerk-Bedienfeld ist nicht für WordPress-MU-Netzwerke nutzbar." + +#. translators: %s: User login. +#: wp-admin/network/users.php:77 +msgid "Warning! User cannot be modified. The user %s is a network administrator." +msgstr "Warnung! Der Benutzer kann nicht verändert werden. Der Benutzer %s ist ein Netzwerk-Administrator." + +#: wp-admin/network/site-new.php:26 +msgid "If the admin email for the new site does not exist in the database, a new user will also be created." +msgstr "Es wird ein neuer Benutzer angelegt, sofern nicht schon ein Benutzer mit der angegebenen Administrator E-Mail-Adresse vorhanden ist." + +#: wp-admin/network/sites.php:38 +msgid "The site ID is used internally, and is not shown on the front end of the site or to users/viewers." +msgstr "Die Website-ID wird nur intern genutzt und wird nicht öffentlich angezeigt." + +#: wp-admin/network/sites.php:35 +msgid "Deactivate, Archive, and Spam which lead to confirmation screens. These actions can be reversed later." +msgstr "Deaktivieren, Archivieren und Spam. Deaktivieren entspricht dabei der Löschung der Website durch seinen Besitzer. Archivieren bietet die Möglichkeit, einen Blog vorübergehend nicht erreichbar zu machen und anschließend wieder zu aktivieren. Spam markiert eine Website als Spam. Wobei all diese Aktionen wieder rückgängig gemacht werden können." + +#: wp-admin/network/sites.php:32 +msgid "Hovering over each site reveals seven options (three for the primary site):" +msgstr "Wenn du mit der Maus über einen Eintrag in der Liste fährst, werden zusätzliche Optionen angezeigt:" + +#: wp-admin/network/settings.php:51 +msgid "Operational settings has fields for the network’s name and admin email." +msgstr "Die Netzwerk-Einstellungen beinhalten unter anderem die Einstellungen für den Namen des Netzwerks und die Administrator E-Mail-Adresse." + +#: wp-admin/network/users.php:223 +msgid "The bulk action will permanently delete selected users, or mark/unmark those selected as spam. Spam users will have posts removed and will be unable to sign up again with the same email addresses." +msgstr "Über die „Mehrfachaktionen“ können mehrere ausgewählte Benutzer unwiderruflich gelöscht oder als Spammer gekennzeichnet bzw. diese Kennzeichnung kann wieder entfernt werden. Alle Beiträge der als Spammer gekennzeichneten Benutzer werden entfernt und Spammer können sich nicht erneut mit denselben E-Mail-Adressen registrieren." + +#: wp-admin/network/users.php:221 +msgid "You can also go to the user’s profile page by clicking on the individual username." +msgstr "Du kannst auch auf die Profilseite des Benutzers gehen, indem du auf den jeweiligen Benutzernamen klickst." + +#: wp-admin/network/settings.php:54 +msgid "Upload settings control the size of the uploaded files and the amount of available upload space for each site. You can change the default value for specific sites when you edit a particular site. Allowed file types are also listed (space separated only)." +msgstr "Die „Upload-Einstellungen“ kontrollieren die Größe von hochgeladenen Dateien und den insgesamt zur Verfügung stehenden Speicherplatz für Uploads für jede Website. Du kannst diesen Wert (Speicher-Quota) für eine spezifische Website ändern, indem du diese spezielle Website bearbeitest (unter: Netzwerkverwaltung > Websites > Bearbeiten > Einstellungen > ganz unten). Zugelassene Dateitypen können ebenfalls aufgelistet werden; jeweils durch Leerzeichen getrennt." + +#: wp-admin/network/sites.php:37 +msgid "Visit to go to the front-end site live." +msgstr "Ansehen, um direkt die Startseite der Website aufzurufen." + +#: wp-admin/network/users.php:224 +msgid "You can make an existing user an additional super admin by going to the Edit User profile page and checking the box to grant that privilege." +msgstr "Du kannst aus einem existierenden Benutzer einen zusätzlichen Super-Adminstrator machen, indem du auf der jeweiligen Benutzer-Profil-Seite (über Netzwerkverwaltung > Benutzer > Bearbeiten) die Checkbox zum Gewähren von Super-Adminstratoren-Rechten aktivierst." + +#: wp-admin/network/user-new.php:23 +msgid "Users who are signed up to the network without a site are added as subscribers to the main or primary dashboard site, giving them profile pages to manage their accounts. These users will only see Dashboard and My Sites in the main navigation until a site is created for them." +msgstr "Benutzer, die im Netzwerk registriert sind, aber keine eigene Website haben, werden automatisch als Abonnenten im Dashboard der Haupt-Website hinzugefügt und haben so die Möglichkeit, ihr Profil zu verwalten. Diese Benutzer sehen nur das Dashboard und „Meine Websites“ in der Navigation, bis eine Website für sie erstellt wurde." + +#: wp-admin/network/users.php:222 +msgid "You can sort the table by clicking on any of the table headings and switch between list and excerpt views by using the icons above the users list." +msgstr "Durch Klicken auf eine beliebige Überschrift im Tabellenkopf kannst du die Tabelle entsprechend sortieren und mit den Icons oberhalb der Benutzerliste zwischen Listen-Ansicht und Textauszugs-Ansicht wechseln." + +#: wp-admin/network/users.php:219 +msgid "This table shows all users across the network and the sites to which they are assigned." +msgstr "Diese Übersicht zeigt alle Benutzer im Netzwerk und die Websites, denen sie zugeordnet sind." + +#: wp-admin/network/upgrade.php:25 +msgid "If this process fails for any reason, users logging in to their sites will force the same update." +msgstr "Falls der Vorgang aus irgendeinem Grund abbricht, wird er automatisch ausgeführt, sobald sich ein Benutzer auf seiner Website anmeldet." + +#: wp-admin/network/upgrade.php:24 +msgid "If a version update to core has not happened, clicking this button won’t affect anything." +msgstr "Falls keine Aktualisierungen durchgeführt wurden, macht ein Klick auf diesen Button auch nichts kaputt." + +#: wp-admin/network/themes.php:300 +msgid "If the network admin disables a theme that is in use, it can still remain selected on that site. If another theme is chosen, the disabled theme will not appear in the site’s Appearance > Themes screen." +msgstr "Wenn ein Netzwerk-Administrator ein Theme deaktiviert, das noch benutzt wird, kann es auf der betreffenden Website immer noch ausgewählt bleiben. Erst wenn ein anderes Theme gewählt wird, erscheint das deaktivierte Theme nicht mehr in der Theme-Liste dieser Website." + +#: wp-admin/network/themes.php:299 +msgid "This screen enables and disables the inclusion of themes available to choose in the Appearance menu for each site. It does not activate or deactivate which theme a site is currently using." +msgstr "Hier kannst du festlegen, welche Themes zur Benutzung für die Websites im Netzwerk zur Verfügung stehen. Es aktiviert oder deaktiviert jedoch nicht das jeweils genutzte Theme der Website." + +#: wp-admin/network/sites.php:31 +msgid "This is the main table of all sites on this network. Switch between list and excerpt views by using the icons above the right side of the table." +msgstr "Hier siehst du alle Websites dieses Netzwerks. Benutze die Icons rechts oben, um zwischen einer Ansicht als Liste oder Textauszug zu wechseln." + +#: wp-admin/network/settings.php:56 +msgid "Menu setting enables/disables the plugin menus from appearing for non super admins, so that only super admins, not site admins, have access to activate plugins." +msgstr "Bei „Menü-Einstellungen“ kannst du festlegen, ob der Menüeintrag „Plugins“ auch für andere Netzwerk-Administratoren angezeigt werden soll und somit Plugins für eine Website des Netzwerks, nicht nur von Super-Administratoren, aktiviert bzw. deaktiviert werden können." + +#: wp-admin/network/settings.php:53 +msgid "New site settings are defaults applied when a new site is created in the network. These include welcome email for when a new site or user account is registered, and what᾿s put in the first post, page, comment, comment author, and comment URL." +msgstr "Die Werte bei „Einstellungen für neue Website“ werden immer dann angewandt, wenn eine neue Website registriert wird. Dies umfasst die Willkommens-E-Mails, als auch den ersten automatisch angelegten Beitrag oder Kommentar." + +#: wp-admin/network/settings.php:52 +msgid "Registration settings can disable/enable public signups. If you let others sign up for a site, install spam plugins. Spaces, not commas, should separate names banned as sites for this network." +msgstr "" +"In den „Registrierungs-Einstellungen“ kannst du festlegen, ob sich neue Benutzer selber registrieren und eine Website anlegen dürfen. Falls dies erlaubt ist, solltest du ein Plugin installieren, welches Spam-Anmeldungen verhindert. \n" +"Bei den verbotenen Website-Adressen musst du die einzelnen Begriffe jeweils mit einem Leerzeichen trennen." + +#: wp-admin/network/settings.php:50 +msgid "This screen sets and changes options for the network as a whole. The first site is the main site in the network and network options are pulled from that original site’s options." +msgstr "In diesem Bildschirm werden die Einstellungen für das gesamte Netzwerk verwaltet. Die zuerst bei der Installation des WordPress-Netzwerks erstellte Website ist die Haupt-Website. Von deren Optionen werden auch die Netzwerk-Optionen übernommen." + +#. translators: %s: Reserved names list. +#: wp-admin/network/site-new.php:59 +msgid "The following words are reserved for use by WordPress functions and cannot be used as blog names: %s" +msgstr "Die folgenden Begriffe sind für WordPress reserviert und können deshalb nicht als Website-Name genutzt werden: %s" + +#: wp-admin/network/upgrade.php:124 +msgid "If your browser doesn’t start loading the next page automatically, click this link:" +msgstr "Falls dein Browser nicht automatisch zur nächsten Seite weiterleitet, klicke auf folgenden Link:" + +#: wp-admin/network/settings.php:284 +msgid "If you want to ban domains from site registrations. One domain per line." +msgstr "Für den Fall, dass bestimmte Domains für die Registrierung verboten werden sollen. Bitte eine Domain je Zeile. " + +#: wp-admin/network/settings.php:266 +msgid "If you want to limit site registrations to certain domains. One domain per line." +msgstr "Für den Fall, dass die Website-Registrierungen auf bestimmte Domains beschränkt werden sollen. Bitte eine Domain je Zeile." + +#: wp-admin/network/site-new.php:40 +msgid "Can’t create an empty site." +msgstr "Eine leere Website kann nicht erstellt werden." + +#: wp-admin/network/users.php:256 +msgid "Users removed from spam." +msgstr "Benutzer wurden aus Spam entfernt." + +#: wp-admin/network/sites.php:338 +msgid "Site marked as spam." +msgstr "Diese Website wurde als Spam eingestuft." + +#: wp-admin/network/sites.php:335 +msgid "Site removed from spam." +msgstr "Die Website wird nicht mehr als Spam eingestuft." + +#: wp-admin/network/sites.php:311 +msgid "Sites marked as spam." +msgstr "Websites wurden als Spam eingestuft." + +#: wp-admin/network/sites.php:308 +msgid "Sites removed from spam." +msgstr "Websites sind nicht mehr als Spam eingestuft." + +#: wp-admin/network/users.php:259 +msgid "Users deleted." +msgstr "Benutzer wurden gelöscht." + +#: wp-admin/network/users.php:253 +msgid "Users marked as spam." +msgstr "Benutzer wurden als Spam markiert." + +#: wp-admin/network/sites.php:332 +msgid "Site deactivated." +msgstr "Die Website wurde deaktiviert." + +#: wp-admin/network/sites.php:329 +msgid "Site activated." +msgstr "Die Website wurde aktiviert." + +#: wp-admin/network/sites.php:326 +msgid "Site unarchived." +msgstr "Die Website wurde wiederhergestellt." + +#: wp-admin/network/sites.php:323 +msgid "Site archived." +msgstr "Die Website wurde archiviert." + +#: wp-admin/network/sites.php:317 +msgid "Site deleted." +msgstr "Die Website wurde gelöscht." + +#: wp-admin/network/sites.php:314 +msgid "Sites deleted." +msgstr "Websites wurden gelöscht." + +#: wp-admin/network/sites.php:105 wp-admin/network/sites.php:223 +msgid "Sorry, you are not allowed to change the current site." +msgstr "Du bist leider nicht berechtigt, Änderungen an dieser Website vorzunehmen." + +#: wp-admin/network/site-new.php:126 +msgid "There was an error creating the user." +msgstr "Beim Erstellen des Benutzers ist ein Fehler aufgetreten." + +#: wp-admin/network/settings.php:392 +msgid "Upload file types" +msgstr "Erlaubte Dateitypen" + +#. translators: %s: Number of megabytes to limit uploads to. +#: wp-admin/network/settings.php:380 +msgid "Limit total size of files uploaded to %s MB" +msgstr "Gesamt-Speicherplatz pro Website limitieren auf %s MB" + +#: wp-admin/network/settings.php:366 +msgid "The URL for the first comment on a new site." +msgstr "Die URL für den ersten Kommentar einer neuen Website." + +#: wp-admin/network/settings.php:348 +msgid "The author of the first comment on a new site." +msgstr "Der Autor des ersten Kommentars einer neuen Website." + +#: wp-admin/network/settings.php:339 +msgid "The first comment on a new site." +msgstr "Der erste Kommentar auf einer neuen Website." + +#: wp-admin/network/settings.php:329 +msgid "The first page on a new site." +msgstr "Die erste Seite einer neuen Website." + +#: wp-admin/network/settings.php:319 +msgid "The first post on a new site." +msgstr "Der erste Beitrag einer neuen Website." + +#: wp-admin/network/upgrade.php:73 +msgid "All done!" +msgstr "Alles fertig!" + +#: wp-admin/network/settings.php:206 +msgid "Both sites and user accounts can be registered" +msgstr "Sowohl Websites, als auch Benutzerkonten können registriert werden" + +#: wp-admin/network/settings.php:205 +msgid "Logged in users may register new sites" +msgstr "Angemeldete Benutzer können neue Websites registrieren" + +#: wp-admin/network/settings.php:204 +msgid "User accounts may be registered" +msgstr "Benutzerkonten können registriert werden" + +#: wp-admin/network/settings.php:203 +msgid "Registration is disabled" +msgstr "Registrierung ist deaktiviert" + +#: wp-admin/network/settings.php:476 +msgid "Enable administration menus" +msgstr "Administrations-Menüs aktivieren für:" + +#: wp-admin/network/settings.php:371 +msgid "Upload Settings" +msgstr "Upload-Einstellungen" + +#: wp-admin/network/settings.php:290 +msgid "New Site Settings" +msgstr "Einstellungen für neue Website" + +#: wp-admin/network/settings.php:190 +msgid "Registration Settings" +msgstr "Registrierungs-Einstellungen" + +#: wp-admin/network/settings.php:150 +msgid "Operational Settings" +msgstr "Grundeinstellungen" + +#: wp-admin/network/site-new.php:91 +msgid "Missing email address." +msgstr "Fehlende E-Mail-Adresse." + +#: wp-admin/network/site-new.php:87 +msgid "Missing or invalid site address." +msgstr "Fehlende oder ungültige Website-Adresse." + +#: wp-admin/network/upgrade.php:124 +msgid "Next Sites" +msgstr "Weitere Websites" + +#: wp-admin/network/settings.php:374 +msgid "Site upload space" +msgstr "Speicherplatz pro Website" + +#: wp-admin/network/settings.php:299 +msgid "The welcome email sent to new site owners." +msgstr "Diese E-Mail wird an Benutzer gesendet, die eine neue Website registriert haben." + +#: wp-admin/network/settings.php:247 +msgid "Users are not allowed to register these sites. Separate names by spaces." +msgstr "Benutzer dürfen diese Namen nicht als Website-Adresse verwenden. Trenne die einzelnen Namen mit einem Leerzeichen." + +#: wp-admin/network/settings.php:231 +msgid "Send the network admin an email notification every time someone registers a site or user account" +msgstr "Dem Administrator des Netzwerks jedes mal eine E-Mail-Benachrichtigung senden, wenn jemand eine Website oder ein Benutzerkonto registriert" + +#: wp-admin/includes/network.php:365 wp-admin/network/settings.php:160 +msgid "Network Admin Email" +msgstr "E-Mail-Adresse Netzwerkadministrator" + +#. translators: New site notification email subject. %s: Network title. +#: wp-admin/network/site-new.php:152 +msgid "[%s] New Site Created" +msgstr "[%s] Neue Website wurde erstellt" + +#: wp-admin/network/site-new.php:287 +msgid "A new user will be created if the above email address is not in the database." +msgstr "Es wird ein neuer Benutzer angelegt, sofern nicht schon ein Benutzer mit dieser E-Mail-Adresse vorhanden ist." + +#: wp-admin/network/site-new.php:283 +msgid "Admin Email" +msgstr "Administrator E-Mail-Adresse" + +#: wp-admin/network/site-new.php:299 +msgid "Add Site" +msgstr "Website erstellen" + +#: wp-admin/network/settings.php:426 +msgid "Default Language" +msgstr "Standardsprache" + +#: wp-admin/network/settings.php:402 +msgid "Max upload file size" +msgstr "Maximale Dateigröße eines Uploads" + +#: wp-admin/network/settings.php:362 +msgid "First Comment URL" +msgstr "URL des ersten Kommentars" + +#: wp-admin/network/settings.php:344 +msgid "First Comment Author" +msgstr "Autor des ersten Kommentars" + +#: wp-admin/network/settings.php:334 +msgid "First Comment" +msgstr "Erster Kommentar" + +#: wp-admin/network/settings.php:324 +msgid "First Page" +msgstr "Erste Seite" + +#: wp-admin/network/settings.php:309 +msgid "The welcome email sent to new users." +msgstr "Diese E-Mail wird an jeden neu registrierten Benutzer gesendet." + +#: wp-admin/network/settings.php:304 +msgid "Welcome User Email" +msgstr "Willkommens-E-Mail für Benutzer" + +#: wp-admin/network/settings.php:294 +msgid "Welcome Email" +msgstr "Willkommens-E-Mail" + +#: wp-admin/network/settings.php:272 +msgid "Banned Email Domains" +msgstr "Geblockte E-Mail-Domains" + +#: wp-admin/network/settings.php:253 +msgid "Limited Email Registrations" +msgstr "Registrierung für E-Mail-Domains limitieren" + +#: wp-admin/network/settings.php:243 +msgid "Banned Names" +msgstr "Verbotene Namen für Website-Adressen" + +#: wp-admin/network/settings.php:236 +msgid "Add New Users" +msgstr "Neue Benutzer hinzufügen" + +#: wp-admin/network/settings.php:224 +msgid "Registration notification" +msgstr "Registrierungs-Benachrichtigung" + +#: wp-admin/network/settings.php:193 +msgid "Allow new registrations" +msgstr "Neue Registrierungen erlauben" + +#: wp-admin/network/site-users.php:272 +msgid "Duplicated username or email address." +msgstr "Schon vorhandener Benutzername oder vorhandene E-Mail-Adresse." + +#: wp-admin/network/user-new.php:41 +msgid "Cannot create an empty user." +msgstr "Es kann kein leerer Benutzer angelegt werden." + +#: wp-admin/network/sites.php:121 wp-admin/network/sites.php:208 +msgid "Confirm" +msgstr "Bestätigen" \ No newline at end of file diff --git a/web/app/languages/continents-cities-de_DE.mo b/web/app/languages/continents-cities-de_DE.mo new file mode 100644 index 0000000..118c2a8 Binary files /dev/null and b/web/app/languages/continents-cities-de_DE.mo differ diff --git a/web/app/languages/continents-cities-de_DE.po b/web/app/languages/continents-cities-de_DE.po new file mode 100644 index 0000000..c71da4c --- /dev/null +++ b/web/app/languages/continents-cities-de_DE.po @@ -0,0 +1,2117 @@ +# Translation of WordPress - 5.5.x - Development - Continents & Cities in German +# This file is distributed under the same license as the WordPress - 5.5.x - Development - Continents & Cities package. +msgid "" +msgstr "" +"PO-Revision-Date: 2018-07-18 12:04:30+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/3.0.0-alpha.2\n" +"Language: de\n" +"Project-Id-Version: WordPress - 5.5.x - Development - Continents & Cities\n" + +#: wp-admin/includes/continents-cities.php:478 +msgid "Saratov" +msgstr "Saratow" + +#: wp-admin/includes/continents-cities.php:353 +msgid "Yangon" +msgstr "Rangun" + +#: wp-admin/includes/continents-cities.php:287 +msgid "Famagusta" +msgstr "Famagusta" + +#: wp-admin/includes/continents-cities.php:266 +msgid "Atyrau" +msgstr "Atyrau" + +#: wp-admin/includes/continents-cities.php:204 +msgid "Punta Arenas" +msgstr "Punta Arenas" + +#: wp-admin/includes/continents-cities.php:542 +msgid "Pohnpei" +msgstr "Pohnpei" + +#: wp-admin/includes/continents-cities.php:516 +msgid "Chuuk" +msgstr "Chuuk" + +#: wp-admin/includes/continents-cities.php:514 +msgid "Bougainville" +msgstr "Bougainville" + +#: wp-admin/includes/continents-cities.php:486 +msgid "Ulyanovsk" +msgstr "Uljanowsk" + +#: wp-admin/includes/continents-cities.php:457 +msgid "Kirov" +msgstr "Kirow" + +#: wp-admin/includes/continents-cities.php:445 +msgid "Busingen" +msgstr "Büsingen" + +#: wp-admin/includes/continents-cities.php:436 +msgid "Astrakhan" +msgstr "Astrachan" + +#: wp-admin/includes/continents-cities.php:349 +msgid "Ust-Nera" +msgstr "Ust-Nera" + +#: wp-admin/includes/continents-cities.php:344 +msgid "Tomsk" +msgstr "Tomsk" + +#: wp-admin/includes/continents-cities.php:335 +msgid "Srednekolymsk" +msgstr "Srednekolymsk" + +#: wp-admin/includes/continents-cities.php:318 +msgid "Novokuznetsk" +msgstr "Nowokusnezk" + +#: wp-admin/includes/continents-cities.php:305 +msgid "Khandyga" +msgstr "Chandyga" + +#: wp-admin/includes/continents-cities.php:303 +msgid "Kathmandu" +msgstr "Kathmandu" + +#: wp-admin/includes/continents-cities.php:290 +msgid "Hebron" +msgstr "Hebron" + +#: wp-admin/includes/continents-cities.php:276 +msgid "Chita" +msgstr "Tschita" + +#: wp-admin/includes/continents-cities.php:271 +msgid "Barnaul" +msgstr "Barnaul" + +#: wp-admin/includes/continents-cities.php:251 +msgid "Troll" +msgstr "Troll" + +#: wp-admin/includes/continents-cities.php:244 +msgid "Macquarie" +msgstr "Macquarie" + +#: wp-admin/includes/continents-cities.php:219 +msgid "Sitka" +msgstr "Sitka" + +#: wp-admin/includes/continents-cities.php:213 +msgid "Santarem" +msgstr "Santarem" + +#: wp-admin/includes/continents-cities.php:212 +msgid "Santa Isabel" +msgstr "Santa Isabel" + +#: wp-admin/includes/continents-cities.php:194 +msgid "Ojinaga" +msgstr "Ojinaga" + +#: wp-admin/includes/continents-cities.php:191 +msgid "Beulah" +msgstr "Beulah" + +#: wp-admin/includes/continents-cities.php:177 +msgid "Metlakatla" +msgstr "Metlakatla" + +#: wp-admin/includes/continents-cities.php:172 +msgid "Matamoros" +msgstr "Matamoros" + +#: wp-admin/includes/continents-cities.php:166 +msgid "Lower Princes" +msgstr "Lower Princes" + +#: wp-admin/includes/continents-cities.php:161 +msgid "Kralendijk" +msgstr "Kralendijk" + +#: wp-admin/includes/continents-cities.php:127 +msgid "Fort Nelson" +msgstr "Fort Nelson" + +#: wp-admin/includes/continents-cities.php:114 +msgid "Creston" +msgstr "Creston" + +#: wp-admin/includes/continents-cities.php:93 +msgid "Bahia Banderas" +msgstr "Bahia Banderas" + +#: wp-admin/includes/continents-cities.php:83 +msgid "Salta" +msgstr "Salta" + +#: wp-admin/includes/continents-cities.php:39 +msgid "Juba" +msgstr "Juba" + +#: wp-admin/includes/continents-cities.php:554 +msgid "Yap" +msgstr "Yap" + +#: wp-admin/includes/continents-cities.php:553 +msgid "Wallis" +msgstr "Uvea" + +#: wp-admin/includes/continents-cities.php:552 +msgid "Wake" +msgstr "Wake" + +#: wp-admin/includes/continents-cities.php:551 +msgid "Truk" +msgstr "Chuuk" + +#: wp-admin/includes/continents-cities.php:550 +msgid "Tongatapu" +msgstr "Tongatapu" + +#: wp-admin/includes/continents-cities.php:549 +msgid "Tarawa" +msgstr "Tarawa" + +#: wp-admin/includes/continents-cities.php:548 +msgid "Tahiti" +msgstr "Tahiti" + +#: wp-admin/includes/continents-cities.php:547 +msgid "Samoa" +msgstr "Samoa" + +#: wp-admin/includes/continents-cities.php:546 +msgid "Saipan" +msgstr "Saipan" + +#: wp-admin/includes/continents-cities.php:545 +msgid "Rarotonga" +msgstr "Rarotonga" + +#: wp-admin/includes/continents-cities.php:544 +msgid "Port Moresby" +msgstr "Port Moresby" + +#: wp-admin/includes/continents-cities.php:543 +msgid "Ponape" +msgstr "Ponape" + +#: wp-admin/includes/continents-cities.php:541 +msgid "Pitcairn" +msgstr "Pitcairninseln" + +#: wp-admin/includes/continents-cities.php:540 +msgid "Palau" +msgstr "Palau" + +#: wp-admin/includes/continents-cities.php:539 +msgid "Pago Pago" +msgstr "Pago Pago" + +#: wp-admin/includes/continents-cities.php:538 +msgid "Noumea" +msgstr "Noumea" + +#: wp-admin/includes/continents-cities.php:537 +msgid "Norfolk" +msgstr "Norfolk" + +#: wp-admin/includes/continents-cities.php:536 +msgid "Niue" +msgstr "Niue" + +#: wp-admin/includes/continents-cities.php:535 +msgid "Nauru" +msgstr "Nauru" + +#: wp-admin/includes/continents-cities.php:534 +msgid "Midway" +msgstr "Midway" + +#: wp-admin/includes/continents-cities.php:533 +msgid "Marquesas" +msgstr "Marquesas" + +#: wp-admin/includes/continents-cities.php:532 +msgid "Majuro" +msgstr "Majuro" + +#: wp-admin/includes/continents-cities.php:531 +msgid "Kwajalein" +msgstr "Kwajalein" + +#: wp-admin/includes/continents-cities.php:530 +msgid "Kosrae" +msgstr "Kosrae" + +#: wp-admin/includes/continents-cities.php:529 +msgid "Kiritimati" +msgstr "Kiritimati" + +#: wp-admin/includes/continents-cities.php:528 +msgid "Johnston" +msgstr "Johnston" + +#: wp-admin/includes/continents-cities.php:527 +msgid "Honolulu" +msgstr "Honolulu" + +#: wp-admin/includes/continents-cities.php:526 +msgid "Guam" +msgstr "Guam" + +#: wp-admin/includes/continents-cities.php:525 +msgid "Guadalcanal" +msgstr "Guadalcanal" + +#: wp-admin/includes/continents-cities.php:524 +msgid "Gambier" +msgstr "Gambier" + +#: wp-admin/includes/continents-cities.php:523 +msgid "Galapagos" +msgstr "Galapagos-Inseln" + +#: wp-admin/includes/continents-cities.php:522 +msgid "Funafuti" +msgstr "Funafuti" + +#: wp-admin/includes/continents-cities.php:521 +msgid "Fiji" +msgstr "Fidschi" + +#: wp-admin/includes/continents-cities.php:520 +msgid "Fakaofo" +msgstr "Fakaofo" + +#: wp-admin/includes/continents-cities.php:519 +msgid "Enderbury" +msgstr "Enderbury" + +#: wp-admin/includes/continents-cities.php:518 +msgid "Efate" +msgstr "Efate" + +#: wp-admin/includes/continents-cities.php:517 +msgid "Easter" +msgstr "Easter" + +#: wp-admin/includes/continents-cities.php:515 +msgid "Chatham" +msgstr "Chatham" + +#: wp-admin/includes/continents-cities.php:513 +msgid "Auckland" +msgstr "Auckland" + +#: wp-admin/includes/continents-cities.php:512 +msgid "Apia" +msgstr "Apia" + +#: wp-admin/includes/continents-cities.php:511 +msgid "Pacific" +msgstr "Pazifik" + +#: wp-admin/includes/continents-cities.php:509 +msgid "Reunion" +msgstr "Reunion" + +#: wp-admin/includes/continents-cities.php:508 +msgid "Mayotte" +msgstr "Mayotte" + +#: wp-admin/includes/continents-cities.php:507 +msgid "Mauritius" +msgstr "Mauritius" + +#: wp-admin/includes/continents-cities.php:506 +msgid "Maldives" +msgstr "Malediven" + +#: wp-admin/includes/continents-cities.php:505 +msgid "Mahe" +msgstr "Mahe" + +#: wp-admin/includes/continents-cities.php:504 +msgid "Kerguelen" +msgstr "Kerguelen" + +#: wp-admin/includes/continents-cities.php:503 +msgid "Comoro" +msgstr "Comoro" + +#: wp-admin/includes/continents-cities.php:502 +msgid "Cocos" +msgstr "Cocos" + +#: wp-admin/includes/continents-cities.php:501 +msgid "Christmas" +msgstr "Christmas" + +#: wp-admin/includes/continents-cities.php:500 +msgid "Chagos" +msgstr "Chagos" + +#: wp-admin/includes/continents-cities.php:499 +msgid "Antananarivo" +msgstr "Antananarivo" + +#: wp-admin/includes/continents-cities.php:498 +msgid "Indian" +msgstr "Indian" + +#: wp-admin/includes/continents-cities.php:496 +msgid "Zurich" +msgstr "Zürich" + +#: wp-admin/includes/continents-cities.php:495 +msgid "Zaporozhye" +msgstr "Saporischschja" + +#: wp-admin/includes/continents-cities.php:494 +msgid "Zagreb" +msgstr "Zagreb" + +#: wp-admin/includes/continents-cities.php:493 +msgid "Warsaw" +msgstr "Warschau" + +#: wp-admin/includes/continents-cities.php:492 +msgid "Volgograd" +msgstr "Wolgograd" + +#: wp-admin/includes/continents-cities.php:491 +msgid "Vilnius" +msgstr "Vilnius" + +#: wp-admin/includes/continents-cities.php:490 +msgid "Vienna" +msgstr "Wien" + +#: wp-admin/includes/continents-cities.php:489 +msgid "Vatican" +msgstr "Vatikanstadt" + +#: wp-admin/includes/continents-cities.php:488 +msgid "Vaduz" +msgstr "Vaduz" + +#: wp-admin/includes/continents-cities.php:487 +msgid "Uzhgorod" +msgstr "Uschhorod" + +#: wp-admin/includes/continents-cities.php:485 +msgid "Tiraspol" +msgstr "Tiraspol" + +#: wp-admin/includes/continents-cities.php:484 +msgid "Tirane" +msgstr "Tirana" + +#: wp-admin/includes/continents-cities.php:483 +msgid "Tallinn" +msgstr "Tallinn" + +#: wp-admin/includes/continents-cities.php:482 +msgid "Stockholm" +msgstr "Stockholm" + +#: wp-admin/includes/continents-cities.php:481 +msgid "Sofia" +msgstr "Sofia" + +#: wp-admin/includes/continents-cities.php:480 +msgid "Skopje" +msgstr "Skopje" + +#: wp-admin/includes/continents-cities.php:479 +msgid "Simferopol" +msgstr "Simferopol" + +#: wp-admin/includes/continents-cities.php:477 +msgid "Sarajevo" +msgstr "Sarajevo" + +#: wp-admin/includes/continents-cities.php:476 +msgid "San Marino" +msgstr "San Marino" + +#: wp-admin/includes/continents-cities.php:475 +msgid "Samara" +msgstr "Samara" + +#: wp-admin/includes/continents-cities.php:474 +msgid "Rome" +msgstr "Rom" + +#: wp-admin/includes/continents-cities.php:473 +msgid "Riga" +msgstr "Riga" + +#: wp-admin/includes/continents-cities.php:472 +msgid "Prague" +msgstr "Prag" + +#: wp-admin/includes/continents-cities.php:471 +msgid "Podgorica" +msgstr "Podgorica" + +#: wp-admin/includes/continents-cities.php:470 +msgid "Paris" +msgstr "Paris" + +#: wp-admin/includes/continents-cities.php:469 +msgid "Oslo" +msgstr "Oslo" + +#: wp-admin/includes/continents-cities.php:467 +msgid "Moscow" +msgstr "Moskau" + +#: wp-admin/includes/continents-cities.php:466 +msgid "Monaco" +msgstr "Monaco" + +#: wp-admin/includes/continents-cities.php:465 +msgid "Minsk" +msgstr "Minsk" + +#: wp-admin/includes/continents-cities.php:464 +msgid "Mariehamn" +msgstr "Mariehamn" + +#: wp-admin/includes/continents-cities.php:463 +msgid "Malta" +msgstr "Malta" + +#: wp-admin/includes/continents-cities.php:462 +msgid "Madrid" +msgstr "Madrid" + +#: wp-admin/includes/continents-cities.php:461 +msgid "Luxembourg" +msgstr "Luxemburg" + +#: wp-admin/includes/continents-cities.php:460 +msgid "London" +msgstr "London" + +#: wp-admin/includes/continents-cities.php:459 +msgid "Ljubljana" +msgstr "Ljubljana" + +#: wp-admin/includes/continents-cities.php:458 +msgid "Lisbon" +msgstr "Lissabon" + +#: wp-admin/includes/continents-cities.php:456 +msgid "Kiev" +msgstr "Kiew" + +#: wp-admin/includes/continents-cities.php:455 +msgid "Kaliningrad" +msgstr "Kaliningrad" + +#: wp-admin/includes/continents-cities.php:454 +msgid "Jersey" +msgstr "Jersey" + +#: wp-admin/includes/continents-cities.php:452 +msgid "Isle of Man" +msgstr "Isle of Man" + +#: wp-admin/includes/continents-cities.php:451 +msgid "Helsinki" +msgstr "Helsinki" + +#: wp-admin/includes/continents-cities.php:450 +msgid "Guernsey" +msgstr "Guernsey" + +#: wp-admin/includes/continents-cities.php:449 +msgid "Gibraltar" +msgstr "Gibraltar" + +#: wp-admin/includes/continents-cities.php:448 +msgid "Dublin" +msgstr "Dublin" + +#: wp-admin/includes/continents-cities.php:447 +msgid "Copenhagen" +msgstr "Kopenhagen" + +#: wp-admin/includes/continents-cities.php:446 +msgid "Chisinau" +msgstr "Chisinau" + +#: wp-admin/includes/continents-cities.php:444 +msgid "Budapest" +msgstr "Budapest" + +#: wp-admin/includes/continents-cities.php:443 +msgid "Bucharest" +msgstr "Bukarest" + +#: wp-admin/includes/continents-cities.php:442 +msgid "Brussels" +msgstr "Brüssel" + +#: wp-admin/includes/continents-cities.php:441 +msgid "Bratislava" +msgstr "Bratislava" + +#: wp-admin/includes/continents-cities.php:440 +msgid "Berlin" +msgstr "Berlin" + +#: wp-admin/includes/continents-cities.php:439 +msgid "Belgrade" +msgstr "Belgrad" + +#: wp-admin/includes/continents-cities.php:438 +msgid "Belfast" +msgstr "Belfast" + +#: wp-admin/includes/continents-cities.php:437 +msgid "Athens" +msgstr "Athen" + +#: wp-admin/includes/continents-cities.php:435 +msgid "Andorra" +msgstr "Andorra" + +#: wp-admin/includes/continents-cities.php:434 +msgid "Amsterdam" +msgstr "Amsterdam" + +#: wp-admin/includes/continents-cities.php:433 +msgid "Europe" +msgstr "Europa" + +#: wp-admin/includes/continents-cities.php:431 +msgid "Zulu" +msgstr "Zulu" + +#: wp-admin/includes/continents-cities.php:429 +msgid "UTC" +msgstr "UTC" + +#: wp-admin/includes/continents-cities.php:430 +msgid "Universal" +msgstr "Universal" + +#: wp-admin/includes/continents-cities.php:428 +msgid "UCT" +msgstr "UCT" + +#: wp-admin/includes/continents-cities.php:427 +msgid "Greenwich" +msgstr "Greenwich" + +#: wp-admin/includes/continents-cities.php:426 +msgid "GMT0" +msgstr "GMT0" + +#: wp-admin/includes/continents-cities.php:425 +msgid "GMT-9" +msgstr "GMT-9" + +#: wp-admin/includes/continents-cities.php:424 +msgid "GMT-8" +msgstr "GMT-8" + +#: wp-admin/includes/continents-cities.php:423 +msgid "GMT-7" +msgstr "GMT-7" + +#: wp-admin/includes/continents-cities.php:422 +msgid "GMT-6" +msgstr "GMT-6" + +#: wp-admin/includes/continents-cities.php:421 +msgid "GMT-5" +msgstr "GMT-5" + +#: wp-admin/includes/continents-cities.php:420 +msgid "GMT-4" +msgstr "GMT-4" + +#: wp-admin/includes/continents-cities.php:419 +msgid "GMT-3" +msgstr "GMT-3" + +#: wp-admin/includes/continents-cities.php:418 +msgid "GMT-2" +msgstr "GMT-2" + +#: wp-admin/includes/continents-cities.php:417 +msgid "GMT-14" +msgstr "GMT-14" + +#: wp-admin/includes/continents-cities.php:416 +msgid "GMT-13" +msgstr "GMT-13" + +#: wp-admin/includes/continents-cities.php:415 +msgid "GMT-12" +msgstr "GMT-12" + +#: wp-admin/includes/continents-cities.php:414 +msgid "GMT-11" +msgstr "GMT-11" + +#: wp-admin/includes/continents-cities.php:413 +msgid "GMT-10" +msgstr "GMT-10" + +#: wp-admin/includes/continents-cities.php:412 +msgid "GMT-1" +msgstr "GMT-1" + +#: wp-admin/includes/continents-cities.php:411 +msgid "GMT-0" +msgstr "GMT-0" + +#: wp-admin/includes/continents-cities.php:410 +msgid "GMT+9" +msgstr "GMT+9" + +#: wp-admin/includes/continents-cities.php:409 +msgid "GMT+8" +msgstr "GMT+8" + +#: wp-admin/includes/continents-cities.php:408 +msgid "GMT+7" +msgstr "GMT+7" + +#: wp-admin/includes/continents-cities.php:407 +msgid "GMT+6" +msgstr "GMT+6" + +#: wp-admin/includes/continents-cities.php:406 +msgid "GMT+5" +msgstr "GMT+5" + +#: wp-admin/includes/continents-cities.php:405 +msgid "GMT+4" +msgstr "GMT+4" + +#: wp-admin/includes/continents-cities.php:404 +msgid "GMT+3" +msgstr "GMT+3" + +#: wp-admin/includes/continents-cities.php:403 +msgid "GMT+2" +msgstr "GMT+2" + +#: wp-admin/includes/continents-cities.php:402 +msgid "GMT+12" +msgstr "GMT+12" + +#: wp-admin/includes/continents-cities.php:401 +msgid "GMT+11" +msgstr "GMT+11" + +#: wp-admin/includes/continents-cities.php:400 +msgid "GMT+10" +msgstr "GMT+10" + +#: wp-admin/includes/continents-cities.php:399 +msgid "GMT+1" +msgstr "GMT+1" + +#: wp-admin/includes/continents-cities.php:398 +msgid "GMT+0" +msgstr "GMT+0" + +#: wp-admin/includes/continents-cities.php:397 +msgid "GMT" +msgstr "GMT" + +#: wp-admin/includes/continents-cities.php:396 +msgid "Etc" +msgstr "Etc" + +#: wp-admin/includes/continents-cities.php:394 +msgid "Yancowinna" +msgstr "Yancowinna" + +#: wp-admin/includes/continents-cities.php:393 +msgid "West" +msgstr "West" + +#: wp-admin/includes/continents-cities.php:392 +msgid "Victoria" +msgstr "Victoria" + +#: wp-admin/includes/continents-cities.php:391 +msgid "Tasmania" +msgstr "Tasmanien" + +#: wp-admin/includes/continents-cities.php:390 +msgid "Sydney" +msgstr "Sydney" + +#: wp-admin/includes/continents-cities.php:389 +msgid "South" +msgstr "Süd" + +#: wp-admin/includes/continents-cities.php:388 +msgid "Queensland" +msgstr "Queensland" + +#: wp-admin/includes/continents-cities.php:387 +msgid "Perth" +msgstr "Perth" + +#: wp-admin/includes/continents-cities.php:385 +msgid "NSW" +msgstr "New South Wales" + +#: wp-admin/includes/continents-cities.php:386 +msgid "North" +msgstr "Nord" + +#: wp-admin/includes/continents-cities.php:384 +msgid "Melbourne" +msgstr "Melbourne" + +#: wp-admin/includes/continents-cities.php:383 +msgid "Lord Howe" +msgstr "Lord Howe" + +#: wp-admin/includes/continents-cities.php:382 +msgid "Lindeman" +msgstr "Lindeman-Insel" + +#: wp-admin/includes/continents-cities.php:381 +msgid "LHI" +msgstr "Lord-Howe-Insel" + +#: wp-admin/includes/continents-cities.php:380 +msgid "Hobart" +msgstr "Hobart" + +#: wp-admin/includes/continents-cities.php:379 +msgid "Eucla" +msgstr "Eucla" + +#: wp-admin/includes/continents-cities.php:378 +msgid "Darwin" +msgstr "Darwin" + +#: wp-admin/includes/continents-cities.php:377 +msgid "Currie" +msgstr "Currie" + +#: wp-admin/includes/continents-cities.php:376 +msgid "Canberra" +msgstr "Canberra" + +#: wp-admin/includes/continents-cities.php:375 +msgid "Broken Hill" +msgstr "Broken Hill" + +#: wp-admin/includes/continents-cities.php:374 +msgid "Brisbane" +msgstr "Brisbane" + +#: wp-admin/includes/continents-cities.php:373 +msgid "Adelaide" +msgstr "Adelaide" + +#: wp-admin/includes/continents-cities.php:372 +msgid "ACT" +msgstr "ACT" + +#: wp-admin/includes/continents-cities.php:371 +msgid "Australia" +msgstr "Australien" + +#: wp-admin/includes/continents-cities.php:369 +msgid "Stanley" +msgstr "Stanley" + +#: wp-admin/includes/continents-cities.php:368 +msgid "St Helena" +msgstr "St. Helena" + +#: wp-admin/includes/continents-cities.php:367 +msgid "South Georgia" +msgstr "Südgeorgien" + +#: wp-admin/includes/continents-cities.php:366 +msgid "Reykjavik" +msgstr "Reykjavik" + +#: wp-admin/includes/continents-cities.php:365 +msgid "Madeira" +msgstr "Madeira" + +#: wp-admin/includes/continents-cities.php:364 +msgid "Jan Mayen" +msgstr "Jan Mayen" + +#: wp-admin/includes/continents-cities.php:363 +msgid "Faroe" +msgstr "Färöer" + +#: wp-admin/includes/continents-cities.php:362 +msgid "Faeroe" +msgstr "Färöer" + +#: wp-admin/includes/continents-cities.php:361 +msgid "Cape Verde" +msgstr "Kap Verde" + +#: wp-admin/includes/continents-cities.php:360 +msgid "Canary" +msgstr "Kanarische Inseln" + +#: wp-admin/includes/continents-cities.php:359 +msgid "Bermuda" +msgstr "Bermuda" + +#: wp-admin/includes/continents-cities.php:358 +msgid "Azores" +msgstr "Azoren" + +#: wp-admin/includes/continents-cities.php:357 +msgid "Atlantic" +msgstr "Atlantik" + +#: wp-admin/includes/continents-cities.php:355 +msgid "Yerevan" +msgstr "Eriwan" + +#: wp-admin/includes/continents-cities.php:354 +msgid "Yekaterinburg" +msgstr "Jekaterinburg" + +#: wp-admin/includes/continents-cities.php:352 +msgid "Yakutsk" +msgstr "Jakutsk" + +#: wp-admin/includes/continents-cities.php:351 +msgid "Vladivostok" +msgstr "Wladiwostok" + +#: wp-admin/includes/continents-cities.php:350 +msgid "Vientiane" +msgstr "Vientiane" + +#: wp-admin/includes/continents-cities.php:348 +msgid "Urumqi" +msgstr "Ürümqi" + +#: wp-admin/includes/continents-cities.php:347 +msgid "Ulan Bator" +msgstr "Ulan Bator" + +#: wp-admin/includes/continents-cities.php:346 +msgid "Ulaanbaatar" +msgstr "Ulan-Bator" + +#: wp-admin/includes/continents-cities.php:345 +msgid "Ujung Pandang" +msgstr "Makassar" + +#: wp-admin/includes/continents-cities.php:343 +msgid "Tokyo" +msgstr "Tokio" + +#: wp-admin/includes/continents-cities.php:342 +msgid "Thimphu" +msgstr "Thimphu" + +#: wp-admin/includes/continents-cities.php:341 +msgid "Thimbu" +msgstr "Thimphu" + +#: wp-admin/includes/continents-cities.php:340 +msgid "Tel Aviv" +msgstr "Tel Aviv" + +#: wp-admin/includes/continents-cities.php:339 +msgid "Tehran" +msgstr "Teheran" + +#: wp-admin/includes/continents-cities.php:338 +msgid "Tbilisi" +msgstr "Tiflis" + +#: wp-admin/includes/continents-cities.php:337 +msgid "Tashkent" +msgstr "Taschkent" + +#: wp-admin/includes/continents-cities.php:336 +msgid "Taipei" +msgstr "Taipeh" + +#: wp-admin/includes/continents-cities.php:334 +msgid "Singapore" +msgstr "Singapur" + +#: wp-admin/includes/continents-cities.php:333 +msgid "Shanghai" +msgstr "Shanghai" + +#: wp-admin/includes/continents-cities.php:332 +msgid "Seoul" +msgstr "Seoul" + +#: wp-admin/includes/continents-cities.php:331 +msgid "Samarkand" +msgstr "Samarkand" + +#: wp-admin/includes/continents-cities.php:330 +msgid "Sakhalin" +msgstr "Sachalin" + +#: wp-admin/includes/continents-cities.php:329 +msgid "Saigon" +msgstr "Saigon" + +#: wp-admin/includes/continents-cities.php:328 +msgid "Riyadh" +msgstr "Riad" + +#: wp-admin/includes/continents-cities.php:327 +msgid "Rangoon" +msgstr "Rangun" + +#: wp-admin/includes/continents-cities.php:326 +msgid "Qyzylorda" +msgstr "Qysylorda" + +#: wp-admin/includes/continents-cities.php:325 +msgid "Qatar" +msgstr "Katar" + +#: wp-admin/includes/continents-cities.php:324 +msgid "Pyongyang" +msgstr "Pjöngjang" + +#: wp-admin/includes/continents-cities.php:323 +msgid "Pontianak" +msgstr "Pontianak" + +#: wp-admin/includes/continents-cities.php:322 +msgid "Phnom Penh" +msgstr "Phnom Penh" + +#: wp-admin/includes/continents-cities.php:321 +msgid "Oral" +msgstr "Oral" + +#: wp-admin/includes/continents-cities.php:320 +msgid "Omsk" +msgstr "Omsk" + +#: wp-admin/includes/continents-cities.php:319 +msgid "Novosibirsk" +msgstr "Nowosibirsk" + +#: wp-admin/includes/continents-cities.php:317 +#: wp-admin/includes/continents-cities.php:468 +msgid "Nicosia" +msgstr "Nikosia" + +#: wp-admin/includes/continents-cities.php:316 +msgid "Muscat" +msgstr "Maskat" + +#: wp-admin/includes/continents-cities.php:315 +msgid "Manila" +msgstr "Manila" + +#: wp-admin/includes/continents-cities.php:314 +msgid "Makassar" +msgstr "Makassar" + +#: wp-admin/includes/continents-cities.php:313 +msgid "Magadan" +msgstr "Magadan" + +#: wp-admin/includes/continents-cities.php:312 +msgid "Macau" +msgstr "Macao" + +#: wp-admin/includes/continents-cities.php:311 +msgid "Macao" +msgstr "Macau" + +#: wp-admin/includes/continents-cities.php:310 +msgid "Kuwait" +msgstr "Kuwait" + +#: wp-admin/includes/continents-cities.php:309 +msgid "Kuching" +msgstr "Kuching" + +#: wp-admin/includes/continents-cities.php:308 +msgid "Kuala Lumpur" +msgstr "Kuala Lumpur" + +#: wp-admin/includes/continents-cities.php:307 +msgid "Krasnoyarsk" +msgstr "Krasnojarsk" + +#: wp-admin/includes/continents-cities.php:306 +msgid "Kolkata" +msgstr "Kolkata" + +#: wp-admin/includes/continents-cities.php:304 +msgid "Katmandu" +msgstr "Kathmandu" + +#: wp-admin/includes/continents-cities.php:302 +msgid "Kashgar" +msgstr "Kaxgar" + +#: wp-admin/includes/continents-cities.php:301 +msgid "Karachi" +msgstr "Karatschi" + +#: wp-admin/includes/continents-cities.php:300 +msgid "Kamchatka" +msgstr "Kamtschatka" + +#: wp-admin/includes/continents-cities.php:299 +msgid "Kabul" +msgstr "Kabul" + +#: wp-admin/includes/continents-cities.php:298 +msgid "Jerusalem" +msgstr "Jerusalem" + +#: wp-admin/includes/continents-cities.php:297 +msgid "Jayapura" +msgstr "Jayapura" + +#: wp-admin/includes/continents-cities.php:296 +msgid "Jakarta" +msgstr "Jakarta" + +#: wp-admin/includes/continents-cities.php:295 +#: wp-admin/includes/continents-cities.php:453 +msgid "Istanbul" +msgstr "Istanbul" + +#: wp-admin/includes/continents-cities.php:294 +msgid "Irkutsk" +msgstr "Irkutsk" + +#: wp-admin/includes/continents-cities.php:293 +msgid "Hovd" +msgstr "Chowd" + +#: wp-admin/includes/continents-cities.php:292 +msgid "Hong Kong" +msgstr "Hongkong" + +#: wp-admin/includes/continents-cities.php:291 +msgid "Ho Chi Minh" +msgstr "Ho-Chi-Minh-Stadt" + +#: wp-admin/includes/continents-cities.php:289 +msgid "Harbin" +msgstr "Harbin" + +#: wp-admin/includes/continents-cities.php:288 +msgid "Gaza" +msgstr "Gaza" + +#: wp-admin/includes/continents-cities.php:286 +msgid "Dushanbe" +msgstr "Duschanbe" + +#: wp-admin/includes/continents-cities.php:285 +msgid "Dubai" +msgstr "Dubai" + +#: wp-admin/includes/continents-cities.php:284 +msgid "Dili" +msgstr "Dili" + +#: wp-admin/includes/continents-cities.php:283 +msgid "Dhaka" +msgstr "Dhaka" + +#: wp-admin/includes/continents-cities.php:282 +msgid "Damascus" +msgstr "Damaskus" + +#: wp-admin/includes/continents-cities.php:281 +msgid "Dacca" +msgstr "Dhaka" + +#: wp-admin/includes/continents-cities.php:280 +msgid "Colombo" +msgstr "Colombo" + +#: wp-admin/includes/continents-cities.php:279 +msgid "Chungking" +msgstr "Chongqing" + +#: wp-admin/includes/continents-cities.php:278 +msgid "Chongqing" +msgstr "Chongqing" + +#: wp-admin/includes/continents-cities.php:277 +msgid "Choibalsan" +msgstr "Tschoibalsan" + +#: wp-admin/includes/continents-cities.php:275 +msgid "Calcutta" +msgstr "Kalkutta" + +#: wp-admin/includes/continents-cities.php:274 +msgid "Brunei" +msgstr "Brunei" + +#: wp-admin/includes/continents-cities.php:273 +msgid "Bishkek" +msgstr "Bischkek" + +#: wp-admin/includes/continents-cities.php:272 +msgid "Beirut" +msgstr "Beirut" + +#: wp-admin/includes/continents-cities.php:270 +msgid "Bangkok" +msgstr "Bangkok" + +#: wp-admin/includes/continents-cities.php:269 +msgid "Baku" +msgstr "Baku" + +#: wp-admin/includes/continents-cities.php:268 +msgid "Bahrain" +msgstr "Bahrain" + +#: wp-admin/includes/continents-cities.php:267 +msgid "Baghdad" +msgstr "Bagdad" + +#: wp-admin/includes/continents-cities.php:265 +msgid "Ashkhabad" +msgstr "Askhabad" + +#: wp-admin/includes/continents-cities.php:264 +msgid "Ashgabat" +msgstr "Asgabat" + +#: wp-admin/includes/continents-cities.php:263 +msgid "Aqtobe" +msgstr "Aqtöbe" + +#: wp-admin/includes/continents-cities.php:262 +msgid "Aqtau" +msgstr "Aqtau" + +#: wp-admin/includes/continents-cities.php:261 +msgid "Anadyr" +msgstr "Anadyr" + +#: wp-admin/includes/continents-cities.php:260 +msgid "Amman" +msgstr "Amman" + +#: wp-admin/includes/continents-cities.php:259 +msgid "Almaty" +msgstr "Almaty" + +#: wp-admin/includes/continents-cities.php:258 +msgid "Aden" +msgstr "Aden" + +#: wp-admin/includes/continents-cities.php:257 +msgid "Asia" +msgstr "Asien" + +#: wp-admin/includes/continents-cities.php:255 +msgid "Longyearbyen" +msgstr "Longyearbyen" + +#: wp-admin/includes/continents-cities.php:254 +msgid "Arctic" +msgstr "Arktis" + +#: wp-admin/includes/continents-cities.php:252 +msgid "Vostok" +msgstr "Wladiwostok" + +#: wp-admin/includes/continents-cities.php:250 +msgid "Syowa" +msgstr "Showa-Station" + +#: wp-admin/includes/continents-cities.php:249 +msgid "South Pole" +msgstr "Südpol" + +#: wp-admin/includes/continents-cities.php:248 +msgid "Rothera" +msgstr "Rothera-Station" + +#: wp-admin/includes/continents-cities.php:247 +msgid "Palmer" +msgstr "Palmer (Alaska)" + +#: wp-admin/includes/continents-cities.php:246 +msgid "McMurdo" +msgstr "McMurdo Station" + +#: wp-admin/includes/continents-cities.php:245 +msgid "Mawson" +msgstr "Mawson-Station" + +#: wp-admin/includes/continents-cities.php:243 +msgid "DumontDUrville" +msgstr "Dumont d'Urville Station" + +#: wp-admin/includes/continents-cities.php:242 +msgid "Davis" +msgstr "Davis-Station" + +#: wp-admin/includes/continents-cities.php:241 +msgid "Casey" +msgstr "Casey-Station" + +#: wp-admin/includes/continents-cities.php:240 +msgid "Antarctica" +msgstr "Antarktika" + +#: wp-admin/includes/continents-cities.php:238 +msgid "Yellowknife" +msgstr "Yellowknife" + +#: wp-admin/includes/continents-cities.php:237 +msgid "Yakutat" +msgstr "Yakutat" + +#: wp-admin/includes/continents-cities.php:236 +msgid "Winnipeg" +msgstr "Winnipeg" + +#: wp-admin/includes/continents-cities.php:235 +msgid "Whitehorse" +msgstr "Whitehorse" + +#: wp-admin/includes/continents-cities.php:234 +msgid "Virgin" +msgstr "Jungferninseln" + +#: wp-admin/includes/continents-cities.php:233 +msgid "Vancouver" +msgstr "Vancouver" + +#: wp-admin/includes/continents-cities.php:232 +msgid "Tortola" +msgstr "Tortola" + +#: wp-admin/includes/continents-cities.php:231 +msgid "Toronto" +msgstr "Toronto" + +#: wp-admin/includes/continents-cities.php:230 +msgid "Tijuana" +msgstr "Tijuana" + +#: wp-admin/includes/continents-cities.php:229 +msgid "Thunder Bay" +msgstr "Thunder Bay" + +#: wp-admin/includes/continents-cities.php:228 +msgid "Thule" +msgstr "Morrell-Inseln" + +#: wp-admin/includes/continents-cities.php:227 +msgid "Tegucigalpa" +msgstr "Tegucigalpa" + +#: wp-admin/includes/continents-cities.php:226 +msgid "Swift Current" +msgstr "Swift Current" + +#: wp-admin/includes/continents-cities.php:225 +msgid "St Vincent" +msgstr "Saint Vincent" + +#: wp-admin/includes/continents-cities.php:224 +msgid "St Thomas" +msgstr "St Thomas" + +#: wp-admin/includes/continents-cities.php:223 +msgid "St Lucia" +msgstr "St. Lucia" + +#: wp-admin/includes/continents-cities.php:222 +msgid "St Kitts" +msgstr "St. Kitts" + +#: wp-admin/includes/continents-cities.php:221 +msgid "St Johns" +msgstr "Saint Johns" + +#: wp-admin/includes/continents-cities.php:220 +msgid "St Barthelemy" +msgstr "Sankt Bartholomäus" + +#: wp-admin/includes/continents-cities.php:218 +msgid "Shiprock" +msgstr "Shiprock" + +#: wp-admin/includes/continents-cities.php:217 +msgid "Scoresbysund" +msgstr "Ittoqqortoormiit" + +#: wp-admin/includes/continents-cities.php:216 +msgid "Sao Paulo" +msgstr "Sao Paulo" + +#: wp-admin/includes/continents-cities.php:215 +msgid "Santo Domingo" +msgstr "Santo Domingo" + +#: wp-admin/includes/continents-cities.php:214 +msgid "Santiago" +msgstr "Santiago" + +#: wp-admin/includes/continents-cities.php:211 +msgid "Rosario" +msgstr "Rosario" + +#: wp-admin/includes/continents-cities.php:210 +msgid "Rio Branco" +msgstr "Rio Branco" + +#: wp-admin/includes/continents-cities.php:209 +msgid "Resolute" +msgstr "Resolute" + +#: wp-admin/includes/continents-cities.php:208 +msgid "Regina" +msgstr "Regina" + +#: wp-admin/includes/continents-cities.php:207 +msgid "Recife" +msgstr "Recife" + +#: wp-admin/includes/continents-cities.php:206 +msgid "Rankin Inlet" +msgstr "Rankin Inlet" + +#: wp-admin/includes/continents-cities.php:205 +msgid "Rainy River" +msgstr "Rainy River" + +#: wp-admin/includes/continents-cities.php:203 +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#: wp-admin/includes/continents-cities.php:202 +msgid "Porto Velho" +msgstr "Porto Velho" + +#: wp-admin/includes/continents-cities.php:201 +msgid "Porto Acre" +msgstr "Porto Acre" + +#: wp-admin/includes/continents-cities.php:199 +msgid "Port of Spain" +msgstr "Port of Spain" + +#: wp-admin/includes/continents-cities.php:200 +msgid "Port-au-Prince" +msgstr "Port-au-Prince" + +#: wp-admin/includes/continents-cities.php:198 +msgid "Phoenix" +msgstr "Phoenix" + +#: wp-admin/includes/continents-cities.php:197 +msgid "Paramaribo" +msgstr "Paramaribo" + +#: wp-admin/includes/continents-cities.php:196 +msgid "Pangnirtung" +msgstr "Pangnirtung" + +#: wp-admin/includes/continents-cities.php:195 +msgid "Panama" +msgstr "Panama" + +#: wp-admin/includes/continents-cities.php:193 +msgid "New Salem" +msgstr "New Salem" + +#: wp-admin/includes/continents-cities.php:192 +msgid "Center" +msgstr "Center" + +#: wp-admin/includes/continents-cities.php:190 +msgid "North Dakota" +msgstr "North Dakota" + +#: wp-admin/includes/continents-cities.php:189 +msgid "Noronha" +msgstr "Noronha" + +#: wp-admin/includes/continents-cities.php:188 +msgid "Nome" +msgstr "Nome" + +#: wp-admin/includes/continents-cities.php:187 +msgid "Nipigon" +msgstr "Nipigon" + +#: wp-admin/includes/continents-cities.php:186 +msgid "New York" +msgstr "New York" + +#: wp-admin/includes/continents-cities.php:185 +msgid "Nassau" +msgstr "Nassau" + +#: wp-admin/includes/continents-cities.php:184 +msgid "Montserrat" +msgstr "Montserrat" + +#: wp-admin/includes/continents-cities.php:183 +msgid "Montreal" +msgstr "Montreal" + +#: wp-admin/includes/continents-cities.php:182 +msgid "Montevideo" +msgstr "Montevideo" + +#: wp-admin/includes/continents-cities.php:181 +msgid "Monterrey" +msgstr "Monterrey" + +#: wp-admin/includes/continents-cities.php:180 +msgid "Moncton" +msgstr "Moncton" + +#: wp-admin/includes/continents-cities.php:179 +msgid "Miquelon" +msgstr "Miquelon" + +#: wp-admin/includes/continents-cities.php:178 +msgid "Mexico City" +msgstr "Mexiko Stadt" + +#: wp-admin/includes/continents-cities.php:176 +msgid "Merida" +msgstr "Mérida" + +#: wp-admin/includes/continents-cities.php:175 +msgid "Menominee" +msgstr "Menominee" + +#: wp-admin/includes/continents-cities.php:173 +msgid "Mazatlan" +msgstr "Mazatlan" + +#: wp-admin/includes/continents-cities.php:171 +msgid "Martinique" +msgstr "Martinique" + +#: wp-admin/includes/continents-cities.php:170 +msgid "Marigot" +msgstr "Marigot" + +#: wp-admin/includes/continents-cities.php:169 +msgid "Manaus" +msgstr "Manaus" + +#: wp-admin/includes/continents-cities.php:168 +msgid "Managua" +msgstr "Managua" + +#: wp-admin/includes/continents-cities.php:167 +msgid "Maceio" +msgstr "Maceio" + +#: wp-admin/includes/continents-cities.php:164 +msgid "Los Angeles" +msgstr "Los Angeles" + +#: wp-admin/includes/continents-cities.php:163 +msgid "Lima" +msgstr "Lima" + +#: wp-admin/includes/continents-cities.php:162 +msgid "La Paz" +msgstr "La Paz" + +#: wp-admin/includes/continents-cities.php:160 +msgid "Knox IN" +msgstr "Knox Indiana" + +#: wp-admin/includes/continents-cities.php:159 +msgid "Monticello" +msgstr "Monticello" + +#: wp-admin/includes/continents-cities.php:158 +#: wp-admin/includes/continents-cities.php:165 +msgid "Louisville" +msgstr "Louisville" + +#: wp-admin/includes/continents-cities.php:157 +msgid "Kentucky" +msgstr "Kentucky" + +#: wp-admin/includes/continents-cities.php:156 +msgid "Juneau" +msgstr "Juneau" + +#: wp-admin/includes/continents-cities.php:154 +msgid "Jamaica" +msgstr "Jamaika" + +#: wp-admin/includes/continents-cities.php:153 +msgid "Iqaluit" +msgstr "Iqaluit" + +#: wp-admin/includes/continents-cities.php:152 +msgid "Inuvik" +msgstr "Inuvik" + +#: wp-admin/includes/continents-cities.php:150 +msgid "Winamac" +msgstr "Winamac" + +#: wp-admin/includes/continents-cities.php:149 +msgid "Vincennes" +msgstr "Vincennes" + +#: wp-admin/includes/continents-cities.php:148 +msgid "Vevay" +msgstr "Vevay" + +#: wp-admin/includes/continents-cities.php:147 +msgid "Tell City" +msgstr "Tell City" + +#: wp-admin/includes/continents-cities.php:146 +msgid "Petersburg" +msgstr "Petersburg" + +#: wp-admin/includes/continents-cities.php:145 +msgid "Marengo" +msgstr "Marengo" + +#: wp-admin/includes/continents-cities.php:144 +msgid "Knox" +msgstr "Knox" + +#: wp-admin/includes/continents-cities.php:143 +#: wp-admin/includes/continents-cities.php:151 +msgid "Indianapolis" +msgstr "Indianapolis" + +#: wp-admin/includes/continents-cities.php:142 +msgid "Indiana" +msgstr "Indiana" + +#: wp-admin/includes/continents-cities.php:141 +msgid "Hermosillo" +msgstr "Hermosillo" + +#: wp-admin/includes/continents-cities.php:140 +msgid "Havana" +msgstr "Havanna" + +#: wp-admin/includes/continents-cities.php:139 +msgid "Halifax" +msgstr "Halifax" + +#: wp-admin/includes/continents-cities.php:138 +msgid "Guyana" +msgstr "Guyana" + +#: wp-admin/includes/continents-cities.php:137 +msgid "Guayaquil" +msgstr "Guayaquil" + +#: wp-admin/includes/continents-cities.php:136 +msgid "Guatemala" +msgstr "Guatemala" + +#: wp-admin/includes/continents-cities.php:135 +msgid "Guadeloupe" +msgstr "Guadeloupe" + +#: wp-admin/includes/continents-cities.php:134 +msgid "Grenada" +msgstr "Grenada" + +#: wp-admin/includes/continents-cities.php:133 +msgid "Grand Turk" +msgstr "Grand Turk" + +#: wp-admin/includes/continents-cities.php:132 +msgid "Goose Bay" +msgstr "Goose Bay" + +#: wp-admin/includes/continents-cities.php:131 +msgid "Godthab" +msgstr "Nuuk" + +#: wp-admin/includes/continents-cities.php:130 +msgid "Glace Bay" +msgstr "Glace Bay" + +#: wp-admin/includes/continents-cities.php:129 +msgid "Fortaleza" +msgstr "Fortaleza" + +#: wp-admin/includes/continents-cities.php:128 +msgid "Fort Wayne" +msgstr "Fort Wayne" + +#: wp-admin/includes/continents-cities.php:126 +msgid "Ensenada" +msgstr "Ensenada" + +#: wp-admin/includes/continents-cities.php:125 +msgid "El Salvador" +msgstr "El Salvador" + +#: wp-admin/includes/continents-cities.php:124 +msgid "Eirunepe" +msgstr "Eirunepe" + +#: wp-admin/includes/continents-cities.php:123 +msgid "Edmonton" +msgstr "Edmonton" + +#: wp-admin/includes/continents-cities.php:122 +msgid "Dominica" +msgstr "Dominica" + +#: wp-admin/includes/continents-cities.php:121 +msgid "Detroit" +msgstr "Detroit" + +#: wp-admin/includes/continents-cities.php:120 +msgid "Denver" +msgstr "Denver" + +#: wp-admin/includes/continents-cities.php:119 +msgid "Dawson Creek" +msgstr "Dawson Creek" + +#: wp-admin/includes/continents-cities.php:118 +msgid "Dawson" +msgstr "Dawson" + +#: wp-admin/includes/continents-cities.php:117 +msgid "Danmarkshavn" +msgstr "Danmarkshavn" + +#: wp-admin/includes/continents-cities.php:116 +msgid "Curacao" +msgstr "Curaçao" + +#: wp-admin/includes/continents-cities.php:115 +msgid "Cuiaba" +msgstr "Cuiaba" + +#: wp-admin/includes/continents-cities.php:113 +msgid "Costa Rica" +msgstr "Costa Rica" + +#: wp-admin/includes/continents-cities.php:111 +msgid "Coral Harbour" +msgstr "Coral Harbour" + +#: wp-admin/includes/continents-cities.php:110 +msgid "Chihuahua" +msgstr "Chihuahua" + +#: wp-admin/includes/continents-cities.php:109 +msgid "Chicago" +msgstr "Chicago" + +#: wp-admin/includes/continents-cities.php:108 +msgid "Cayman" +msgstr "Kaimaninseln" + +#: wp-admin/includes/continents-cities.php:107 +msgid "Cayenne" +msgstr "Cayenne" + +#: wp-admin/includes/continents-cities.php:105 +msgid "Caracas" +msgstr "Caracas" + +#: wp-admin/includes/continents-cities.php:104 +msgid "Cancun" +msgstr "Cancún" + +#: wp-admin/includes/continents-cities.php:103 +msgid "Campo Grande" +msgstr "Campo Grande" + +#: wp-admin/includes/continents-cities.php:102 +msgid "Cambridge Bay" +msgstr "Cambridge Bay" + +#: wp-admin/includes/continents-cities.php:100 +msgid "Boise" +msgstr "Boise" + +#: wp-admin/includes/continents-cities.php:99 +msgid "Bogota" +msgstr "Bogota" + +#: wp-admin/includes/continents-cities.php:98 +msgid "Boa Vista" +msgstr "Boa Vista" + +#: wp-admin/includes/continents-cities.php:97 +msgid "Blanc-Sablon" +msgstr "Blanc-Sablon" + +#: wp-admin/includes/continents-cities.php:96 +msgid "Belize" +msgstr "Belize" + +#: wp-admin/includes/continents-cities.php:95 +msgid "Belem" +msgstr "Belém" + +#: wp-admin/includes/continents-cities.php:94 +msgid "Barbados" +msgstr "Barbados" + +#: wp-admin/includes/continents-cities.php:92 +msgid "Bahia" +msgstr "Bahia" + +#: wp-admin/includes/continents-cities.php:91 +msgid "Atka" +msgstr "Atka" + +#: wp-admin/includes/continents-cities.php:90 +msgid "Atikokan" +msgstr "Atikokan" + +#: wp-admin/includes/continents-cities.php:89 +msgid "Asuncion" +msgstr "Asuncion" + +#: wp-admin/includes/continents-cities.php:88 +msgid "Aruba" +msgstr "Aruba" + +#: wp-admin/includes/continents-cities.php:87 +msgid "Ushuaia" +msgstr "Ushuaia" + +#: wp-admin/includes/continents-cities.php:86 +msgid "Tucuman" +msgstr "San Miguel de Tucumán" + +#: wp-admin/includes/continents-cities.php:85 +msgid "San Luis" +msgstr "San Luis" + +#: wp-admin/includes/continents-cities.php:84 +msgid "San Juan" +msgstr "San Juan" + +#: wp-admin/includes/continents-cities.php:82 +msgid "Rio Gallegos" +msgstr "Rio Gallegos" + +#: wp-admin/includes/continents-cities.php:81 +#: wp-admin/includes/continents-cities.php:174 +msgid "Mendoza" +msgstr "Mendoza" + +#: wp-admin/includes/continents-cities.php:80 +msgid "La Rioja" +msgstr "La Rioja" + +#: wp-admin/includes/continents-cities.php:79 +#: wp-admin/includes/continents-cities.php:155 +msgid "Jujuy" +msgstr "San Salvador de Jujuy" + +#: wp-admin/includes/continents-cities.php:78 +#: wp-admin/includes/continents-cities.php:112 +msgid "Cordoba" +msgstr "Cordoba" + +#: wp-admin/includes/continents-cities.php:77 +msgid "ComodRivadavia" +msgstr "Comodoro Rivadavia" + +#: wp-admin/includes/continents-cities.php:76 +#: wp-admin/includes/continents-cities.php:106 +msgid "Catamarca" +msgstr "Catamarca" + +#: wp-admin/includes/continents-cities.php:75 +#: wp-admin/includes/continents-cities.php:101 +msgid "Buenos Aires" +msgstr "Buenos Aires" + +#: wp-admin/includes/continents-cities.php:74 +msgid "Argentina" +msgstr "Argentinien" + +#: wp-admin/includes/continents-cities.php:73 +msgid "Araguaina" +msgstr "Araguaina" + +#: wp-admin/includes/continents-cities.php:72 +msgid "Antigua" +msgstr "Antigua" + +#: wp-admin/includes/continents-cities.php:71 +msgid "Anguilla" +msgstr "Anguilla" + +#: wp-admin/includes/continents-cities.php:70 +msgid "Anchorage" +msgstr "Anchorage" + +#: wp-admin/includes/continents-cities.php:69 +msgid "Adak" +msgstr "Adak" + +#: wp-admin/includes/continents-cities.php:68 +msgid "America" +msgstr "America" + +#: wp-admin/includes/continents-cities.php:66 +msgid "Windhoek" +msgstr "Windhoek" + +#: wp-admin/includes/continents-cities.php:65 +msgid "Tunis" +msgstr "Tunis" + +#: wp-admin/includes/continents-cities.php:64 +msgid "Tripoli" +msgstr "Tripolis" + +#: wp-admin/includes/continents-cities.php:63 +msgid "Timbuktu" +msgstr "Timbuktu" + +#: wp-admin/includes/continents-cities.php:62 +msgid "Sao Tome" +msgstr "Sao Tome" + +#: wp-admin/includes/continents-cities.php:61 +msgid "Porto-Novo" +msgstr "Porto-Novo" + +#: wp-admin/includes/continents-cities.php:60 +msgid "Ouagadougou" +msgstr "Ouagadougou" + +#: wp-admin/includes/continents-cities.php:59 +msgid "Nouakchott" +msgstr "Nouakchott" + +#: wp-admin/includes/continents-cities.php:58 +msgid "Niamey" +msgstr "Niamey" + +#: wp-admin/includes/continents-cities.php:57 +msgid "Ndjamena" +msgstr "Ndjamena" + +#: wp-admin/includes/continents-cities.php:56 +msgid "Nairobi" +msgstr "Nairobi" + +#: wp-admin/includes/continents-cities.php:55 +msgid "Monrovia" +msgstr "Monrovia" + +#: wp-admin/includes/continents-cities.php:54 +msgid "Mogadishu" +msgstr "Mogadischu" + +#: wp-admin/includes/continents-cities.php:53 +msgid "Mbabane" +msgstr "Mbabane" + +#: wp-admin/includes/continents-cities.php:52 +msgid "Maseru" +msgstr "Maseru" + +#: wp-admin/includes/continents-cities.php:51 +msgid "Maputo" +msgstr "Maputo" + +#: wp-admin/includes/continents-cities.php:50 +msgid "Malabo" +msgstr "Malabo" + +#: wp-admin/includes/continents-cities.php:49 +msgid "Lusaka" +msgstr "Lusaka" + +#: wp-admin/includes/continents-cities.php:48 +msgid "Lubumbashi" +msgstr "Lubumbashi" + +#: wp-admin/includes/continents-cities.php:47 +msgid "Luanda" +msgstr "Luanda" + +#: wp-admin/includes/continents-cities.php:46 +msgid "Lome" +msgstr "Lome" + +#: wp-admin/includes/continents-cities.php:45 +msgid "Libreville" +msgstr "Libreville" + +#: wp-admin/includes/continents-cities.php:44 +msgid "Lagos" +msgstr "Lagos" + +#: wp-admin/includes/continents-cities.php:43 +msgid "Kinshasa" +msgstr "Kinshasa" + +#: wp-admin/includes/continents-cities.php:42 +msgid "Kigali" +msgstr "Kigali" + +#: wp-admin/includes/continents-cities.php:41 +msgid "Khartoum" +msgstr "Khartum" + +#: wp-admin/includes/continents-cities.php:40 +msgid "Kampala" +msgstr "Kampala" + +#: wp-admin/includes/continents-cities.php:38 +msgid "Johannesburg" +msgstr "Johannesburg" + +#: wp-admin/includes/continents-cities.php:37 +msgid "Harare" +msgstr "Harare" + +#: wp-admin/includes/continents-cities.php:36 +msgid "Gaborone" +msgstr "Gaborone" + +#: wp-admin/includes/continents-cities.php:35 +msgid "Freetown" +msgstr "Freetown" + +#: wp-admin/includes/continents-cities.php:34 +msgid "El Aaiun" +msgstr "El Aaiun" + +#: wp-admin/includes/continents-cities.php:33 +msgid "Douala" +msgstr "Douala" + +#: wp-admin/includes/continents-cities.php:32 +msgid "Djibouti" +msgstr "Dschibuti" + +#: wp-admin/includes/continents-cities.php:31 +msgid "Dar es Salaam" +msgstr "Daressalaam" + +#: wp-admin/includes/continents-cities.php:30 +msgid "Dakar" +msgstr "Dakar" + +#: wp-admin/includes/continents-cities.php:29 +msgid "Conakry" +msgstr "Conakry" + +#: wp-admin/includes/continents-cities.php:28 +msgid "Ceuta" +msgstr "Ceuta" + +#: wp-admin/includes/continents-cities.php:27 +msgid "Casablanca" +msgstr "Casablanca" + +#: wp-admin/includes/continents-cities.php:26 +msgid "Cairo" +msgstr "Kairo" + +#: wp-admin/includes/continents-cities.php:25 +msgid "Bujumbura" +msgstr "Bujumbura" + +#: wp-admin/includes/continents-cities.php:24 +msgid "Brazzaville" +msgstr "Brazzaville" + +#: wp-admin/includes/continents-cities.php:23 +msgid "Blantyre" +msgstr "Blantyre" + +#: wp-admin/includes/continents-cities.php:22 +msgid "Bissau" +msgstr "Bissau" + +#: wp-admin/includes/continents-cities.php:21 +msgid "Banjul" +msgstr "Banjul" + +#: wp-admin/includes/continents-cities.php:20 +msgid "Bangui" +msgstr "Bangui" + +#: wp-admin/includes/continents-cities.php:19 +msgid "Bamako" +msgstr "Bamako" + +#: wp-admin/includes/continents-cities.php:18 +msgid "Asmera" +msgstr "Asmera" + +#: wp-admin/includes/continents-cities.php:17 +msgid "Asmara" +msgstr "Asmara" + +#: wp-admin/includes/continents-cities.php:16 +msgid "Algiers" +msgstr "Algier" + +#: wp-admin/includes/continents-cities.php:15 +msgid "Addis Ababa" +msgstr "Addis Ababa" + +#: wp-admin/includes/continents-cities.php:14 +msgid "Accra" +msgstr "Accra" + +#: wp-admin/includes/continents-cities.php:13 +msgid "Abidjan" +msgstr "Abidjan" + +#: wp-admin/includes/continents-cities.php:12 +msgid "Africa" +msgstr "Afrika" \ No newline at end of file diff --git a/web/app/languages/de_DE-0cc31205f20441b3df1d1b46100f6b8d.json b/web/app/languages/de_DE-0cc31205f20441b3df1d1b46100f6b8d.json new file mode 100644 index 0000000..bc14949 --- /dev/null +++ b/web/app/languages/de_DE-0cc31205f20441b3df1d1b46100f6b8d.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"The section has been copied to your clipboard.":["Der Abschnitt wurde in die Zwischenablage kopiert."],"An error occurred while attempting to find and erase personal data.":["Beim Versuch, personenbezogene Daten zu finden und zu l\u00f6schen, ist ein Fehler aufgetreten."],"Personal data was found for this user but some of the personal data found was not erased.":["F\u00fcr diesen Benutzer wurden personenbezogene Daten gefunden, aber einige der gefundenen personenbezogenen Daten wurden nicht gel\u00f6scht."],"All of the personal data found for this user was erased.":["Alle f\u00fcr diesen Benutzer gefundenen personenbezogenen Daten wurden gel\u00f6scht."],"Personal data was found for this user but was not erased.":["F\u00fcr diesen Benutzer wurden personenbezogene Daten gefunden, aber nicht gel\u00f6scht."],"No personal data was found for this user.":["F\u00fcr diesen Benutzer wurden keine personenbezogenen Daten gefunden."],"An error occurred while attempting to export personal data.":["Beim Versuch, personenbezogene Daten zu exportieren, ist ein Fehler aufgetreten."],"No personal data export file was generated.":["Es wurde keine Exportdatei mit personenbezogenen Daten erzeugt."],"The personal data export link for this user was sent.":["Der Export-Link f\u00fcr personenbezogene Daten wurde an diesen Benutzer gesendet."]}},"comment":{"reference":"wp-admin\/js\/privacy-tools.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-0ce75ad2f775d1cac9696967d484808c.json b/web/app/languages/de_DE-0ce75ad2f775d1cac9696967d484808c.json new file mode 100644 index 0000000..c4e5b60 --- /dev/null +++ b/web/app/languages/de_DE-0ce75ad2f775d1cac9696967d484808c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Editor tips":["Editor-Tipps"],"Disable tips":["Tipps deaktivieren"],"Got it":["Verstanden"],"See next tip":["N\u00e4chsten Tipp ansehen"]}},"comment":{"reference":"wp-includes\/js\/dist\/nux.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-0eebe503220d4a00341eb011b92769b4.json b/web/app/languages/de_DE-0eebe503220d4a00341eb011b92769b4.json new file mode 100644 index 0000000..ca03b33 --- /dev/null +++ b/web/app/languages/de_DE-0eebe503220d4a00341eb011b92769b4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"%1$s is deprecated since version %2$s! Use %3$s instead. Please consider writing more inclusive code.":["%1$s ist seit Version %2$s veraltet! Benutze stattdessen %3$s. Bitte erw\u00e4ge, inklusiveren Code zu schreiben."]}},"comment":{"reference":"wp-admin\/js\/password-strength-meter.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-1a0cd6a7128913b15c1a10dd68951869.json b/web/app/languages/de_DE-1a0cd6a7128913b15c1a10dd68951869.json new file mode 100644 index 0000000..9d91e40 --- /dev/null +++ b/web/app/languages/de_DE-1a0cd6a7128913b15c1a10dd68951869.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"%1$s Block. Row %2$d":["%1$s Block. Reihe %2$d"],"Design":["Design"],"%s Block":["Block %s"],"%1$s Block. %2$s":["Block %1$s. %2$s"],"%1$s Block. Column %2$d":["Block %1$s. Spalte %2$d"],"%1$s Block. Column %2$d. %3$s":["Block %1$s. Spalte %2$d. %3$s"],"%1$s Block. Row %2$d. %3$s":["Block %1$s. Reihe %2$d. %3$s"],"Reusable blocks":["Wiederverwendbare Bl\u00f6cke"],"Embeds":["Einbettungen"],"Text":["Text"],"Widgets":["Widgets"],"Media":["Medien"]}},"comment":{"reference":"wp-includes\/js\/dist\/blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-1bba9045bb07c89671c88a3f328548e8.json b/web/app/languages/de_DE-1bba9045bb07c89671c88a3f328548e8.json new file mode 100644 index 0000000..e139138 --- /dev/null +++ b/web/app/languages/de_DE-1bba9045bb07c89671c88a3f328548e8.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"You are probably offline.":["Du bist wahrscheinlich offline."],"Media upload failed. If this is a photo or a large image, please scale it down and try again.":["Das Hochladen von Medien ist fehlgeschlagen. Wenn es sich um ein Foto oder ein gro\u00dfes Bild handelt, verkleiner es bitte und versuch es erneut."],"The response is not a valid JSON response.":["Die Antwort ist keine g\u00fcltige JSON-Antwort."],"An unknown error occurred.":["Ein unbekannter Fehler ist aufgetreten."]}},"comment":{"reference":"wp-includes\/js\/dist\/api-fetch.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-1c4303f02ff93b290e9faad991eeb06f.json b/web/app/languages/de_DE-1c4303f02ff93b290e9faad991eeb06f.json new file mode 100644 index 0000000..88e3016 --- /dev/null +++ b/web/app/languages/de_DE-1c4303f02ff93b290e9faad991eeb06f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Submitted on:":["Eingereicht am:"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s %3$s um %4$s:%5$s"]}},"comment":{"reference":"wp-admin\/js\/comment.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-1d17475f620f63a92e2c5d2681c51ee8.json b/web/app/languages/de_DE-1d17475f620f63a92e2c5d2681c51ee8.json new file mode 100644 index 0000000..1510204 --- /dev/null +++ b/web/app/languages/de_DE-1d17475f620f63a92e2c5d2681c51ee8.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Could not load the preview image.":["Das Vorschaubild konnte nicht geladen werden."],"Could not load the preview image. Please reload the page and try again.":["Das Vorschaubild konnte nicht geladen werden. Bitte lade die Seite neu und versuche es erneut."]}},"comment":{"reference":"wp-admin\/js\/image-edit.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-28b3c3d595952907e08d98287077426c.json b/web/app/languages/de_DE-28b3c3d595952907e08d98287077426c.json new file mode 100644 index 0000000..22d9edf --- /dev/null +++ b/web/app/languages/de_DE-28b3c3d595952907e08d98287077426c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Reusable block imported successfully!":["Wiederverwendbarer Block erfolgreich importiert!"],"button label\u0004Import":["Importieren"],"Unknown error":["Unbekannter Fehler"],"Invalid Reusable Block JSON file":["Ung\u00fcltige JSON-Datei f\u00fcr wiederverwendbaren Block"],"Invalid JSON file":["Ung\u00fcltige JSON-Datei"],"Import from JSON":["Import von JSON"],"File":["Datei"]}},"comment":{"reference":"wp-includes\/js\/dist\/list-reusable-blocks.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-2b390f85a3048c5b4255fb45960b6514.json b/web/app/languages/de_DE-2b390f85a3048c5b4255fb45960b6514.json new file mode 100644 index 0000000..57dcd55 --- /dev/null +++ b/web/app/languages/de_DE-2b390f85a3048c5b4255fb45960b6514.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"The request could not be completed.":["Die Anfrage konnte nicht abgeschlossen werden."],"Disabling...":["Deaktiviere\u2026"],"Enabling...":["Aktiviere\u2026"],"Number of plugins found: %d":["Anzahl gefundener Plugins: %d"],"Caution: These themes may be active on other sites in the network. Are you sure you want to proceed?":["Achtung: Diese Themes k\u00f6nnen auf anderen Websites des Netzwerks aktiv sein. Bist du sicher, dass du fortfahren m\u00f6chtest?"],"Are you sure you want to delete the selected plugins and their data?":["Bist du sicher, dass du die ausgew\u00e4hlten Plugins und deren Daten l\u00f6schen m\u00f6chtest?"],"Please select at least one item to perform this action on.":["Bitte w\u00e4hle mindestens ein Element aus, auf das diese Aktion angewendet werden soll."],"Are you sure you want to delete %s and its data?":["Bist du sicher, dass du %s und die dazugeh\u00f6rigen Daten l\u00f6schen m\u00f6chtest?"],"Update canceled.":["Aktualisierung abgebrochen."],"plugin\u0004Update %s now":["%s jetzt aktualisieren"],"Updates may not complete if you navigate away from this page.":["Aktualisierungen werden m\u00f6glicherweise nicht abgeschlossen, wenn du diese Seite verl\u00e4sst."],"Connection lost or the server is busy. Please try again later.":["Die Verbindung zum Server wurde unterbrochen oder der Server ist ausgelastet. Bitte versuche es sp\u00e4ter erneut."],"Deletion failed: %s":["L\u00f6schen fehlgeschlagen: %s"],"theme\u0004Deleted!":["Gel\u00f6scht!"],"theme\u0004%s installation failed":["Installation von %s fehlgeschlagen"],"theme\u0004Network Activate %s":["%s netzwerkweit aktivieren"],"theme\u0004%s installed!":["%s installiert!"],"theme\u0004Installing %s...":["Installiere %s ..."],"theme\u0004Updated!":["Aktualisiert!"],"Updating... please wait.":["Wird aktualisiert\u2026 bitte warten."],"plugin\u0004Deleted!":["Gel\u00f6scht!"],"Deleting...":["L\u00f6sche\u2026"],"plugin\u0004Install %s now":["%s jetzt installieren"],"Importer installed successfully. Run importer<\/a>":["Importer erfolgreich installiert. Importer ausf\u00fchren<\/a>"],"plugin\u0004%s installation failed":["Installation von %s fehlgeschlagen"],"Installation failed: %s":["Installation fehlgeschlagen: %s"],"Installation completed successfully.":["Installation erfolgreich abgeschlossen."],"plugin\u0004Installed!":["Installiert!"],"plugin\u0004%s installed!":["%s installiert!"],"Installing... please wait.":["Installiere\u2026 bitte warten."],"plugin\u0004Installing %s...":["Installiere %s \u2026"],"Installing...":["Installiere\u2026"],"plugin\u0004%s update failed.":["Aktualisierung von %s fehlgeschlagen."],"Update failed: %s":["Aktualisierung fehlgeschlagen: %s"],"Update completed successfully.":["Aktualisierung erfolgreich abgeschlossen."],"plugin\u0004Updated!":["Aktualisiert!"],"plugin\u0004%s updated!":["%s aktualisiert!"],"Updating...":["Aktualisiere\u2026"],"plugin\u0004Updating %s...":["Aktualisiere %s \u2026"],"No plugins found. Try a different search.":["Es wurden keine Plugins gefunden. Versuche es bitte mit einem anderen Suchbegriff."],"Enable auto-updates":["Automatische Aktualisierungen aktivieren"],"Disable auto-updates":["Automatische Aktualisierungen deaktivieren"],"No plugins are currently available.":["Momentan sind keine Plugins verf\u00fcgbar."],"Auto-updates disabled":["Automatische Aktualisierungen deaktiviert"],"Auto-updates enabled":["Automatische Aktualisierung aktiviert"],"theme\u0004Activate %s":["%s aktivieren"],"plugin\u0004Network Activate %s":["%s netzwerkweit aktivieren"],"plugin\u0004Activate %s":["%s aktivieren"],"Run Importer":["Importer ausf\u00fchren"],"Run %s":["%s ausf\u00fchren"],"Update failed.":["Aktualisierung fehlgeschlagen."],"theme\u0004Installed!":["Installiert!"],"Are you sure you want to delete %s?":["Bist du sicher, dass du %s l\u00f6schen m\u00f6chtest?"],"Search results for “%s”":["Suchergebnisse f\u00fcr „%s“"],"Network Enable":["Netzwerkweit freischalten"],"Update Now":["Jetzt aktualisieren"],"Installation failed.":["Installation fehlgeschlagen."],"You do not appear to have any plugins available at this time.":["Es sieht nicht so aus, als w\u00e4ren zur Zeit irgendwelche Plugins vorhanden."],"Network Activate":["F\u00fcr das gesamte Netzwerk aktivieren"],"Install Now":["Jetzt installieren"],"Something went wrong.":["Etwas ging schief."],"Search Results":["Suchergebnisse"],"Live Preview":["Live-Vorschau"],"An error has occurred. Please reload the page and try again.":["Ein Fehler ist aufgetreten. Bitte lade die Seite neu und versuche es nochmal."],"Activate":["Aktivieren"]}},"comment":{"reference":"wp-admin\/js\/updates.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-2c5d274ea625dd91556554ad82901529.json b/web/app/languages/de_DE-2c5d274ea625dd91556554ad82901529.json new file mode 100644 index 0000000..ebf7ae5 --- /dev/null +++ b/web/app/languages/de_DE-2c5d274ea625dd91556554ad82901529.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Annotation":["Anmerkung"]}},"comment":{"reference":"wp-includes\/js\/dist\/annotations.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-320f4ad9792aaa6dedb1e71cbdf85d57.json b/web/app/languages/de_DE-320f4ad9792aaa6dedb1e71cbdf85d57.json new file mode 100644 index 0000000..639fac6 --- /dev/null +++ b/web/app/languages/de_DE-320f4ad9792aaa6dedb1e71cbdf85d57.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Notifications":["Benachrichtigungen"]}},"comment":{"reference":"wp-includes\/js\/dist\/a11y.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-49c6d4acf36cf3aca9f0b2a77617304f.json b/web/app/languages/de_DE-49c6d4acf36cf3aca9f0b2a77617304f.json new file mode 100644 index 0000000..6154508 --- /dev/null +++ b/web/app/languages/de_DE-49c6d4acf36cf3aca9f0b2a77617304f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Menu Item":["Men\u00fceintrag"],"Comment":["Kommentar"],"Widget area":["Widget-Bereich"],"Site":["Website"],"Post Type":["Inhaltstyp"],"Taxonomy":["Taxonomie"],"Menu Location":["Men\u00fc-Position"],"Menu":["Men\u00fc"],"User":["Benutzer"],"Site Title":["Titel der Website"],"Media":["Medien"]}},"comment":{"reference":"wp-includes\/js\/dist\/core-data.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-4a38fe1c0c45989e44682ba6109d9f46.json b/web/app/languages/de_DE-4a38fe1c0c45989e44682ba6109d9f46.json new file mode 100644 index 0000000..e05997c --- /dev/null +++ b/web/app/languages/de_DE-4a38fe1c0c45989e44682ba6109d9f46.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"All site health tests have finished running. There are items that should be addressed, and the results are now available on the page.":["Alle Tests zum Website-Zustand sind nun abgeschlossen. Es gibt einige Punkte, die beachtet werden sollten, und die Ergebnisse sind auf dieser Seite verf\u00fcgbar."],"Should be improved":["Sollte verbessert werden"],"Good":["Gut"],"%s critical issue":["%s kritisches Problem","%s kritische Probleme"],"%s item with no issues detected":["%s Element, bei dem keine Probleme erkannt wurden","%s Elemente, bei denen keine Probleme erkannt wurde"],"%s recommended improvement":["%s empfohlene Verbesserung","%s empfohlene Verbesserungen"],"Site information has been copied to your clipboard.":["Der Bericht zur Website wurde in deine Zwischenablage kopiert."],"All site health tests have finished running. Your site is looking good, and the results are now available on the page.":["Alle Tests zum Website-Zustand sind erfolgreich abgeschlossen. Der Zustand deiner Website ist gut, und die Ergebnisse dazu sind auf dieser Seite verf\u00fcgbar."],"All site health tests have finished running.":["Alle Tests zum Website-Zustand wurden erfolgreich abgeschlossen."],"Please wait...":["Bitte warten..."]}},"comment":{"reference":"wp-admin\/js\/site-health.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-4bfa11da57ff2600004bb500368247f4.json b/web/app/languages/de_DE-4bfa11da57ff2600004bb500368247f4.json new file mode 100644 index 0000000..556fb1f --- /dev/null +++ b/web/app/languages/de_DE-4bfa11da57ff2600004bb500368247f4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Saving\u2026":["Speichern\u2026"],"Use as featured image":["Als Beitragsbild verwenden"],"Could not set that as the thumbnail image. Try a different attachment.":["Das Bild konnte nicht als Vorschaubild gesetzt werden. Versuche es mit einem anderen."],"Done":["Fertig"]}},"comment":{"reference":"wp-admin\/js\/set-post-thumbnail.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-50278328b502f4eb3f2b8b7ab49324a1.json b/web/app/languages/de_DE-50278328b502f4eb3f2b8b7ab49324a1.json new file mode 100644 index 0000000..83e59fc --- /dev/null +++ b/web/app/languages/de_DE-50278328b502f4eb3f2b8b7ab49324a1.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Drag boxes here":["Boxen hierhin ziehen"],"Add boxes from the Screen Options menu":["Boxen \u00fcber \u201eAnsicht anpassen\u201c hinzuf\u00fcgen"],"The boxes order has been saved.":["Die Reihenfolge der Boxen wurde gespeichert."],"The box is on the last position":["Die Box befindet sich auf der letzten Position"],"The box is on the first position":["Die Box befindet sich auf der ersten Position"]}},"comment":{"reference":"wp-admin\/js\/postbox.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-5251f7623766a714c8207c7edb938628.json b/web/app/languages/de_DE-5251f7623766a714c8207c7edb938628.json new file mode 100644 index 0000000..c2458d7 --- /dev/null +++ b/web/app/languages/de_DE-5251f7623766a714c8207c7edb938628.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Widget has been added to the selected sidebar":["Das Widget wurde zur ausgew\u00e4hlten Seitenleiste hinzugef\u00fcgt"],"Saved":["Gespeichert"],"The changes you made will be lost if you navigate away from this page.":["Beim Verlassen der Seite werden deine \u00c4nderungen verworfen."],"Save":["Speichern"]}},"comment":{"reference":"wp-admin\/js\/widgets.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-569e85ef168299eb8c8f24d8ef8c8a78.json b/web/app/languages/de_DE-569e85ef168299eb8c8f24d8ef8c8a78.json new file mode 100644 index 0000000..e9865a3 --- /dev/null +++ b/web/app/languages/de_DE-569e85ef168299eb8c8f24d8ef8c8a78.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Permalink saved":["Permalink gespeichert"],"Published on:":["Ver\u00f6ffentlicht am:"],"Publish on:":["Ver\u00f6ffentlichen am:"],"Schedule for:":["Geplant f\u00fcr:"],"Saving Draft\u2026":["Entwurf wird gespeichert..."],"No more comments found.":["Es wurden keine weiteren Kommentare gefunden."],"Show more comments":["Mehr Kommentare anzeigen"],"post action\/button label\u0004Schedule":["Planen"],"%1$s %2$s, %3$s at %4$s:%5$s":["%2$s %1$s %3$s um %4$s:%5$s"],"Public, Sticky":["\u00d6ffentlich, oben gehalten"],"Privately Published":["Privat ver\u00f6ffentlicht"],"Save as Pending":["Als ausstehend speichern"],"The file URL has been copied to your clipboard":["Die Datei-URL wurde in deine Zwischenablage kopiert"],"Could not set that as the thumbnail image. Try a different attachment.":["Das Bild konnte nicht als Vorschaubild gesetzt werden. Versuche es mit einem anderen."],"Password Protected":["Passwortgesch\u00fctzt"],"The changes you made will be lost if you navigate away from this page.":["Beim Verlassen der Seite werden deine \u00c4nderungen verworfen."],"Update":["Aktualisieren"],"Public":["\u00d6ffentlich"],"Private":["Privat"],"OK":["OK"],"Save Draft":["Speichern"],"Cancel":["Abbrechen"],"Publish":["Ver\u00f6ffentlichen"],"Published":["Ver\u00f6ffentlicht"]}},"comment":{"reference":"wp-admin\/js\/post.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-6025add6bde16aaeb12787d250f9b414.json b/web/app/languages/de_DE-6025add6bde16aaeb12787d250f9b414.json new file mode 100644 index 0000000..695ee9d --- /dev/null +++ b/web/app/languages/de_DE-6025add6bde16aaeb12787d250f9b414.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Are you sure you want to do this?\nThe comment changes you made will be lost.":["Bist du sicher, dass du das tun m\u00f6chtest?\nDeine \u00c4nderungen des Kommentars gehen verloren."],"Are you sure you want to edit this comment?\nThe changes you made will be lost.":["Bist du sicher, dass du diesen Kommentar bearbeiten m\u00f6chtest?\nDeine \u00c4nderungen gehen verloren."],"Approve and Reply":["Genehmigen und antworten"],"Comments (%s)":["Kommentare (%s)"],"Reply":["Antworten"],"Comments":["Kommentare"]}},"comment":{"reference":"wp-admin\/js\/edit-comments.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-68f2cec7514bf8563c723a4d675fcfe6.json b/web/app/languages/de_DE-68f2cec7514bf8563c723a4d675fcfe6.json new file mode 100644 index 0000000..8c480f2 --- /dev/null +++ b/web/app/languages/de_DE-68f2cec7514bf8563c723a4d675fcfe6.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Inline Code":["Inline-Code"],"Link edited.":["Link bearbeitet."],"Link removed.":["Link entfernt."],"Inline image":["Inline-Bild"],"media":["Medien"],"photo":["Foto"],"Warning: the link has been inserted but may have errors. Please test it.":["Warnung: Der Link wurde eingef\u00fcgt, k\u00f6nnte aber fehlerhaft sein. Bitte teste ihn."],"Link inserted.":["Link eingef\u00fcgt."],"Text Color":["Textfarbe"],"Link":["Link"],"Superscript":["Hochgestellt"],"Subscript":["Tiefgestellt"],"Unlink":["Link entfernen"],"Strikethrough":["Durchgestrichen"],"Underline":["Unterstreichen"],"Italic":["Kursiv"],"Bold":["Fett"],"Width":["Breite"],"Apply":["\u00dcbernehmen"]}},"comment":{"reference":"wp-includes\/js\/dist\/format-library.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-7289286ed59e90a8f36ae797df62220b.json b/web/app/languages/de_DE-7289286ed59e90a8f36ae797df62220b.json new file mode 100644 index 0000000..0b93a4b --- /dev/null +++ b/web/app/languages/de_DE-7289286ed59e90a8f36ae797df62220b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"An error has occurred. Please reload the page and try again.":["Ein Fehler ist aufgetreten. Bitte lade die Seite neu und versuche es nochmal."]}},"comment":{"reference":"wp-admin\/js\/media.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-7436b7ee9e4f11ac0d618d8cc886eb66.json b/web/app/languages/de_DE-7436b7ee9e4f11ac0d618d8cc886eb66.json new file mode 100644 index 0000000..918c86e --- /dev/null +++ b/web/app/languages/de_DE-7436b7ee9e4f11ac0d618d8cc886eb66.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Plugin details":["Plugin-Details"],"Plugin: %s":["Plugin: %s"]}},"comment":{"reference":"wp-admin\/js\/plugin-install.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-77fdfadaf2e1ca3a027d1956b910bc50.json b/web/app/languages/de_DE-77fdfadaf2e1ca3a027d1956b910bc50.json new file mode 100644 index 0000000..2090a94 --- /dev/null +++ b/web/app/languages/de_DE-77fdfadaf2e1ca3a027d1956b910bc50.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"%1$s is deprecated since version %2$s with no alternative available.":["%1$s ist seit Version %2$s veraltet. Eine Alternative ist nicht verf\u00fcgbar."],"%1$s is deprecated since version %2$s! Use %3$s instead.":["%1$s ist seit Version %2$s veraltet! Benutze stattdessen %3$s."],"Expand Main menu":["Hauptmen\u00fc aufklappen"],"Dismiss this notice.":["Diese Meldung ausblenden."],"You are about to permanently delete these items from your site.\nThis action cannot be undone.\n'Cancel' to stop, 'OK' to delete.":["Du bist dabei, diese Elemente endg\u00fcltig von deiner Website zu l\u00f6schen.\nDiese Aktion kann nicht r\u00fcckg\u00e4ngig gemacht werden.\n\u201aAbbrechen\u2018 zum Beenden, \u201aOK\u2018 zum L\u00f6schen."],"Collapse Main menu":["Hauptmen\u00fc einklappen"]}},"comment":{"reference":"wp-admin\/js\/common.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-7b74c8457eaa7fcc50db41b431f8a003.json b/web/app/languages/de_DE-7b74c8457eaa7fcc50db41b431f8a003.json new file mode 100644 index 0000000..cfcb04e --- /dev/null +++ b/web/app/languages/de_DE-7b74c8457eaa7fcc50db41b431f8a003.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Something went wrong.":["Etwas ging schief."],"Sorry, you are not allowed to do that.":["Du bist leider nicht berechtigt, diese Aktion durchzuf\u00fchren."]}},"comment":{"reference":"wp-admin\/js\/tags.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-7d5ca435e60d92f024d46c9257aaa0f7.json b/web/app/languages/de_DE-7d5ca435e60d92f024d46c9257aaa0f7.json new file mode 100644 index 0000000..90ac119 --- /dev/null +++ b/web/app/languages/de_DE-7d5ca435e60d92f024d46c9257aaa0f7.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Term selected.":["Begriff ausgew\u00e4hlt."],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-suggest.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-7f13c36c641b114bf18cd0bcc9ecc7e0.json b/web/app/languages/de_DE-7f13c36c641b114bf18cd0bcc9ecc7e0.json new file mode 100644 index 0000000..a2ecc41 --- /dev/null +++ b/web/app/languages/de_DE-7f13c36c641b114bf18cd0bcc9ecc7e0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Color value in HSLA":["HSLA-Farbwert"],"Color value in RGBA":["RGBA-Farbwert"],"Box Control":["Boxen-Steuerung"],"Link Sides":["Seiten verbinden"],"Unlink Sides":["Seiten-Verbindung aufheben"],"Alignment Matrix Control":["Steuerung der Ausrichtungsmatrix"],"Bottom Center":["Unten zentriert"],"Center Right":["Mitte rechts"],"Center Center":["Mitte zentriert"],"Center Left":["Mitte links"],"Top Center":["Oben zentriert"],"Finish":["Fertigstellen"],"Page %1$d of %2$d":["Seite %1$d von %2$d"],"Guide controls":["Guide-Bedienelemente"],"Gradient: %s":["Verlauf: %s"],"Gradient code: %s":["Code f\u00fcr den Verlauf: %s"],"Radial Gradient":["Radialer Verlauf"],"Linear Gradient":["Linearer Verlauf"],"Remove Control Point":["Kontrollpunkt entfernen"],"Use your left or right arrow keys or drag and drop with the mouse to change the gradient position. Press the button to change the color or remove the control point.":["Benutze deine linke oder rechte Pfeiltaste oder Drag-and-drop mit der Maus, um die Verlaufs-Position zu \u00e4ndern. Dr\u00fccke den Button, um die Farbe zu \u00e4ndern oder den Kontrollpunkt zu entfernen."],"Gradient control point at position %1$s with color code %2$s.":["Verlaufs-Kontrollpunkt an Position %1$s mit Farbcode %2$s."],"Preset size":["Voreingestellte Gr\u00f6\u00dfe"],"Extra Large":["Extra gro\u00df"],"Small":["Klein"],"Angle":["Winkel"],"Separate with commas or the Enter key.":["Mit Kommas oder der Eingabetaste trennen."],"Separate with commas, spaces, or the Enter key.":["Mit Kommas, Leerzeichen oder der Eingabetaste trennen."],"Vertical pos.":["Vertikale Pos."],"Horizontal pos.":["Horizontale Pos."],"Number of items":["Anzahl Elemente"],"Category":["Kategorie"],"Z \u2192 A":["Z bis A"],"A \u2192 Z":["A bis Z"],"Oldest to newest":["Alt nach Neu"],"Newest to oldest":["Neu nach Alt"],"Order by":["Reihenfolge von"],"Dismiss this notice":["Diesen Hinweis verwerfen"],"%1$s (%2$s of %3$s)":["%1$s (%2$s of %3$s)"],"Remove item":["Element entfernen"],"Item removed.":["Element entfernt."],"Item added.":["Element hinzugef\u00fcgt."],"Add item":["Element hinzuf\u00fcgen"],"Reset":["Zur\u00fccksetzen"],"(opens in a new tab)":["(\u00f6ffnet in neuem Tab)"],"Minutes":["Minuten"],"Calendar Help":["Kalender-Hilfe"],"Go to the first (home) or last (end) day of a week.":["Gehe zum ersten (Start) oder letzten (Ende) Tag der Woche."],"Home\/End":["Start\/Ende"],"Home and End":["Start und Ende"],"Move backward (PgUp) or forward (PgDn) by one month.":["Zur\u00fcck (Bild-auf) oder vorw\u00e4rts (Bild-ab) bewegen um einen Monat."],"PgUp\/PgDn":["Bild-auf\/Bild-ab"],"Page Up and Page Down":["Bild-auf und Bild-ab"],"Move backward (up) or forward (down) by one week.":["Zur\u00fcck (hoch) oder vorw\u00e4rts (runter) bewegen um eine Woche."],"Up and Down Arrows":["Pfeile hoch und runter"],"Move backward (left) or forward (right) by one day.":["Zur\u00fcck (links) oder vorw\u00e4rts (rechts) bewegen um einen Tag."],"Left and Right Arrows":["Pfeile links und rechts"],"Select the date in focus.":["Datum im Fokus ausw\u00e4hlen."],"keyboard button\u0004Enter":["Eingabetaste"],"Navigating with a keyboard":["Navigation mit einer Tastatur"],"Click the desired day to select it.":["Klicke den gew\u00fcnschten Tag an, um ihn auszuw\u00e4hlen."],"Click the right or left arrows to select other months in the past or the future.":["Klicke die Pfeile nach rechts oder links an, um Monate in der Vergangenheit oder der Zukunft auszuw\u00e4hlen."],"Click to Select":["Klicken zum Ausw\u00e4hlen"],"Use your arrow keys to change the base color. Move up to lighten the color, down to darken, left to decrease saturation, and right to increase saturation.":["Benutze deine Pfeiltasten, um die Basisfarbe zu \u00e4ndern. Hoch, um die Farbe aufzuhellen, runter zum Verdunkeln, links um die S\u00e4ttigung zu erh\u00f6hen, rechts um sie zu verringern."],"Choose a shade":["Farbton ausw\u00e4hlen"],"Change color format":["Farbformat wechseln"],"Color value in HSL":["HSL-Farbwert"],"Color value in RGB":["RGB-Farbwert"],"Color value in hexadecimal":["Hexadezimaler Farbwert"],"Hex color mode active":["Hex-Farbmodus aktiv"],"Hue\/saturation\/lightness mode active":["Farbton\/S\u00e4ttigung\/Helligkeit-Modus aktiv"],"RGB mode active":["RGB-Modus aktiv"],"Move the arrow left or right to change hue.":["Bewege den Pfeil nach rechts oder links zum \u00c4ndern des Farbtons."],"Hue value in degrees, from 0 to 359.":["Farbtonwert in Grad, von 0 bis 359."],"Alpha value, from 0 (transparent) to 1 (fully opaque).":["Alphawert von 0 (transparent) bis 1 (volle Deckkraft)."],"Color: %s":["Farbe: %s"],"Color code: %s":["Farbcode: %s"],"Custom color picker":["Individueller Farbw\u00e4hler"],"No results.":["Keine Ergebnisse."],"%d result found, use up and down arrow keys to navigate.":["%d Ergebnis gefunden, benutze die Pfeile nach oben oder unten zum Navigieren.","%d Ergebnisse gefunden, benutze die Pfeile nach oben oder unten zum Navigieren."],"Time":["Zeit"],"Day":["Tag"],"Month":["Monat"],"Date":["Datum"],"Hours":["\u00d6ffnungszeiten"],"Close dialog":["Dialog schlie\u00dfen"],"Previous":["Vorherige"],"Custom color":["Individuelle Farbe"],"Year":["Jahr"],"Custom Size":["Individuelle Gr\u00f6\u00dfe"],"Large":["Gro\u00df"],"Drop files to upload":["Dateien f\u00fcr den Upload bereitstellen"],"Clear":["Leeren"],"Mixed":["Gemischt"],"Custom":["Individuell"],"Next":["Weiter"],"PM":["PM"],"AM":["AM"],"Bottom Right":["Unten rechts"],"Bottom Left":["Unten links"],"Top Right":["Oben rechts"],"Top Left":["Oben links"],"Type":["Typ"],"Bottom":["Unten"],"Top":["Oben"],"Font size":["Schriftgr\u00f6\u00dfe"],"December":["Dezember"],"November":["November"],"October":["Oktober"],"September":["September"],"August":["August"],"July":["Juli"],"June":["Juni"],"May":["Mai"],"April":["April"],"March":["M\u00e4rz"],"February":["Februar"],"January":["Januar"],"All":["Alle"],"Default":["Standard"],"Close":["Schlie\u00dfen"],"Medium":["Mittel"],"Right":["Rechts"],"Left":["Links"],"None":["Keine"],"Categories":["Kategorien"],"Author":["Autor"]}},"comment":{"reference":"wp-includes\/js\/dist\/components.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-803bf1ce2131e13efc590c1bc47851fc.json b/web/app/languages/de_DE-803bf1ce2131e13efc590c1bc47851fc.json new file mode 100644 index 0000000..cb7045a --- /dev/null +++ b/web/app/languages/de_DE-803bf1ce2131e13efc590c1bc47851fc.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Child Blocks":["Kind-Bl\u00f6cke"],"Move the selected block(s) down.":["Ausgew\u00e4hlte(n) Block\/Bl\u00f6cke nach unten verschieben."],"Move the selected block(s) up.":["Ausgew\u00e4hlte(n) Block\/Bl\u00f6cke nach oben verschieben."],"Mobile":["Mobil"],"Tablet":["Tablet"],"Desktop":["Desktop"],"Current media URL:":["Aktuelle Medien-URL:"],"Creating":["Erstellen"],"An unknown error occurred during creation. Please try again.":["W\u00e4hrend der Erstellung ist ein unbekannter Fehler aufgetreten. Bitte versuche es erneut."],"New page: %s<\/mark>":["Neue Seite: %s<\/mark>"],"Image size presets":["Voreinstellungen f\u00fcr die Bildgr\u00f6\u00dfe"],"Block variations":["Block-Variationen"],"Navigation item":["Navigations-Element"],"Block navigation structure":["Block-Navigationsstruktur"],"Add block at position %1$d, Level %2$d":["Block an Position %1$d, Ebene %2$d hinzuf\u00fcgen"],"Go to block":["Gehe zum Block"],"Block %1$d of %2$d, Level %3$d":["Block %1$d von %2$d, Ebene %3$d"],"Move To":["Verschieben nach"],"Moved %d block to clipboard.":["%d Block in die Zwischenablage verschoben.","%d Bl\u00f6cke in die Zwischenablage verschoben."],"Copied %d block to clipboard.":["%d Block in die Zwischenablage kopiert.","%d Bl\u00f6cke in die Zwischenablage kopiert."],"Moved \"%s\" to clipboard.":["\u201e%s\u201c in die Zwischenablage verschoben."],"Copied \"%s\" to clipboard.":["\u201e%s\u201c in die Zwischenablage kopiert."],"Select parent (%s)":["Eltern-Block (%s) ausw\u00e4hlen"],"Browse all":["Alle durchsuchen"],"Browse all. This will open the main inserter panel in the editor toolbar.":["Alles durchsuchen. Dies wird das Haupt-Inserter-Bedienfeld in der Editor-Werkzeugleiste \u00f6ffnen."],"A tip for using the block editor":["Ein Tipp zur Verwendung des Block-Editors"],"Patterns":["Vorlagen"],"%d block added.":["%d Block hinzugef\u00fcgt.","%d Bl\u00f6cke hinzugef\u00fcgt."],"Pattern \"%s\" inserted.":["Vorlage \u201e%s\u201c eingef\u00fcgt."],"Use the Tab key and Arrow keys to choose new block location. Use Left and Right Arrow keys to move between nesting levels. Once location is selected press Enter or Space to move the block.":["Benutze die Tab-Taste und die Pfeiltasten, um eine neue Block-Position auszuw\u00e4hlen. Benutze die Pfeiltasten links und rechts, um die Verschachtelungsebene zu wechseln. Sobald eine Position ausgew\u00e4hlt ist, dr\u00fccke Enter oder die Leertaste, um den Block zu verschieben."],"You are currently in navigation mode. Navigate blocks using the Tab key and Arrow keys. Use Left and Right Arrow keys to move between nesting levels. To exit navigation mode and edit the selected block, press Enter.":["Du bist aktuell im Navigationsmodus. Navigiere durch die Bl\u00f6cke mithilfe der Tab-Taste und der Pfeiltasten. Benutze die Pfeiltasten links und rechts, um die Verschachtelungsebene zu wechseln. Um den Navigationsmodus zu verlassen und den ausgew\u00e4hlten Block zu bearbeiten, dr\u00fccke Enter."],"Reset search":["Suche zur\u00fccksetzen"],"Change a block's type by pressing the block icon on the toolbar.":["Wechsel den Typ eines Blocks, indem du auf das Blocksymbol in der Werkzeugleiste dr\u00fcckst."],"Drag files into the editor to automatically insert media blocks.":["Ziehe Dateien in den Editor, um automatisch Medienbl\u00f6cke einzuf\u00fcgen."],"Outdent a list by pressing backspace<\/kbd> at the beginning of a line.":["R\u00fccke eine Liste aus, indem du die R\u00fccktaste<\/kbd> am Anfang einer Zeile dr\u00fcckst."],"Indent a list by pressing space<\/kbd> at the beginning of a line.":["R\u00fccke eine Liste ein, indem du die Leertaste<\/kbd> am Anfang einer Zeile dr\u00fcckst."],"Open Colors Selector":["Farbauswahl \u00f6ffnen"],"Change matrix alignment":["Matrixausrichtung \u00e4ndern"],"Spacing":["Abstand"],"Padding":["Innenabstand"],"Typography":["Typografie"],"Line height":["Zeilenh\u00f6he"],"Block %1$s is at the beginning of the content and can\u2019t be moved left":["Der %1$s-Block befindet sich am Anfang des Inhalts und kann nicht nach links verschoben werden"],"Block %1$s is at the beginning of the content and can\u2019t be moved up":["Der %1$s-Block befindet am Anfang des Inhalts und kann nicht nach oben verschoben werden"],"Block %1$s is at the end of the content and can\u2019t be moved left":["Der %1$s-Block befindet sich am Ende des Inhalts und kann nicht nach links verschoben werden"],"Block %1$s is at the end of the content and can\u2019t be moved down":["Der %1$s-Block befindet sich am Ende des Inhalts und kann nicht nach unten verschoben werden"],"Remove multiple selected blocks.":["Mehrere ausgew\u00e4hlte Bl\u00f6cke entfernen."],"Move %1$s block from position %2$d right to position %3$d":["Block %1$s von Position %2$d nach rechts auf Position %3$d verschieben"],"Move %1$s block from position %2$d left to position %3$d":["Block %1$s von Position %2$d nach links auf Position %3$d verschieben"],"Tools offer different interactions for block selection & editing. To select, press Escape, to go back to editing, press Enter.":["Die Werkzeuge bieten verschiedene Interaktionen f\u00fcr die Auswahl und Bearbeitung von Bl\u00f6cken. Zum Ausw\u00e4hlen dr\u00fccke Escape. Um zum Editor zur\u00fcckzukehren, dr\u00fccke Enter."],"Toggle between using the same value for all screen sizes or using a unique value per screen size.":["Wechsel zwischen der Verwendung desselben Wertes f\u00fcr alle Bildschirmgr\u00f6\u00dfen oder der Verwendung eines eigenen Wertes pro Bildschirmgr\u00f6\u00dfe."],"Use the same %s on all screensizes.":["Die gleichen %s f\u00fcr alle Bildschirmgr\u00f6\u00dfen verwenden."],"Large screens":["Gro\u00dfe Bildschirme"],"Medium screens":["Mittlere Bildschirme"],"Small screens":["Kleine Bildschirme"],"Text labelling a interface as controlling a given layout property (eg: margin) for a given screen size.\u0004Controls the %1$s property for %2$s viewports.":["Steuert die Eigenschaft %1$s f\u00fcr %2$s-Ansichten."],"Open Media Library":["Mediathek \u00f6ffnen"],"The media file has been replaced":["Die Mediendatei wurde ersetzt"],"Currently selected":["Aktuell ausgew\u00e4hlt"],"Recently updated":["K\u00fcrzlich aktualisiert"],"Search or type url":["Suchen oder URL eingeben"],"Press ENTER to add this link":["Dr\u00fccke ENTER, um diesen Link hinzuzuf\u00fcgen"],"Currently selected link settings":["Aktuell ausgew\u00e4hlte Link-Einstellungen"],"Image size":["Bildgr\u00f6\u00dfe"],"Gradient Presets":["Verlaufs-Voreinstellungen"],"Select a variation to start with.":["W\u00e4hle die Variante, mit der du beginnen m\u00f6chtest."],"Choose variation":["Variante ausw\u00e4hlen"],"Generic label for block inserter button\u0004Add block":["Block hinzuf\u00fcgen"],"directly add the only allowed block\u0004Add %s":["%s hinzuf\u00fcgen"],"%s block added":["Block %s hinzugef\u00fcgt"],"Multiple selected blocks":["Mehrere ausgew\u00e4hlte Bl\u00f6cke"],"You are currently in edit mode. To return to the navigation mode, press Escape.":["Du befindest dich im Bearbeitungsmodus. Um zum Navigationsmodus zur\u00fcckzukehren, dr\u00fccke Escape."],"Midnight":["Mitternacht"],"Electric grass":["Elektrisches Gras"],"Pale ocean":["Blasser Ozean"],"Luminous dusk":["Leuchtende Abendd\u00e4mmerung"],"Blush bordeaux":["Bordeauxrot"],"Blush light purple":["R\u00f6tliches Hellviolett"],"Cool to warm spectrum":["K\u00fchles bis warmes Spektrum"],"Very light gray to cyan bluish gray":["Sehr helles Grau bis bl\u00e4uliches Grau"],"Luminous vivid orange to vivid red":["Leuchtend lebendiges Orange bis lebendiges Rot"],"Luminous vivid amber to luminous vivid orange":["Leuchtend lebendiges Bernstein bis leuchtend lebendiges Orange"],"Light green cyan to vivid green cyan":["Hellgr\u00fcnes Cyan bis lebendig gr\u00fcnes Cyan"],"Vivid cyan blue to vivid purple":["Kr\u00e4ftiges Cyanblau bis kr\u00e4ftiges Lila"],"Block breadcrumb":["Block-Breadcrumbs"],"(%s: gradient %s)":["(%s: Verlauf %s)"],"(%s: color %s)":["(%s: Farbe %s)"],"Gradient":["Verlauf"],"Solid":["Einfarbig"],"(Gradient: %s)":["(Verlauf: %s)"],"(Color: %s)":["(Farbe: %s)"],"No Preview Available.":["Vorschau ist nicht verf\u00fcgbar."],"Block navigation":["Block-Navigation"],"Move right":["Nach rechts verschieben"],"Move left":["Nach links verschieben"],"Open in new tab":["In einem neuen Tab \u00f6ffnen"],"Separate multiple classes with spaces.":["Trenne mehrere Klassen durch Leerzeichen."],"Learn more about anchors":["Mehr \u00fcber Anker erfahren"],"Enter a word or two \u2014 without spaces \u2014 to make a unique web address just for this heading, called an \u201canchor.\u201d Then, you\u2019ll be able to link directly to this section of your page.":["Gib ein oder zwei W\u00f6rter \u2013 ohne Leerzeichen \u2013 ein, um eine eindeutige Webadresse nur f\u00fcr diese \u00dcberschrift zu erstellen, die als \u201eAnker\u201c bezeichnet wird. Dann kannst du direkt zu diesem Abschnitt deiner Seite verlinken."],"Default Style":["Standard-Stil"],"Upload a video file, pick one from your media library, or add one with a URL.":["Lade eine Videodatei hoch, w\u00e4hle eine aus deiner Mediathek oder f\u00fcge eine mit einer URL hinzu."],"Upload an image file, pick one from your media library, or add one with a URL.":["Lade eine Bilddatei hoch, w\u00e4hle eine aus deiner Mediathek oder f\u00fcge eine mit einer URL hinzu."],"Upload an audio file, pick one from your media library, or add one with a URL.":["Lade eine Audiodatei hoch, w\u00e4hle eine aus deiner Mediathek oder f\u00fcge eine mit einer URL hinzu."],"Upload a media file or pick one from your media library.":["Lade eine Mediendatei hoch, w\u00e4hle eine aus deiner Mediathek oder f\u00fcge eine mit einer URL hinzu."],"Skip":["\u00dcberspringen"],"This color combination may be hard for people to read.":["Diese Farbkombination ist unter Umst\u00e4nden f\u00fcr manche Menschen schwer lesbar."],"Add a block":["Einen Block hinzuf\u00fcgen"],"While writing, you can press \/<\/kbd> to quickly insert new blocks.":["W\u00e4hrend des Schreibens kannst du \u201e\/\u201c dr\u00fccken, um schnell neue Bl\u00f6cke einzuf\u00fcgen."],"Vivid purple":["Kr\u00e4ftiges Violett"],"Block vertical alignment setting label\u0004Change vertical alignment":["Vertikale Ausrichtung \u00e4ndern"],"Block vertical alignment setting\u0004Vertically Align Bottom":["Vertikal unten ausrichten"],"Block vertical alignment setting\u0004Vertically Align Middle":["Vertikal mittig ausrichten"],"Block vertical alignment setting\u0004Vertically Align Top":["Vertikal oben ausrichten"],"Change block type or style":["Blocktyp oder Stil \u00e4ndern"],"block style\u0004Default":["Standard"],"More rich text controls":["Mehr Rich-Text-Steuerelemente"],"Attempt Block Recovery":["Versuch der Blockwiederherstellung"],"%d word":["%d Wort","%d W\u00f6rter"],"To edit this block, you need permission to upload media.":["Du ben\u00f6tigst die Berechtigung, Medien hochzuladen, um diesen Block bearbeiten zu k\u00f6nnen."],"(selected block)":["(ausgew\u00e4hlter Block)"],"Block tools":["Block-Werkzeuge"],"%s block selected.":["%s Block ausgew\u00e4hlt.","%s Bl\u00f6cke ausgew\u00e4hlt."],"Start writing or type \/ to choose a block":["Schreib etwas oder tippe \u201e\/\u201c zur Blockauswahl"],"Block icon":["Block-Icon"],"Align text right":["Text rechts ausrichten"],"Align text center":["Text zentriert ausrichten"],"Align text left":["Text links ausrichten"],"Image dimensions":["Bildabmessungen"],"Color settings":["Farbeinstellungen"],"Reusable blocks":["Wiederverwendbare Bl\u00f6cke"],"Document":["Dokument"],"%d block":["%d Block","%d Bl\u00f6cke"],"Insert a new block after the selected block(s).":["Neuen Block nach dem\/den ausgew\u00e4hlten Block\/Bl\u00f6cken einf\u00fcgen."],"Insert a new block before the selected block(s).":["Neuen Block vor dem\/den ausgew\u00e4hlten Block\/Bl\u00f6cken einf\u00fcgen."],"Remove the selected block(s).":["Ausgew\u00e4hlte(n) Block\/Bl\u00f6cke entfernen."],"Duplicate the selected block(s).":["Ausgew\u00e4hlte(n) Block\/Bl\u00f6cke duplizieren."],"Select all text when typing. Press again to select all blocks.":["W\u00e4hle bei der Eingabe den gesamten Text aus. Dr\u00fccke erneut, um alle Bl\u00f6cke auszuw\u00e4hlen."],"Navigate to the nearest toolbar.":["Zur n\u00e4chsten Werkzeugleiste navigieren."],"font size name\u0004Huge":["Riesig"],"font size name\u0004Large":["Gro\u00df"],"font size name\u0004Medium":["Mittel"],"font size name\u0004Small":["Klein"],"Cyan bluish gray":["Cyan-bl\u00e4uliches Grau"],"Vivid cyan blue":["Lebhaftes Cyanblau"],"Pale cyan blue":["Helles Blau"],"Vivid green cyan":["Lebhaftes Cyangr\u00fcn"],"Light green cyan":["Helles Gr\u00fcn"],"Luminous vivid amber":["Kr\u00e4ftiges Gelb"],"Luminous vivid orange":["Leuchtendes Orange"],"Vivid red":["Klares Rot"],"Pale pink":["Helles Rosa"],"Additional CSS class(es)":["Zus\u00e4tzliche CSS-Klasse(n)"],"HTML anchor":["HTML-Anker"],"Link settings":["Link-Einstellungen"],"Skip to the selected block":["Zum ausgew\u00e4hlten Block wechseln"],"Paste or type URL":["URL einf\u00fcgen oder eingeben"],"Manage all reusable blocks":["Alle wiederverwendbaren Bl\u00f6cke verwalten"],"Reusable":["Wiederverwendbar"],"blocks\u0004Most used":["Meistgenutzt"],"Search for a block":["Suche nach einem Block"],"%d result found.":["%d Ergebnis gefunden.","%d Ergebnisse gefunden."],"This color combination may be hard for people to read. Try using a brighter background color and\/or a darker text color.":["Diese Farbkombination ist unter Umst\u00e4nden f\u00fcr manche Menschen schwer lesbar. W\u00e4hle eine hellere Hintergrundfarbe und\/oder eine dunklere Textfarbe."],"This color combination may be hard for people to read. Try using a darker background color and\/or a brighter text color.":["Diese Farbkombination ist unter Umst\u00e4nden f\u00fcr manche Menschen schwer lesbar. W\u00e4hle eine dunklere Hintergrundfarbe und\/oder eine hellere Textfarbe."],"Transform to":["Umwandeln in"],"Change type of %d block":["Typ des %d Blocks \u00e4ndern","Typ der %d Bl\u00f6cke \u00e4ndern"],"Remove Block":["Block entfernen","Bl\u00f6cke entfernen"],"Insert After":["Danach einf\u00fcgen"],"Insert Before":["Davor einf\u00fcgen"],"Duplicate":["Duplizieren"],"More options":["Mehr Optionen"],"Edit visually":["Visuell bearbeiten"],"Edit as HTML":["Als HTML bearbeiten"],"Move %1$d block from position %2$d down by one place":["%1$d Block von Position %2$d um einen Platz nach unten verschieben","%1$d Bl\u00f6cke von Position %2$d um einen Platz nach unten verschieben"],"Move %1$d block from position %2$d up by one place":["%1$d Block von Position %2$d um einen Platz nach oben verschieben","%1$d Bl\u00f6cke von Position %2$d um einen Platz nach oben verschieben"],"Blocks cannot be moved down as they are already at the bottom":["Bl\u00f6cke k\u00f6nnen nicht nach unten verschoben werden, da sie sich bereits unten befinden."],"Blocks cannot be moved up as they are already at the top":["Bl\u00f6cke k\u00f6nnen nicht nach oben verschoben werden, da sie sich bereits oben befinden."],"Block %1$s is at the beginning of the content and can\u2019t be moved right":["Der %1$s-Block befindet sich am Anfang des Inhalts und kann nicht nach rechts verschoben werden"],"Move %1$s block from position %2$d up to position %3$d":["Block %1$s von Position %2$d nach oben zur Position %3$d verschieben"],"Block %1$s is at the end of the content and can\u2019t be moved right":["Der %1$s-Block befindet sich am Ende des Inhalts und kann nicht nach rechts verschoben werden"],"Move %1$s block from position %2$d down to position %3$d":["Block %1$s von Position %2$d nach unten zur Position %3$d verschieben"],"Block %s is the only block, and cannot be moved":["Block %s ist der einzige Block und kann nicht verschoben werden"],"Block: %s":["Block: %s"],"This block contains unexpected or invalid content.":["Dieser Block enth\u00e4lt unerwarteten oder ung\u00fcltigen Inhalt."],"imperative verb\u0004Resolve":["L\u00f6sen"],"Convert to Blocks":["In Bl\u00f6cke umwandeln"],"Resolve Block":["Block l\u00f6sen"],"Convert to Classic Block":["In Block konvertieren"],"This block has encountered an error and cannot be previewed.":["In diesem Block ist ein Fehler aufgetreten und eine Vorschau ist nicht m\u00f6glich."],"Add block":["Block hinzuf\u00fcgen"],"No block selected.":["Kein Block ausgew\u00e4hlt."],"After Conversion":["Nach Umwandlung"],"Convert to HTML":["Zu HTML umwandeln"],"Current":["Aktuell"],"Change alignment":["Ausrichtung \u00e4ndern"],"Full width":["Gesamte Breite"],"Wide width":["Weite Breite"],"Change text alignment":["Textausrichtung \u00e4ndern"],"Reset":["Zur\u00fccksetzen"],"font size name\u0004Normal":["Normal"],"No results.":["Keine Ergebnisse."],"%d result found, use up and down arrow keys to navigate.":["%d Ergebnis gefunden, benutze die Pfeile nach oben oder unten zum Navigieren.","%d Ergebnisse gefunden, benutze die Pfeile nach oben oder unten zum Navigieren."],"Blocks":["Bl\u00f6cke"],"Search Results":["Suchergebnisse"],"Link selected.":["Link ausgew\u00e4hlt."],"Paste URL or type to search":["URL einf\u00fcgen oder zum Suchen tippen"],"Link CSS Class":["CSS-Klasse des Links"],"Tools":["Werkzeuge"],"Replace":["Ersetzen"],"Align left":["Linksb\u00fcndig"],"Align center":["Zentrieren"],"Align right":["Rechtsb\u00fcndig"],"Move up":["Nach oben"],"Move down":["Nach unten"],"Not set":["Nicht gesetzt"],"Insert from URL":["Von URL einf\u00fcgen"],"Video":["Video"],"Audio":["Audio"],"Large":["Gro\u00df"],"Media Library":["Mediathek"],"Media File":["Mediendatei"],"Attachment Page":["Anhang-Seite"],"Clear selection.":["Auswahl l\u00f6schen."],"Background Color":["Hintergrundfarbe"],"Text Color":["Textfarbe"],"Upload":["Hochladen"],"Styles":["Styles"],"Link Color":["Linkfarbe"],"Image":["Bild"],"Remove link":["Link entfernen"],"Insert link":["Link einf\u00fcgen"],"Link Rel":["Link-Beziehung"],"Copy":["Kopieren"],"Search results for \"%s\"":["Suchergebnisse f\u00fcr \u201e%s\u201c"],"No results found.":["Es wurden keine Ergebnisse gefunden, die deinen Suchkriterien entsprechen."],"All":["Alle"],"Height":["H\u00f6he"],"Edit link":["Link bearbeiten"],"Width":["Breite"],"White":["Wei\u00df"],"Black":["Schwarz"],"Select":["Ausw\u00e4hlen"],"Close":["Schlie\u00dfen"],"Uncategorized":["Allgemein"],"Media":["Medien"],"Full Size":["Vollst\u00e4ndige Gr\u00f6\u00dfe"],"Medium":["Mittel"],"Thumbnail":["Vorschaubild"],"Cancel":["Abbrechen"],"Preview":["Vorschau"],"Submit":["Senden"],"Advanced":["Erweitert"],"Apply":["\u00dcbernehmen"],"Edit":["Bearbeiten"],"URL":["URL"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-81c889563f09dd13de1701135dc62941.json b/web/app/languages/de_DE-81c889563f09dd13de1701135dc62941.json new file mode 100644 index 0000000..f90bf47 --- /dev/null +++ b/web/app/languages/de_DE-81c889563f09dd13de1701135dc62941.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"The file URL has been copied to your clipboard":["Die Datei-URL wurde in deine Zwischenablage kopiert"],"%s item selected":["%s Element ausgew\u00e4hlt","%s Elemente ausgew\u00e4hlt"]}},"comment":{"reference":"wp-includes\/js\/media-views.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-81d6f084cb273e02e15b01bd9ece87f7.json b/web/app/languages/de_DE-81d6f084cb273e02e15b01bd9ece87f7.json new file mode 100644 index 0000000..a5379d3 --- /dev/null +++ b/web/app/languages/de_DE-81d6f084cb273e02e15b01bd9ece87f7.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Your new password has not been saved.":["Dein neues Passwort wurde nicht gespeichert."],"Hide":["Verstecken"],"Show":["Anzeigen"],"Confirm use of weak password":["Best\u00e4tige die Verwendung eines schwachen Passworts."],"Hide password":["Passwort verbergen"],"Show password":["Passwort anzeigen"]}},"comment":{"reference":"wp-admin\/js\/user-profile.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-8240df461220d1d3a028a9a4c5652a5b.json b/web/app/languages/de_DE-8240df461220d1d3a028a9a4c5652a5b.json new file mode 100644 index 0000000..c9b7461 --- /dev/null +++ b/web/app/languages/de_DE-8240df461220d1d3a028a9a4c5652a5b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"There is %s error which must be fixed before you can update this file.":["Es gibt %s Fehler, der korrigiert werden muss, bevor du diese Datei aktualisieren kannst.","Es gibt %s Fehler, die korrigiert werden m\u00fcssen, bevor du diese Datei aktualisieren kannst."],"Something went wrong. Your change may not have been saved. Please try again. There is also a chance that you may need to manually fix and upload the file over FTP.":["Etwas ging schief. Deine \u00c4nderung wurde vermutlich nicht gespeichert. Bitte erneut versuchen. Es besteht die M\u00f6glichkeit, dass du den Fehler manuell beheben und die Datei per FTP hochladen musst."],"The changes you made will be lost if you navigate away from this page.":["Beim Verlassen der Seite werden deine \u00c4nderungen verworfen."]}},"comment":{"reference":"wp-admin\/js\/theme-plugin-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-8860e58c20c6a2ab5876a0f07be43bd9.json b/web/app/languages/de_DE-8860e58c20c6a2ab5876a0f07be43bd9.json new file mode 100644 index 0000000..d4c89e6 --- /dev/null +++ b/web/app/languages/de_DE-8860e58c20c6a2ab5876a0f07be43bd9.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Block library":["Block-Bibliothek"],"Open save panel":["Speichern-Bedienfeld \u00f6ffnen"],"Preview in new tab":["Vorschau in neuem Tab"],"Contain text cursor inside active block":["Enth\u00e4lt den Textcursor innerhalb des aktiven Blocks"],"Keyboard options":["Tastatur-Optionen"],"Enable the Most Used Blocks category in the block library":["Die Kategorie Meistgenutzte Bl\u00f6cke in der Block-Bibliothek aktivieren"],"Left sidebar":["Linke Seitenleiste"],"Open document settings":["Dokument-Einstellungen \u00f6ffnen"],"Open block settings":["Block-Einstellungen \u00f6ffnen"],"Here's a detailed guide.":["Hier ist eine detaillierte Anleitung."],"New to the block editor? Want to learn more about using it? ":["Neu im Block-Editor? Willst du mehr \u00fcber die Bedienung erfahren? "],"Learn how to use the block editor":["Lerne, wie du den Block-Editor verwendest"],"All of the blocks available to you live in the block library. You\u2019ll find it wherever you see the icon.":["Alle dir zur Verf\u00fcgung stehenden Bl\u00f6cke befinden sich in der Block-Bibliothek. Du findest sie \u00fcberall dort, wo du das Symbol siehst."],"Get to know the block library":["Mache dich mit der Block-Bibliothek vertraut"],"Each block comes with its own set of controls for changing things like color, width, and alignment. These will show and hide automatically when you have a block selected.":["Jeder Block wird mit einem eigenen Set von Bedienelementen geliefert, um Dinge wie Farbe, Breite und Ausrichtung zu \u00e4ndern. Diese werden automatisch ein- und ausgeblendet, wenn du einen Block ausgew\u00e4hlt hast."],"Make each block your own":["Mache jeden Block zu deinem eigenen"],"In the WordPress editor, each paragraph, image, or video is presented as a distinct \u201cblock\u201d of content.":["Im WordPress-Editor wird jeder Absatz, jedes Bild oder Video als ein eigener \u201eBlock\u201c des Inhalts dargestellt."],"Get started":["Erste Schritte"],"Welcome to the block editor":["Willkommen beim Block-Editor"],"inserter":["Inserter"],"View post":["Beitrag anzeigen"],"Page attributes":["Seiten-Attribute"],"https:\/\/wordpress.org\/support\/article\/wordpress-editor\/":["https:\/\/wordpress.org\/support\/article\/wordpress-editor\/"],"Welcome Guide":["Willkommens-Guide"],"Keyboard shortcuts":["Tastaturk\u00fcrzel"],"Editor footer":["Footer des Editors"],"Generic label for block inserter button\u0004Add block":["Block hinzuf\u00fcgen"],"All content copied.":["Der gesamte Inhalt wurde kopiert."],"Disable & Reload":["Deaktivieren und neu laden"],"Enable & Reload":["Aktivieren und neu laden"],"A page reload is required for this change. Make sure your content is saved before reloading.":["F\u00fcr diese \u00c4nderung ist ein Neuladen der Seite erforderlich. Vergewissere dich, dass dein Inhalt gespeichert ist, bevor du ihn neu l\u00e4dst."],"Pre-publish checks":["Pr\u00fcfungen vor der Ver\u00f6ffentlichung"],"%d block is disabled.":["%d Block ist deaktiviert.","%d Bl\u00f6cke sind deaktiviert."],"Display these keyboard shortcuts.":["Diese Tastaturk\u00fcrzel anzeigen."],"More tools & options":["Mehr Werkzeuge und Optionen"],"Read about permalinks":["Lies mehr \u00fcber Permalinks"],"The last part of the URL.":["Der letzte Teil der URL."],"URL Slug":["URL-Titelform"],"Fullscreen mode deactivated":["Vollbildmodus deaktiviert"],"Fullscreen mode activated":["Vollbildmodus aktiviert"],"Spotlight mode deactivated":["Spotlight-Modus deaktiviert"],"Spotlight mode activated":["Spotlight-Modus aktiviert"],"Top toolbar deactivated":["Obere Werkzeugleiste deaktiviert"],"Top toolbar activated":["Obere Werkzeugleiste aktiviert"],"Feature activated":["Funktion aktiviert"],"Feature deactivated":["Funktion deaktiviert"],"Block Manager":["Block-Manager"],"Block (selected)":["Block (ausgew\u00e4hlt)"],"Document (selected)":["Dokument (ausgew\u00e4hlt)"],"Top toolbar":["Obere Werkzeugleiste"],"Permalink":["Permalink"],"Custom fields":["Individuelle Felder"],"Code editor selected":["Code-Editor ausgew\u00e4hlt"],"Visual editor selected":["Visueller Editor ausgew\u00e4hlt"],"Copy all content":["Kompletten Inhalt kopieren"],"This block can only be used once.":["Dieser Block kann nur einmal verwendet werden."],"Transform into:":["Umwandeln in:"],"Find original":["Original suchen"],"Show Block Settings":["Block-Einstellungen anzeigen"],"Hide Block Settings":["Block-Einstellungen verbergen"],"Additional settings are now available in the Editor block settings sidebar":["Zus\u00e4tzliche Einstellungen sind jetzt in der Seitenleiste des Editors unter \u201eErweiterte Einstellungen\u201c verf\u00fcgbar"],"Block settings closed":["Block-Einstellungen geschlosssen"],"Exit code editor":["Code-Editor verlassen"],"Editing code":["Code bearbeiten"],"Editor settings":["Editor-Einstellungen"],"Document":["Dokument"],"Close settings":["Einstellungen schlie\u00dfen"],"Visibility":["Sichtbarkeit"],"Status & visibility":["Status und Sichtbarkeit"],"Pin to toolbar":["Zur Werkzeugleiste hinzuf\u00fcgen"],"Unpin from toolbar":["Aus der Werkzeugleiste entfernen"],"Close plugin":["Plugin schlie\u00dfen"],"Advanced panels":["Weitere Bedienfelder"],"Discussion":["Diskussion"],"Document panels":["Dokument-Bedienfelder"],"Open publish panel":["Ver\u00f6ffentlichungs-Eingabefeld \u00f6ffnen"],"Editor content":["Editor-Inhalt"],"Editor publish":["Editor: Ver\u00f6ffentlichen"],"Remove a link.":["Einen Link entfernen."],"Convert the selected text into a link.":["Ausgew\u00e4hlten Text in einen Link umwandeln."],"Underline the selected text.":["Den ausgew\u00e4hlten Text unterstreichen."],"Make the selected text italic.":["Macht den ausgew\u00e4hlten Text kursiv."],"Make the selected text bold.":["Macht den ausgew\u00e4hlten Text fett."],"Text formatting":["Textformatierung"],"Forward-slash":["Schr\u00e4gstrich"],"Change the block type after adding a new paragraph.":["Den Blocktyp nach Hinzuf\u00fcgen eines neuen Absatzes \u00e4ndern."],"Block shortcuts":["Block-Tastaturk\u00fcrzel"],"Selection shortcuts":["Auswahl-Tastaturk\u00fcrzel"],"Switch between visual editor and code editor.":["Zwischen visuellem Editor und Code-Editor wechseln."],"Navigate to the previous part of the editor.":["Zum vorherigen Teil des Editors navigieren."],"Navigate to the next part of the editor.":["Zum n\u00e4chsten Teil des Editors navigieren."],"Open the block navigation menu.":["Das Block-Navigationsmen\u00fc \u00f6ffnen."],"Show or hide the settings sidebar.":["Die Einstellungen-Seitenleiste anzeigen oder verbergen."],"Global shortcuts":["Globale Tastaturk\u00fcrzel"],"Work without distraction":["Arbeiten ohne Ablenkung"],"Fullscreen mode":["Vollbildmodus"],"Focus on one block at a time":["Fokussierung auf einen Block nach dem anderen."],"Spotlight mode":["Spotlight-Modus"],"Access all block and document tools in a single place":["Zugang zu allen Bl\u00f6cken und Dokument-Werkzeugen von einem Platz aus"],"noun\u0004View":["Ansicht"],"Options":["Ansicht anpassen"],"Editor":["Editor"],"Code editor":["Code-Editor"],"Visual editor":["Visueller Editor"],"Editor top bar":["Obere Editor-Leiste"],"Document tools":["Dokument-Werkzeuge"],"Document and block tools":["Dokument- und Block-Werkzeuge"],"Copied!":["Kopiert!"],"Manage all reusable blocks":["Alle wiederverwendbaren Bl\u00f6cke verwalten"],"Available block types":["Verf\u00fcgbare Blocktypen"],"Search for a block":["Suche nach einem Block"],"No blocks found.":["Keine Bl\u00f6cke gefunden."],"Back":["Zur\u00fcck"],"Tools":["Werkzeuge"],"Footer":["Footer"],"Block":["Block","%d Bl\u00f6cke"],"Remove":["Entfernen"],"Featured image":["Beitragsbild"],"General":["Allgemein"],"Toggle fullscreen mode.":["Vollbildmodus umschalten."],"Settings":["Einstellungen"],"Help":["Hilfe"],"(no title)":["(kein Titel)"],"Close":["Schlie\u00dfen"],"Uncategorized":["Allgemein"],"Header":["Header"],"Content":["Inhalt"],"Plugins":["Plugins"],"Excerpt":["Textauszug"],"Publish":["Ver\u00f6ffentlichen"]}},"comment":{"reference":"wp-includes\/js\/dist\/edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-93882e8f9976382d7f724ac595ed7151.json b/web/app/languages/de_DE-93882e8f9976382d7f724ac595ed7151.json new file mode 100644 index 0000000..1a86c22 --- /dev/null +++ b/web/app/languages/de_DE-93882e8f9976382d7f724ac595ed7151.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Your session has expired. You can log in again from this page or go to the login page.":["Deine Sitzung ist abgelaufen. Du kannst dich erneut anmelden oder zur Anmelde-Seite gehen."]}},"comment":{"reference":"wp-includes\/js\/wp-auth-check.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-947c76bb5095da30e16668eec15406b2.json b/web/app/languages/de_DE-947c76bb5095da30e16668eec15406b2.json new file mode 100644 index 0000000..63d532a --- /dev/null +++ b/web/app/languages/de_DE-947c76bb5095da30e16668eec15406b2.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"The following block has been added to your site.":["Der folgende Block wurde deiner Website hinzugef\u00fcgt.","Die folgenden Bl\u00f6cke wurden deiner Website hinzugef\u00fcgt."],"Added: %d block":["Hinzugef\u00fcgt: %d Block","Hinzugef\u00fcgt: %d Bl\u00f6cke"],"Reload":["Neu laden"],"Adding\u2026":["Hinzuf\u00fcgen\u2026"],"This author has %1$d block.":["Dieser Autor hat %1$d Block.","Dieser Autor hat %1$d Bl\u00f6cke."],"Error installing block. You can reload the page and try again.":["Fehler beim Installieren des Blocks. Du kannst die Seite neu laden und es erneut versuchen."],"This block is already installed. Try reloading the page.":["Dieser Block ist bereits installiert. Versuche, die Seite neu zu laden."],"An error occurred.":["Ein Fehler ist aufgetreten."],"Error registering block. Try reloading the page.":["Fehler beim Registrieren des Blocks. Versuche, die Seite neu zu laden."],"%s block icon":["Icon des Blocks %s"],"No blocks found in your library. These blocks can be downloaded and installed:":["Es konnten keine Bl\u00f6cke in deiner Bibliothek gefunden werden. Diese Bl\u00f6cke k\u00f6nnen heruntergeladen und installiert werden:"],"No blocks found in your library. We did find %d block available for download.":["Es konnten keine Bl\u00f6cke in deiner Bibliothek gefunden werden. Wir haben %d Block gefunden, der zum Download zur Verf\u00fcgung steht.","Es konnten keine Bl\u00f6cke in deiner Bibliothek gefunden werden. Wir haben %d Bl\u00f6cke gefunden, die zum Download zur Verf\u00fcgung stehen."],"No blocks found in your library.":["Es konnten keine Bl\u00f6cke in deiner Bibliothek gefunden werden."],"Retry":["Erneut versuchen"],"%d active installation":["%d aktive Installation","%d aktive Installationen"],"This author has %1$d block, with an average rating of %2$d.":["Dieser Autor hat %1$d Block, mit einer durchschnittlichen Bewertung von %2$d.","Dieser Autor hat %1$d Bl\u00f6cke, mit einer durchschnittlichen Bewertung von %2$d."],"Authored by %s":["Erstellt von %s"],"%d total rating":["%d Gesamtbewertung","%d Gesamtbewertungen"],"%s out of 5 stars":["%s von 5 Sternen"],"Add block":["Block hinzuf\u00fcgen"],"Updated %s":["%s aktualisiert"],"By %s":["Von %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/block-directory.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-9b256ea9cd54df92095e04c76758ceb0.json b/web/app/languages/de_DE-9b256ea9cd54df92095e04c76758ceb0.json new file mode 100644 index 0000000..b7ae34b --- /dev/null +++ b/web/app/languages/de_DE-9b256ea9cd54df92095e04c76758ceb0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Remove From Bulk Edit":["Aus der Mehrfachbearbeitung entfernen"],"Error while saving the changes.":["Fehler beim Speichern der \u00c4nderungen."],"Changes saved.":["\u00c4nderungen gespeichert."],"tag delimiter\u0004,":[","],"(no title)":["(kein Titel)"]}},"comment":{"reference":"wp-admin\/js\/inline-edit-post.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-9c3519f4870fac83dc0dbf18cb6bd4c4.json b/web/app/languages/de_DE-9c3519f4870fac83dc0dbf18cb6bd4c4.json new file mode 100644 index 0000000..b140838 --- /dev/null +++ b/web/app/languages/de_DE-9c3519f4870fac83dc0dbf18cb6bd4c4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Clear color":["Farbe l\u00f6schen"],"Select default color":["Standardfarbe ausw\u00e4hlen"],"Color value":["Farbwert"],"Select Color":["Farbe ausw\u00e4hlen"],"Clear":["Leeren"],"Default":["Standard"]}},"comment":{"reference":"wp-admin\/js\/color-picker.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-9d47a87c240c1d10701cd6a02b28aa1b.json b/web/app/languages/de_DE-9d47a87c240c1d10701cd6a02b28aa1b.json new file mode 100644 index 0000000..3c074ed --- /dev/null +++ b/web/app/languages/de_DE-9d47a87c240c1d10701cd6a02b28aa1b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Term added.":["Begriff hinzugef\u00fcgt."],"Term removed.":["Begriff entfernt."],"Remove term:":["Entferne Begriff:"],"tag delimiter\u0004,":[","]}},"comment":{"reference":"wp-admin\/js\/tags-box.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-a25d1cc7bf7ca0b4e114f6bea64943f4.json b/web/app/languages/de_DE-a25d1cc7bf7ca0b4e114f6bea64943f4.json new file mode 100644 index 0000000..1f5905d --- /dev/null +++ b/web/app/languages/de_DE-a25d1cc7bf7ca0b4e114f6bea64943f4.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Backtick":["Backtick"],"Period":["Punkt"],"Comma":["Komma"]}},"comment":{"reference":"wp-includes\/js\/dist\/keycodes.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-a9dc201dcd011fe71849743133052619.json b/web/app/languages/de_DE-a9dc201dcd011fe71849743133052619.json new file mode 100644 index 0000000..c0cad9a --- /dev/null +++ b/web/app/languages/de_DE-a9dc201dcd011fe71849743133052619.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"You are about to permanently delete this menu.\n'Cancel' to stop, 'OK' to delete.":["Du bist dabei, dieses Men\u00fc endg\u00fcltig zu l\u00f6schen.\n\u201aAbbrechen\u2018 zum Beenden, \u201aOK\u2018 zum L\u00f6schen."],"missing menu item navigation label\u0004(no label)":["(ohne Bezeichnung)"],"The changes you made will be lost if you navigate away from this page.":["Beim Verlassen der Seite werden deine \u00c4nderungen verworfen."],"No results found.":["Es wurden keine Ergebnisse gefunden, die deinen Suchkriterien entsprechen."]}},"comment":{"reference":"wp-admin\/js\/nav-menu.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-ac23eee47530ac63a1178c827db28087.json b/web/app/languages/de_DE-ac23eee47530ac63a1178c827db28087.json new file mode 100644 index 0000000..e0f0f3f --- /dev/null +++ b/web/app/languages/de_DE-ac23eee47530ac63a1178c827db28087.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"text direction\u0004ltr":["ltr"]}},"comment":{"reference":"wp-includes\/js\/dist\/i18n.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-bf0f094965d3d4a95b47babcb35fc136.json b/web/app/languages/de_DE-bf0f094965d3d4a95b47babcb35fc136.json new file mode 100644 index 0000000..3d8c0e2 --- /dev/null +++ b/web/app/languages/de_DE-bf0f094965d3d4a95b47babcb35fc136.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Word count type. Do not translate!\u0004words":["words"],"Save draft":["Entwurf speichern"],"Review changes.":["\u00c4nderungen \u00fcberpr\u00fcfen."],"Hide changes.":["\u00c4nderungen ausblenden."],"Are you ready to save?":["Bereit zum Speichern?"],"Changes have been made to multiple entity types.":["Es wurden \u00c4nderungen an mehreren Entit\u00e4tstypen vorgenommen."],"Changes have been made to your %1$s, %2$s, %3$s, %4$s, and %5$s.":["Es wurden \u00c4nderungen an deinen folgenden Objekten vorgenommen: %1$s, %2$s, %3$s, %4$s und %5$s."],"Changes have been made to your %1$s, %2$s, %3$s, and %4$s.":["Es wurden \u00c4nderungen an deinen folgenden Objekten vorgenommen: %1$s, %2$s, %3$s und %4$s."],"Changes have been made to your %1$s, %2$s, and %3$s.":["Es wurden \u00c4nderungen an deinen folgenden Objekten vorgenommen: %1$s, %2$s und %3$s."],"Changes have been made to your %1$s and %2$s.":["Es wurden \u00c4nderungen an deinen folgenden Objekten vorgenommen: %1$s und %2$s."],"Changes have been made to your %s.":["Es wurden \u00c4nderungen an deinem folgenden Objekt vorgenommen: %s."],"There are no changes.":["Es gibt keine \u00c4nderungen."],"site":["Website","Websites"],"page":["Seite","Seiten"],"template":["Template","Templates"],"template part":["Template-Teil","Template-Teile"],"Slug":["Titelform"],"Update\u2026":["Aktualisieren\u2026"],"Submit for Review\u2026":["Zur \u00dcberpr\u00fcfung einreichen\u2026"],"Pending review":["Ausstehende \u00dcberpr\u00fcfung"],"https:\/\/wordpress.org\/support\/article\/excerpt\/":["https:\/\/wordpress.org\/support\/article\/excerpt\/"],"Ungrouping blocks from within a Group block back into individual blocks within the Editor \u0004Ungroup":["Gruppierung aufheben"],"verb\u0004Group":["Gruppieren"],"Restore the backup":["Das Backup wiederherstellen"],"The backup of this post in your browser is different from the version below.":["Das Backup dieses Beitrags in deinem Browser unterscheidet sich von der untenstehenden Version."],"Search Terms":["Suchbegriffe"],"Stick to the top of the blog":["Beitrag auf der Startseite halten"],"Exit the Editor":["Den Editor verlassen"],"To edit the featured image, you need permission to upload media.":["Du ben\u00f6tigst die Berechtigung, Medien hochzuladen, um das Beitragsbild bearbeiten zu k\u00f6nnen."],"Start writing with text or HTML":["Beginne mit dem Schreiben von Text oder HTML"],"Type text or HTML":["Schreib Text oder HTML"],"post":["Beitrag"],"Redo your last undo.":["Wiederhole dein letztes R\u00fcckg\u00e4ngigmachen."],"Undo your last changes.":["Deine letzten \u00c4nderungen r\u00fcckg\u00e4ngig machen."],"Save your changes.":["Deine \u00c4nderungen speichern."],"Untitled Reusable Block":["Unbenannter wiederverwendbarer Block"],"Block deleted.":["Block gel\u00f6scht."],"Block created.":["Block erstellt."],"Trashing failed":["Das Verschieben in den Papierkorb ist fehlgeschlagen"],"Updating failed.":["Aktualisierung fehlgeschlagen."],"Scheduling failed.":["Planung fehlgeschlagen."],"Publishing failed.":["Ver\u00f6ffentlichung fehlgeschlagen."],"You have unsaved changes. If you proceed, they will be lost.":["Du hast ungespeicherte \u00c4nderungen. Falls du weitermachst, gehen diese verloren."],"Reset the template":["Template zur\u00fccksetzen"],"Keep it as is":["So behalten, wie es ist"],"The content of your post doesn\u2019t match the template assigned to your post type.":["Der Inhalt deines Beitrags passt nicht zu dem Template, das deinem Inhaltstyp zugeordnet ist."],"Resetting the template may result in loss of content, do you want to continue?":["Das Zur\u00fccksetzen des Templates kann zum Verlust von Inhalten f\u00fchren, m\u00f6chtest du fortfahren?"],"Document Outline":["Gliederung des Dokuments"],"Paragraphs":["Abs\u00e4tze"],"Headings":["\u00dcberschriften"],"Document Statistics":["Dokument-Statistiken"],"Content structure":["Inhaltliche Struktur"],"View the autosave":["Die automatische Speicherung ansehen"],"There is an autosave of this post that is more recent than the version below.":["Es gibt eine automatische Speicherung dieses Beitrags, die aktueller ist, als die unten stehende Version."],"Protected with a password you choose. Only those with the password can view this post.":["Gesch\u00fctzt mit einem von dir gew\u00e4hlten Passwort. Nur wer das Passwort hat, kann diesen Beitrag sehen."],"Only visible to site admins and editors.":["Nur f\u00fcr Website-Administratoren und Redakteure sichtbar."],"Visible to everyone.":["Sichtbar f\u00fcr jeden."],"Use a secure password":["W\u00e4hle ein sicheres Passwort"],"Create password":["Passwort erstellen"],"Post Visibility":["Sichtbarkeit des Beitrags"],"Would you like to privately publish this post now?":["M\u00f6chtest du diesen Beitrag jetzt als privat ver\u00f6ffentlichen?"],"Move to trash":["In den Papierkorb verschieben"],"Add title":["Titel hier eingeben"],"Terms":["Begriffe"],"Parent Term":["\u00dcbergeordneter Begriff"],"Add new term":["Neuen Begriff hinzuf\u00fcgen"],"Add new category":["Neue Kategorie hinzuf\u00fcgen"],"term\u0004Remove %s":["%s entfernen"],"term\u0004%s removed":["%s entfernt"],"term\u0004%s added":["%s hinzugef\u00fcgt"],"Term":["Begriff"],"Tag":["Schlagwort"],"Add new Term":["Neuen Begriff hinzuf\u00fcgen"],"Switch to draft":["Auf Entwurf umstellen"],"Are you sure you want to unschedule this post?":["Bist du sicher, dass du diesen Beitrag aus dem Zeitplan nehmen willst?"],"Are you sure you want to unpublish this post?":["Bist du sicher, dass dieser Beitrag nicht mehr ver\u00f6ffentlicht sein soll?"],"Immediately":["Sofort"],"Saving":["Speichert"],"Autosaving":["Automatische Speicherung"],"Publish:":["Ver\u00f6ffentlichung:"],"Visibility:":["Sichtbarkeit:"],"Double-check your settings before publishing.":["Pr\u00fcfe deine Einstellungen sorgf\u00e4ltig vor dem Ver\u00f6ffentlichen."],"Are you ready to publish?":["Bereit zur Ver\u00f6ffentlichung?"],"Your work will be published at the specified date and time.":["Deine Arbeit wird zu dem bestimmten Datum und Zeit ver\u00f6ffentlicht werden."],"Are you ready to schedule?":["Bist du bereit f\u00fcr die Ver\u00f6ffentlichung?"],"When you\u2019re ready, submit your work for review, and an Editor will be able to approve it for you.":["Wenn du fertig bist, reiche deine Arbeit zur \u00dcberpr\u00fcfung ein, und ein Editor kann sie f\u00fcr dich genehmigen."],"Are you ready to submit for review?":["Bist du bereit, eine \u00dcberpr\u00fcfung einzureichen?"],"Copy Link":["Link kopieren"],"Copied!":["Kopiert!"],"%s address":["%s-Adresse"],"What\u2019s next?":["Was kommt als N\u00e4chstes?"],"is now live.":["ist jetzt live."],"is now scheduled. It will go live on":["ist jetzt geplant f\u00fcr die Ver\u00f6ffentlichung am"],"Tags help users and search engines navigate your site and find your content. Add a few keywords to describe your post.":["Mithilfe von Schlagw\u00f6rtern k\u00f6nnen Benutzer und Suchmaschinen auf deiner Website navigieren und deine Inhalte finden. F\u00fcge einige Schlagw\u00f6rter hinzu, um deinen Beitrag zu beschreiben."],"Add tags":["Schlagw\u00f6rter hinzuf\u00fcgen"],"Apply the \"%1$s\" format.":["Das \u201e%1$s\u201c-Format verwenden."],"Your theme uses post formats to highlight different kinds of content, like images or videos. Apply a post format to see this special styling.":["Dein Theme verwendet Beitragsformate, um verschiedene Arten von Inhalten wie Bilder oder Videos hervorzuheben. W\u00e4hle ein Beitragsformat aus, um dieses spezielle Styling zu sehen."],"Use a post format":["Verwende ein Beitragsformat"],"Always show pre-publish checks.":["Pr\u00fcfungen vor der Ver\u00f6ffentlichung immer anzeigen."],"Close panel":["Panel schlie\u00dfen"],"Submit for Review":["Zur \u00dcberpr\u00fcfung einreichen"],"Scheduling\u2026":["Wird geplant\u2026"],"Updating\u2026":["Aktualisieren\u2026"],"Publishing\u2026":["Ver\u00f6ffentlichen\u2026"],"imperative verb\u0004Preview":["Vorschau"],"Generating preview\u2026":["Vorschau wird erstellt \u2026"],"Allow pingbacks & trackbacks":["Pingbacks und Trackbacks erlauben"],"Take Over":["\u00dcbernehmen"],"Another user is currently working on this post, which means you cannot make changes, unless you take over.":["Ein anderer Benutzer arbeitet momentan an diesem Beitrag. Du kannst daher keine \u00c4nderungen vornehmen, au\u00dfer du \u00fcbernimmst."],"%s is currently working on this post, which means you cannot make changes, unless you take over.":["%s arbeitet momentan an diesem Beitrag. Du kannst daher keine \u00c4nderungen vornehmen, au\u00dfer du \u00fcbernimmst."],"Another user now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["Ein anderer Benutzer hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine \u00c4nderungen bis zu diesem Moment wurden gespeichert."],"%s now has editing control of this post. Don\u2019t worry, your changes up to this moment have been saved.":["%s hat nun die Kontrolle zur Bearbeitung dieses Beitrags. Keine Sorge, deine \u00c4nderungen bis zu diesem Moment wurden gespeichert."],"Avatar":["Avatar"],"This post is already being edited.":["Dieser Beitrag wird schon bearbeitet."],"Someone else has taken over this post.":["Jemand anderes hat diesen Beitrag \u00fcbernommen."],"%d Revision":["%d Revision","%d Revisionen"],"Post Format":["Beitragsformat"],"Chat":["Chat"],"Standard":["Standard"],"Aside":["Kurzmitteilung"],"Edit or update the image":["Das Bild bearbeiten oder aktualisieren"],"Learn more about manual excerpts":["Mehr \u00fcber manuelle Textausz\u00fcge erfahren (engl.)"],"Write an excerpt (optional)":["Schreibe einen Textauszug (optional)"],"Allow comments":["Kommentare erlauben"],"no parent":["kein Elternelement"],"no title":["kein Titel"],"Order":["Reihenfolge"],"%d result found.":["%d Ergebnis gefunden.","%d Ergebnisse gefunden."],"The editor has encountered an unexpected error.":["Im Editor ist ein unerwarteter Fehler aufgetreten."],"Copy Error":["Fehlermeldung kopieren"],"Copy Post Text":["Beitragstext kopieren"],"Attempt Recovery":["Wiederherstellung versuchen"],"(Multiple H1 headings are not recommended)":["(Mehrere H1-\u00dcberschriften werden nicht empfohlen)"],"(Your theme may already use a H1 for the post title)":["(Dein Theme k\u00f6nnte bereits eine H1-\u00dcberschrift f\u00fcr den Beitragstitel benutzen)"],"(Incorrect heading level)":["(Falsche \u00dcberschriftsebene)"],"(Empty heading)":["(Leere \u00dcberschrift)"],"Remove from Reusable blocks":["Von wiederverwendbaren Bl\u00f6cken entfernen"],"Convert to Regular Block":["In normalen Block umwandeln"],"Add to Reusable blocks":["Zu wiederverwendbaren Bl\u00f6cken hinzuf\u00fcgen"],"Category":["Kategorie"],"(opens in a new tab)":["(\u00f6ffnet in neuem Tab)"],"Block updated.":["Block aktualisiert."],"Blocks":["Bl\u00f6cke"],"Gallery":["Galerie"],"Schedule\u2026":["Planen\u2026"],"Replace Image":["Bild ersetzen"],"Template:":["Template:"],"Status":["Status"],"Set featured image":["Beitragsbild festlegen"],"Video":["Video"],"Audio":["Audio"],"Selected":["Ausgew\u00e4hlt"],"Saved":["Gespeichert"],"Remove image":["Bild entfernen"],"Featured image":["Beitragsbild"],"Link":["Link"],"Words":["W\u00f6rter"],"Parent Category":["\u00dcbergeordnete Kategorie"],"Password Protected":["Passwortgesch\u00fctzt"],"Image":["Bild"],"Quote":["Zitat"],"Suggestion:":["Vorschlag:"],"Untitled":["Ohne Titel"],"(no title)":["(kein Titel)"],"Select":["Ausw\u00e4hlen"],"Add new tag":["Neues Schlagwort hinzuf\u00fcgen"],"Update":["Aktualisieren"],"Schedule":["Planen"],"Public":["\u00d6ffentlich"],"Private":["Privat"],"Save as pending":["Als ausstehend speichern"],"Redo":["Wiederholen"],"Cancel":["Abbrechen"],"Save":["Speichern"],"Publish":["Ver\u00f6ffentlichen"],"Undo":["R\u00fcckg\u00e4ngig"],"Author":["Autor"],"Draft":["Entwurf"],"Title":["Titel"]}},"comment":{"reference":"wp-includes\/js\/dist\/editor.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-bf23b24175490c2e46aaf92ff6a0c70f.json b/web/app/languages/de_DE-bf23b24175490c2e46aaf92ff6a0c70f.json new file mode 100644 index 0000000..70b2918 --- /dev/null +++ b/web/app/languages/de_DE-bf23b24175490c2e46aaf92ff6a0c70f.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Dismiss":["Ausblenden"]}},"comment":{"reference":"wp-includes\/js\/wp-pointer.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-ca28138671823450e87dfd354f7afc6b.json b/web/app/languages/de_DE-ca28138671823450e87dfd354f7afc6b.json new file mode 100644 index 0000000..8ce5232 --- /dev/null +++ b/web/app/languages/de_DE-ca28138671823450e87dfd354f7afc6b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-09-09 20:03:16+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Error while saving the changes.":["Fehler beim Speichern der \u00c4nderungen."],"Changes saved.":["\u00c4nderungen gespeichert."]}},"comment":{"reference":"wp-admin\/js\/inline-edit-tax.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-daeb084aab42199d26393a56c3465bc0.json b/web/app/languages/de_DE-daeb084aab42199d26393a56c3465bc0.json new file mode 100644 index 0000000..e1c6c69 --- /dev/null +++ b/web/app/languages/de_DE-daeb084aab42199d26393a56c3465bc0.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Select or Upload Media":["Medium w\u00e4hlen oder hochladen"],"Error while uploading file %s to the media library.":["Fehler beim Hochladen der Datei %s in die Mediathek."],"This file is empty.":["Diese Datei ist leer."],"Sorry, this file type is not supported here.":["Dieser Dateityp wird hier leider nicht unterst\u00fctzt."],"Sorry, this file type is not permitted for security reasons.":["Dieser Dateityp ist aus Sicherheitsgr\u00fcnden leider nicht erlaubt."],"This file exceeds the maximum upload size for this site.":["Diese Datei \u00fcberschreitet die maximale Upload-Gr\u00f6\u00dfe f\u00fcr diese Website."]}},"comment":{"reference":"wp-includes\/js\/dist\/media-utils.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-e2791ba830489d23043be8650a22a22b.json b/web/app/languages/de_DE-e2791ba830489d23043be8650a22a22b.json new file mode 100644 index 0000000..76409c8 --- /dev/null +++ b/web/app/languages/de_DE-e2791ba830489d23043be8650a22a22b.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Block rendered as empty.":["Block wird als leer dargestellt."],"Error loading block: %s":["Fehler beim Laden des Blocks: %s"]}},"comment":{"reference":"wp-includes\/js\/dist\/server-side-render.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-f575f481034e90e21d832e415fd95fcf.json b/web/app/languages/de_DE-f575f481034e90e21d832e415fd95fcf.json new file mode 100644 index 0000000..07fadbe --- /dev/null +++ b/web/app/languages/de_DE-f575f481034e90e21d832e415fd95fcf.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"Could not set that as the thumbnail image. Try a different attachment.":["Das Bild konnte nicht als Vorschaubild gesetzt werden. Versuche es mit einem anderen."]}},"comment":{"reference":"wp-includes\/js\/media-editor.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE-f8f49d9fc4a9cf7d78ec99285417bd9c.json b/web/app/languages/de_DE-f8f49d9fc4a9cf7d78ec99285417bd9c.json new file mode 100644 index 0000000..d8d925a --- /dev/null +++ b/web/app/languages/de_DE-f8f49d9fc4a9cf7d78ec99285417bd9c.json @@ -0,0 +1 @@ +{"translation-revision-date":"2020-08-28 08:13:59+0000","generator":"GlotPress\/3.0.0-alpha.2","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","plural-forms":"nplurals=2; plural=n != 1;","lang":"de"},"by %s":["von %s"]," \u2026 ":[" \u2026 "],"Display author name":["Autorname anzeigen"],"Opacity":["Deckkraft"],"Change content position":["Inhaltsposition \u00e4ndern"],"Minimum height of cover":["Mindesth\u00f6he des Covers"],"25 \/ 50 \/ 25":["25 \/ 50 \/ 25"],"33 \/ 33 \/ 33":["33 \/ 33 \/ 33"],"70 \/ 30":["70 \/ 30"],"30 \/ 70":["30 \/ 70"],"50 \/ 50":["50 \/ 50"],"This column count exceeds the recommended amount and may cause visual breakage.":["Diese Spaltenanzahl \u00fcbersteigt die empfohlene Menge und kann zu einem optischen Bruch f\u00fchren."],"Color Settings":["Farb-Einstellungen"],"Browser default":["Browser-Standard"],"Edit gallery image":["Galerie-Bild bearbeiten"],"Upload external image":["Externes Bild hochladen"],"Crop":["Zuschneiden"],"Image uploaded.":["Bild hochgeladen."],"Rotate":["Drehen"],"Zoom":["Zoomen"],"Could not edit image. %s":["Das Bild konnte nicht bearbeitet werden. %s"],"2:3":["2:3"],"3:4":["3:4"],"9:16":["9:16"],"10:16":["10:16"],"Portrait":["Hochformat"],"3:2":["3:2"],"4:3":["4:3"],"16:9":["16:9"],"16:10":["16:10"],"Landscape":["Querformat"],"Aspect Ratio":["Seitenverh\u00e4ltnis"],"survey":["Umfrage"],"social":["Social"],"Display an icon linking to a social media profile or website.":["Ein Icon anzeigen, das mit einem Social-Media-Profil oder einer Website verlinkt ist."],"Briefly describe the link to help screen reader users.":["Beschreibe den Link in wenigen Worten, um Benutzern von Screenreadern zu helfen."],"Link label":["Link-Label"],"%s label":["%s-Label"],"Social Icon":["Social Icon"],"block keywords\u0004links":["Links"],"Display icons linking to your social media profiles or websites.":["Icons anzeigen, die mit deinen Social-Media-Profilen oder Websites verlinkt sind."],"Social Icons":["Social Icons"],"Select poster image":["Vorschaubild ausw\u00e4hlen"],"Poster image":["Vorschaubild"],"poem":["Gedicht"],"WHAT was he doing, the great god Pan,\n\tDown in the reeds by the river?\nSpreading ruin and scattering ban,\nSplashing and paddling with hoofs of a goat,\nAnd breaking the golden lilies afloat\n With the dragon-fly on the river.":["DER PANTHER im Jardin des Plantes, Paris\n Sein Blick ist vom Vor\u00fcbergehn der St\u00e4be\nso m\u00fcd geworden, dass er nichts mehr h\u00e4lt.\nIhm ist, als ob es tausend St\u00e4be g\u00e4be\nund hinter tausend St\u00e4ben keine Welt.\n Der weiche Gang geschmeidig starker Schritte, \u2026"],"Footer label":["Footer-Label"],"Header label":["Header-Label"],"Matt Mullenweg":["Matt Mullenweg"],"EXT. XANADU - FAINT DAWN - 1940 (MINIATURE)\nWindow, very small in the distance, illuminated.\nAll around this is an almost totally black screen. Now, as the camera moves slowly towards the window which is almost a postage stamp in the frame, other forms appear;":["EXT. XANADU - FAINT DAWN - 1940 (MINIATUR)\nFenster, in der Ferne sehr klein, erleuchtet.\nAu\u00dfen herum ist die Bildfl\u00e4che fast v\u00f6llig schwarz, das Fenster wirkt wie eine eingerahmte Briefmarke. Langsam bewegt sich die Kamera darauf zu, allm\u00e4hlich werden andere Formen sichtbar."],"Unsupported":["Nicht unterst\u00fctzt"],"Image alignment":["Bildausrichtung"],"Display featured image":["Beitragsbild anzeigen"],"Featured image settings":["Beitragsbild-Einstellungen"],"Full post":["Vollst\u00e4ndiger Beitrag"],"Show:":["Anzeigen:"],"download":["herunterladen"],"Media file":["Mediendatei"],"Suspendisse commodo neque lacus, a dictum orci interdum et.":["Suspendisse commodo neque lacus, a dictum orci interdum et."],"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis.":["Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent et eros eu felis."],"\/\/ A \"block\" is the abstract term used\n\/\/ to describe units of markup that\n\/\/ when composed together, form the\n\/\/ content or layout of a page.\nregisterBlockType( name, settings );":["\/\/ Ein \u201eBlock\u201c ist der abstrakte Begriff, der verwendet wird,\n\/\/ um Einheiten des Markups zu beschreiben.\n\/\/ Zusammengesetzt bilden sie den\n\/\/ Inhalt oder das Layout einer Seite.\nregisterBlockType( name, settings );"],"Prompt visitors to take action with a group of button-style links.":["Besucher mit einer Gruppe an Links im Button-Stil auffordern, aktiv zu werden."],"Buttons":["Buttons"],"recording":["Aufnahme"],"podcast":["Podcast"],"Link to":["Link zu"],"Gallery settings":["Galerie-Einstellungen"],"ADD MEDIA":["MEDIEN HINZUF\u00dcGEN"],"Level %1$s. %2$s":["Ebene %1$s. %2$s"],"Level %s. Empty.":["Ebene %s. Leer."],"Change heading level":["\u00dcberschriften-Ebene \u00e4ndern"],"(Note: many devices and browsers do not display this text.)":["(Hinweis: Viele Ger\u00e4te und Browser zeigen diesen Text nicht an.)"],"Describe the role of this image on the page.":["Beschreibe die Bedeutung dieses Bildes auf der Seite."],"Title attribute":["Title-Attribut"],"Embed a TikTok video.":["Ein TikTok-Video einbetten."],"Image size":["Bildgr\u00f6\u00dfe"],"Enter address":["Adresse eingeben"],"Pill Shape":["Pillenform"],"Logos Only":["Nur Logos"],"Grid view":["Rasteransicht"],"List view":["Listenansicht"],"Sorting and filtering":["Sortieren und filtern"],"Post meta settings":["Beitrags-Meta-Einstellungen"],"Post content":["Beitragsinhalt\n"],"Post content settings":["Einstellungen f\u00fcr Beitragsinhalte"],"Percentage width":["Prozentuale Breite"],"Column settings":["Spalteneinstellungen"],"There is no poster image currently selected":["Es ist derzeit kein Vorschaubild ausgew\u00e4hlt"],"The current poster image url is %s":["Die aktuelle Vorschaubild-URL lautet %s"],"Play inline":["Inline abspielen"],"Note: Autoplaying videos may cause usability issues for some visitors.":["Hinweis: Die automatische Wiedergabe von Videos kann bei einigen Besuchern zu Problemen bei der Bedienung f\u00fchren."],"Note: Autoplaying audio may cause usability issues for some visitors.":["Hinweis: Die automatische Wiedergabe von Audio kann bei einigen Besuchern zu Problemen bei der Bedienung f\u00fchren."],"Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim.":["Nam risus massa, ullamcorper consectetur eros fermentum, porta aliquet ligula. Sed vel mauris nec enim."],"Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit.":["Etiam et egestas lorem. Vivamus sagittis sit amet dolor quis lobortis. Integer sed fermentum arcu, id vulputate lacus. Etiam fermentum sem eu quam hendrerit."],"Three columns; wide center column":["Drei Spalten; breite Mittelspalte"],"Three columns; equal split":["Drei Spalten; gleiche Aufteilung"],"Two columns; two-thirds, one-third split":["Zwei Spalten; zwei Drittel, ein Drittel geteilt"],"Two columns; one-third, two-thirds split":["Zwei Spalten; ein Drittel, zwei Drittel geteilt"],"Two columns; equal split":["Zwei Spalten; gleiche Breite"],"Fill":["F\u00fcllen"],"Call to Action":["Klick mich"],"Link rel":["Link rel"],"Border radius":["Eckenradius"],"Welcome to the wonderful world of blocks\u2026":["Willkommen in der wunderbaren Welt der Bl\u00f6cke\u2026"],"In quoting others, we cite ourselves.":["Indem wir andere zitieren, zitieren wir uns selbst."],"cite":["zitieren"],"Reverse list numbering":["Nummerierung der Liste umkehren"],"Start value":["Anfangswert"],"Ordered list settings":["Einstellungen f\u00fcr die nummerierte Liste"],"One of the hardest things to do in technology is disrupt yourself.":["Egal was ich tue, ich komme immer nach Hause zu meinem Blog."],"Upload a file or pick one from your media library.":["Lade eine Datei hoch oder w\u00e4hle eine aus deiner Mediathek."],"Open in new tab":["In einem neuen Tab \u00f6ffnen"],"Attachment page":["Anhang-Seite"],"December 6, 2018":["6. Dezember 2018"],"February 21, 2019":["21. Februar 2019"],"May 7, 2019":["7. Mai 2019"],"Release Date":["Ver\u00f6ffentlichungsdatum"],"Jazz Musician":["Jazzmusiker"],"Footer section":["Fu\u00dfzeile"],"Header section":["Kopfzeile"],"Change column alignment":["Spaltenausrichtung \u00e4ndern"],"Create Table":["Tabelle erstellen"],"Insert a table for sharing data.":["F\u00fcge eine Tabelle ein, um Daten zu teilen."],"Align Column Right":["Spalte rechts ausrichten"],"Align Column Center":["Spalte mittig ausrichten"],"Align Column Left":["Spalte links ausrichten"],"Snow Patrol<\/strong>":["Snow Patrol - live<\/strong>"],"Upload an image or video file, or pick one from your media library.":["Lade eine Bild- oder Videodatei hoch oder w\u00e4hle eine aus deiner Mediathek."],"Clear Media":["Medien entfernen"],"Mont Blanc appears\u2014still, snowy, and serene.":["Der Mont Blanc erscheint \u2013 still, schneereich und ruhig."],"\u2014 Kobayashi Issa (\u4e00\u8336)":["\u2014 Kobayashi Issa (\u4e00\u8336)"],"The wren
Earns his living
Noiselessly.":["The wren
Earns his living
Noiselessly."],"Leave empty if the image is purely decorative.":["Lass das Feld leer, wenn das Bild nur der Dekoration dient."],"Describe the purpose of the image":["Beschreibe den Zweck des Bildes"],"Crop image to fill entire column":["Bild zuschneiden, um die gesamte Spalte zu f\u00fcllen."],"Write gallery caption\u2026":["Eine Galerie-Beschriftung einf\u00fcgen\u2026"],"Move image forward":["Bild vorw\u00e4rts verschieben"],"Move image backward":["Bild r\u00fcckw\u00e4rts verschieben"],"Code is Poetry":["Code ist Poesie"],"In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing.":["In einem Dorfe von la Mancha, dessen Namen ich mich nicht entsinnen mag, lebte unl\u00e4ngst ein Edler, einer von denen, die eine Lanze auf dem Vorplatz haben, einen alten Schild, einen d\u00fcrren Klepper und einen Jagdhund."],"Six.":["Sechs."],"Five.":["F\u00fcnf."],"Four.":["Vier."],"Three.":["Drei."],"Two.":["Zwei."],"One.":["Eins."],"section":["Abschnitt"],"row":["Zeile"],"wrapper":["Wrapper"],"container":["Container"],"A block that groups other blocks.":["Ein Block, der andere Bl\u00f6cke gruppiert."],"Group":["Gruppe"],"Learn more about embeds":["Mehr \u00fcber Einbettungen erfahren"],"https:\/\/wordpress.org\/support\/article\/embeds\/":["https:\/\/wordpress.org\/support\/article\/embeds\/"],"Paste a link to the content you want to display on your site.":["F\u00fcge einen Link zu dem Inhalt ein, den du auf deiner Website anzeigen m\u00f6chtest."],"Tag Cloud settings":["Einstellungen der Schlagw\u00f6rter-Wolke"],"- Select -":["- Ausw\u00e4hlen -"],"feed":["Feed"],"atom":["Atom"],"Display entries from any RSS or Atom feed.":["Eintr\u00e4ge von jedem RSS- oder Atom-Feed anzeigen."],"Max number of words in excerpt":["Maximale Anzahl von W\u00f6rtern im Textauszug"],"Display excerpt":["Textauszug anzeigen"],"Display date":["Datum anzeigen"],"Display author":["Autor anzeigen"],"RSS settings":["RSS-Einstellungen"],"Edit RSS URL":["RSS-URL bearbeiten"],"Use URL":["URL verwenden"],"Enter URL here\u2026":["URL hier eingeben\u2026"],"find":["finden"],"Help visitors find your content.":["Hilft Besuchern, deine Inhalte zu finden."],"Add button text\u2026":["Button-Text hinzuf\u00fcgen\u2026"],"Button text":["Text des Buttons"],"Optional placeholder\u2026":["Optionaler Platzhalter\u2026"],"Optional placeholder text":["Optionaler Platzhaltertext"],"Add label\u2026":["Label hinzuf\u00fcgen\u2026"],"Label text":["Label-Text"],"Content before this block will be shown in the excerpt on your archives page.":["Inhalte vor diesem Block werden im Textauszug auf der Archivseite angezeigt."],"Hide the excerpt on the full content page":["Den Textauszug auf der kompletten Inhaltsseite ausblenden"],"The excerpt is visible.":["Der Textauszug ist sichtbar."],"The excerpt is hidden.":["Der Textauszug ist verborgen."],"archive":["Archive"],"posts":["Beitr\u00e4ge"],"A calendar of your site\u2019s posts.":["Ein Kalender mit den Beitr\u00e4gen deiner Website."],"link":["Link"],"Prompt visitors to take action with a button-style link.":["Besucher mit einem Link im Button-Stil auffordern, aktiv zu werden."],"Focal point picker":["Fokuspunkt-Auswahl"],"image %1$d of %2$d in gallery":["Bild %1$d von %2$d in der Galerie"],"Embedded content from %s can't be previewed in the editor.":["Eingebettete Inhalte von %s k\u00f6nnen im Editor nicht in der Vorschau angezeigt werden."],"Sorry, this content could not be embedded.":["Leider konnte dieser Inhalt nicht eingebettet werden."],"Embed Amazon Kindle content.":["Amazon-Kindle-Inhalt einbetten."],"ebook":["E-Book"],"block style\u0004Default":["Standard"],"keyboard key\u0004Space":["Leertaste"],"keyboard key\u0004Backspace":["Backspace"],"Embed Crowdsignal (formerly Polldaddy) content.":["Crowdsignal-Inhalt (ehemals Polldaddy) einbetten."],"content placeholder\u0004Content\u2026":["Inhalt\u2026"],"button label\u0004Convert to link":["In Link umwandeln"],"button label\u0004Try again":["Nochmal versuchen"],"This image has an empty alt attribute":["Dieses Bild hat ein leeres Alt-Attribut"],"This image has an empty alt attribute; its file name is %s":["Dieses Bild hat ein leeres Alt-Attribut. Der Dateiname ist %s"],"Empty block; start writing or type forward slash to choose a block":["Leerer Block; schreib los oder gib einen Schr\u00e4gstrich ein, um einen Block auszuw\u00e4hlen"],"Paragraph block":["Absatz-Block"],"Start writing or type \/ to choose a block":["Schreib etwas oder tippe \u201e\/\u201c zur Blockauswahl"],"Page Break":["Seitenumbruch"],"Stack on mobile":["Auf Mobilger\u00e4ten stapeln"],"movie":["Film"],"Embed a video from your media library or upload a new one.":["Ein Video aus deiner Mediathek einbetten oder ein neues hochladen."],"Playback controls":["Wiedergabe-Steuerung"],"Muted":["Stummgeschaltet"],"Video settings":["Video-Einstellungen"],"Write\u2026":["Schreibe\u2026"],"poetry":["Poesie"],"Insert poetry. Use special spacing formats. Or quote song lyrics.":["F\u00fcge Poesie ein. Benutze spezielle Abstandsformate. Oder zitiere Liedtexte."],"Verse":["Vers"],"New Column":["Neue Spalte"],"This block is deprecated. Please use the Columns block instead.":["Dieser Block ist veraltet. Bitte verwende stattdessen den Spalten-Block."],"Text Columns (deprecated)":["Textspalten (veraltet)"],"Stripes":["Streifen"],"Insert a table \u2014 perfect for sharing charts and data.":["F\u00fcge eine Tabelle ein \u2013 ideal um Diagramme und Daten zu teilen."],"Fixed width table cells":["Tabellenzellen mit fester Breite"],"Table settings":["Tabellen-Einstellungen"],"Edit table":["Tabelle bearbeiten"],"Row Count":["Anzahl der Zeilen"],"Column Count":["Anzahl der Spalten"],"Delete Column":["Spalte l\u00f6schen"],"Add Column After":["Spalte rechts hinzuf\u00fcgen"],"Add Column Before":["Spalte links hinzuf\u00fcgen"],"Delete Row":["Zeile l\u00f6schen"],"Add Row After":["Zeile unten hinzuf\u00fcgen"],"Add Row Before":["Zeile oben hinzuf\u00fcgen"],"Write subheading\u2026":["Schreibe einen Untertitel\u2026"],"This block is deprecated. Please use the Paragraph block instead.":["Dieser Block ist veraltet. Bitte benutze stattdessen den Absatz-Block."],"Subheading (deprecated)":["Zwischen\u00fcberschrift (veraltet)"],"Height in pixels":["H\u00f6he in Pixel"],"Spacer settings":["Abstandshalter-Einstellungen"],"Add white space between blocks and customize its height.":["Wei\u00dfraum zwischen den Bl\u00f6cken hinzuf\u00fcgen und dessen H\u00f6he anpassen."],"Spacer":["Abstandshalter"],"Write shortcode here\u2026":["Schreibe hier den Shortcode\u2026"],"Insert additional custom elements with a WordPress shortcode.":["Zus\u00e4tzliche individuelle Elemente \u00fcber einen WordPress-Shortcode einf\u00fcgen."],"Shortcode":["Shortcode"],"Dots":["Punkte"],"Wide Line":["Breite Linie"],"divider":["Trennlinie"],"horizontal-line":["horizontale Linie"],"Create a break between ideas or sections with a horizontal separator.":["Trenne deine Ideen oder Abschnitte mit einem horizontalen Trennelement."],"Separator":["Trennzeichen"],"block style\u0004Large":["Gro\u00df"],"blockquote":["Zitat"],"Give quoted text visual emphasis. \"In quoting others, we cite ourselves.\" \u2014 Julio Cort\u00e1zar":["Gib einem Zitat eine optische Hervorhebung. \u201eIndem wir andere zitieren, zitieren wir uns selbst.\u201c \u2013 Julio Cort\u00e1zar"],"Solid color":["Farbf\u00fcllend"],"Give special visual emphasis to a quote from your text.":["Gib einem Textausschnitt eine besondere optische Hervorhebung."],"Pullquote":["Pullquote"],"Main color":["Hauptfarbe"],"Write citation\u2026":["Schreibe eine Quellenangabe\u2026"],"Write quote\u2026":["Schreibe ein Zitat\u2026"],"Write preformatted text\u2026":["Schreibe vorformatierten Text\u2026"],"Add text that respects your spacing and tabs, and also allows styling.":["F\u00fcge Text hinzu, der deine Abst\u00e4nde und Tabulatoren respektiert und ebenfalls Styling erlaubt."],"text":["Text"],"Start with the building block of all narrative.":["Starte mit dem Grundbaustein aller Erz\u00e4hlungen."],"Drop cap":["Initialbuchstabe"],"Text settings":["Text-Einstellungen"],"Toggle to show a large initial letter.":["Umschalten, um einen gro\u00dfen Anfangsbuchstaben anzuzeigen."],"Showing large initial letter.":["Gro\u00dfen Anfangsbuchstaben darstellen."],"pagination":["Seitennummerierung"],"next page":["n\u00e4chste Seite"],"Separate your content into a multi-page experience.":["Trenne deinen Inhalt und pr\u00e4sentiere ihn auf mehreren Seiten."],"block name\u0004More":["Mehr"],"Your site doesn\u2019t include support for this block.":["Deine Website unterst\u00fctzt diesen Block nicht."],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact or remove it entirely.":["Deine Website unterst\u00fctzt den \u201e%s\u201c-Block nicht. Du kannst diesen Block intakt lassen oder ihn ganz entfernen."],"Keep as HTML":["Als HTML behalten"],"Your site doesn\u2019t include support for the \"%s\" block. You can leave this block intact, convert its content to a Custom HTML block, or remove it entirely.":["Deine Website unterst\u00fctzt den \u201e%s\u201c-Block nicht. Du kannst diesen Block intakt lassen, seinen Inhalt in einen individuellen HTML-Block wandeln oder ihn ganz entfernen."],"Media area":["Medienbereich"],"Set media and words side-by-side for a richer layout.":["Setze Medien und W\u00f6rter nebeneinander f\u00fcr ein ansprechenderes Layout."],"Media & Text":["Medien und Text"],"Media & Text settings":["Einstellungen f\u00fcr Medien und Text"],"Show media on right":["Medien rechts anzeigen"],"Show media on left":["Medien links anzeigen"],"Write list\u2026":["Schreibe eine Liste\u2026"],"Indent list item":["Listenelement einr\u00fccken"],"Outdent list item":["Listenelement ausr\u00fccken"],"Convert to ordered list":["In eine nummerierte Liste umwandeln"],"Convert to unordered list":["In eine Aufz\u00e4hlungsliste umwandeln"],"numbered list":["Nummerierte Liste"],"Create a bulleted or numbered list.":["Eine Aufz\u00e4hlungs- oder nummerierte Liste erstellen."],"recent posts":["Neueste Beitr\u00e4ge"],"Display a list of your most recent posts.":["Zeige eine Liste der neuesten Beitr\u00e4ge an."],"Latest Posts":["Neueste Beitr\u00e4ge"],"Display post date":["Beitragsdatum anzeigen"],"recent comments":["aktuelle Kommentare"],"Display a list of your most recent comments.":["Zeige eine Liste der letzten Kommentare an."],"Latest Comments":["Neueste Kommentare"],"Number of comments":["Anzahl der Kommentare"],"Display avatar":["Avatar anzeigen"],"Latest comments settings":["Einstellungen f\u00fcr Neueste Kommentare"],"photo":["Foto"],"Insert an image to make a visual statement.":["F\u00fcge ein Bild ein, um eine visuelle Aussage zu machen."],"Alt text (alternative text)":["Alt-Text (Alternativer Text)"],"Image settings":["Bild-Einstellungen"],"Edit image":["Bild bearbeiten"],"Write HTML\u2026":["Schreibe etwas in HTML\u2026"],"embed":["Embed"],"Add custom HTML code and preview it as you edit.":["Individuellen HTML-Code hinzuf\u00fcgen, mit Voransicht w\u00e4hrend des Bearbeitens."],"subtitle":["Untertitel"],"title":["Titel"],"Introduce new sections and organize content to help visitors (and search engines) understand the structure of your content.":["Organisiere Inhalte durch die Einf\u00fchrung neuer Abschnitte, damit Besucher (und Suchmaschinen) die Struktur deiner Inhalte besser verstehen k\u00f6nnen."],"Heading":["\u00dcberschrift"],"Heading %d":["\u00dcberschrift %d"],"Write heading\u2026":["Schreib eine \u00dcberschrift\u2026"],"photos":["Fotos"],"images":["Bilder"],"Display multiple images in a rich gallery.":["Zeige mehrere Bilder in einer ansprechenden Galerie an."],"Crop images":["Bilder zuschneiden"],"Drag images, upload new ones or select files from your library.":["Ziehe Bilder hierher, lade neue hoch oder w\u00e4hle Dateien aus deiner Mediathek aus."],"Thumbnails are not cropped.":["Vorschaubilder werden nicht abgeschnitten."],"Thumbnails are cropped to align.":["Vorschaubilder werden beschnitten, um sie auszurichten."],"Show download button":["Download-Button anzeigen"],"Download button settings":["Download-Button-Einstellungen"],"Text link settings":["Text-Link-Einstellungen"],"button label\u0004Download":["Herunterladen"],"pdf":["pdf"],"document":["Dokument"],"Add a link to a downloadable file.":["F\u00fcge einen Link zu einer herunterladbaren Datei hinzu."],"Copy URL":["URL kopieren"],"Write file name\u2026":["Schreibe einen Dateinamen\u2026"],"Add a block that displays content pulled from other sites, like Twitter, Instagram or YouTube.":["F\u00fcge einen Block hinzu, der Inhalte von anderen Websites wie Twitter, Instagram oder YouTube anzeigt."],"Embed videos, images, tweets, audio, and other content from external sources.":["Videos, Bilder, Tweets, Audios und andere Inhalte von externen Speicherorten einbetten."],"block title\u0004Embed":["Einbetten"],"Embedded content from %s":["Eingebetteter Inhalt von %s"],"button label\u0004Embed":["Einbetten"],"Enter URL to embed here\u2026":["URL zum Einbetten hier eingeben\u2026"],"%s URL":["%s URL"],"Embedding\u2026":["Einbetten\u2026"],"Resize for smaller devices":["F\u00fcr kleinere Ger\u00e4te skalieren"],"Media settings":["Medien-Einstellungen"],"Edit URL":["URL bearbeiten"],"This embed may not preserve its aspect ratio when the browser is resized.":["Das Seitenverh\u00e4ltnis dieser Einbettung k\u00f6nnte verloren gehen, wenn die Anzeigegr\u00f6\u00dfe des Browsers ver\u00e4ndert wird."],"This embed will preserve its aspect ratio when the browser is resized.":["Das Seitenverh\u00e4ltnis dieser Einbettung wird beibehalten, wenn die Anzeigegr\u00f6\u00dfe des Browsers ver\u00e4ndert wird."],"Embed a WordPress.tv video.":["Ein WordPress.tv-Video einbetten."],"Embed a VideoPress video.":["Ein VideoPress-Video einbetten."],"Embed a Tumblr post.":["Einen Tumblr-Beitrag einbetten."],"Embed a TED video.":["Ein TED-Video einbetten."],"Embed Speaker Deck content.":["Speaker-Deck-Inhalt einbetten."],"Embed SmugMug content.":["SmugMug-Inhalt einbetten."],"Embed Slideshare content.":["Slideshare-Inhalt einbetten."],"Embed Scribd content.":["Scribd-Inhalt einbetten."],"Embed Screencast content.":["Screencast-Inhalt einbetten."],"Embed ReverbNation content.":["ReverbNation-Inhalt einbetten."],"Embed a Reddit thread.":["Einen Reddit-Thread einbetten."],"Embed Polldaddy content.":["Polldaddy-Inhalt einbetten."],"Embed Mixcloud content.":["Mixcloud-Inhalt einbetten."],"Embed Meetup.com content.":["Meetup.com-Inhalt einbetten."],"Embed Kickstarter content.":["Kickstarter-Inhalt einbetten."],"Embed Issuu content.":["Issuu-Inhalt einbetten."],"Embed Imgur content.":["Imgur-Inhalt einbetten."],"Embed a Dailymotion video.":["Ein Dailymotion-Video einbetten."],"Embed CollegeHumor content.":["CollegeHumor-Inhalt einbetten."],"Embed Cloudup content.":["Cloudup-Inhalt einbetten."],"Embed an Animoto video.":["Ein Animoto-Video einbetten."],"Embed a Vimeo video.":["Ein Vimeo-Video einbetten."],"Embed Flickr content.":["Flickr-Inhalt einbetten."],"Embed Spotify content.":["Spotify-Inhalt einbetten."],"Embed SoundCloud content.":["SoundCloud-Inhalt einbetten."],"audio":["Audio"],"blog":["Blog"],"post":["Beitrag"],"Embed an Instagram post.":["Einen Instagram-Beitrag einbetten."],"image":["Bild"],"Embed a Facebook post.":["Einen Facebook-Beitrag einbetten."],"Embed a YouTube video.":["Ein YouTube-Video einbetten."],"video":["Video"],"music":["Musik"],"Embed a tweet.":["Einen Tweet einbetten."],"Write title\u2026":["Schreibe einen Titel\u2026"],"Overlay":["Overlay"],"Fixed background":["Hintergrund fixiert"],"Border settings":["Rand-Einstellungen"],"Add an image or video with a text overlay \u2014 great for headers.":["Ein Bild oder Video mit Overlay-Text hinzuf\u00fcgen \u2013 ideal f\u00fcr Header."],"Cover":["Cover"],"Add a block that displays content in multiple columns, then add whatever content blocks you\u2019d like.":["Erstelle einen Block, der Inhalte in mehreren Spalten anzeigt und f\u00fcge dann beliebige Inhalts-Bl\u00f6cke hinzu."],"A single column within a columns block.":["Eine einzelne Spalte innerhalb eines Spalten-Blocks."],"Display code snippets that respect your spacing and tabs.":["Code-Schnipsel anzeigen, die deine Abst\u00e4nde und Tabulatoren beibehalten."],"Write code\u2026":["Schreibe etwas Code\u2026"],"Use the classic WordPress editor.":["Den klassischen WordPress-Editor verwenden."],"block title\u0004Classic":["Classic"],"Classic":["Classic"],"button to expand options\u0004More":["Mehr"],"Display a list of all categories.":["Eine Liste aller Kategorien anzeigen."],"Categories settings":["Kategorie-Einstellungen"],"Outline":["Kontur"],"block style\u0004Rounded":["Abgerundet"],"Button":["Button"],"Color settings":["Farbeinstellungen"],"Add text\u2026":["Text hinzuf\u00fcgen\u2026"],"Create and save content to reuse across your site. Update the block, and the changes apply everywhere it\u2019s used.":["Erstelle Inhalte und speichere diese f\u00fcr die Wiederverwendung auf deiner Website. Aktualisiere den Block und die \u00c4nderungen gelten \u00fcberall dort, wo dieser verwendet wird."],"Reusable Block":["Wiederverwendbarer Block"],"Block has been deleted or is unavailable.":["Block wurde gel\u00f6scht oder ist nicht verf\u00fcgbar."],"Embed a simple audio player.":["Einen einfachen Audio-Player einbetten."],"Write caption\u2026":["Schreibe eine Beschriftung\u2026"],"Audio settings":["Audio-Einstellungen"],"Display a monthly archive of your posts.":["Zeige ein monatliches Archiv deiner Beitr\u00e4ge an."],"Archives settings":["Archiv-Einstellungen"],"Link settings":["Link-Einstellungen"],"Copied!":["Kopiert!"],"Replace image":["Bild ersetzen"],"Number of items":["Anzahl Elemente"],"Gallery":["Galerie"],"Custom HTML":["HTML"],"Original":["Original"],"(Untitled)":["(Ohne Titel)"],"Read more":["Weiterlesen"],"Embed a WordPress post.":["Einen WordPress-Beitrag einbetten."],"Taxonomy":["Taxonomie"],"Color":["Farbe"],"editor button\u0004Left to right":["Links nach rechts"],"Autoplay":["Autoplay"],"Metadata":["Metadaten"],"Auto":["Automatisch"],"Table":["Tabelle"],"File":["Datei"],"Text color":["Textfarbe"],"Background color":["Hintergrundfarbe"],"Replace":["Ersetzen"],"Page break":["Seitenumbruch"],"bullet list":["Aufz\u00e4hlungsliste"],"A cloud of your most used tags.":["Eine Wortwolke deiner meistgenutzten Schlagw\u00f6rter."],"Empty":["Leer"],"Video":["Video"],"Audio":["Audio"],"Columns":["Spalten"],"Media File":["Mediendatei"],"Attachment Page":["Anhang-Seite"],"Insert Media":["Medien hinzuf\u00fcgen"],"Background Color":["Hintergrundfarbe"],"Text Color":["Textfarbe"],"Remove image":["Bild entfernen"],"Remove":["Entfernen"],"Link":["Link"],"Preload":["Vorladen"],"Square":["Quadrat"],"Display as dropdown":["Als Drop-down-Liste anzeigen"],"Image":["Bild"],"Quote":["Zitat"],"sound":["Ton"],"Loop":["Schleife"],"List":["Liste"],"Dimensions":["Gr\u00f6\u00dfe"],"Name:":["Name:"],"Unlink":["Link entfernen"],"ordered list":["nummerierte Liste"],"Code":["Code"],"Preformatted":["Vorformatiert"],"Paragraph":["Absatz"],"Column":["Spalte"],"Tag Cloud":["Schlagw\u00f6rter-Wolke"],"Show hierarchy":["Hierarchie anzeigen"],"Calendar":["Kalender"],"Show post counts":["Beitragsanzahl anzeigen"],"HTML":["HTML"],"Default":["Standard"],"(no title)":["(kein Titel)"],"Select":["Ausw\u00e4hlen"],"Version":["Version"],"Search":["Suchen"],"Archives":["Archive"],"Cancel":["Abbrechen"],"Preview":["Vorschau"],"RSS":["RSS"],"None":["Keine"],"Categories":["Kategorien"],"Save":["Speichern"],"Excerpt":["Textauszug"],"Apply":["\u00dcbernehmen"],"Edit":["Bearbeiten"],"URL":["URL"],"No posts found.":["Keine Beitr\u00e4ge gefunden."]}},"comment":{"reference":"wp-includes\/js\/dist\/block-library.js"}} \ No newline at end of file diff --git a/web/app/languages/de_DE.mo b/web/app/languages/de_DE.mo new file mode 100644 index 0000000..cbd510c Binary files /dev/null and b/web/app/languages/de_DE.mo differ diff --git a/web/app/languages/de_DE.po b/web/app/languages/de_DE.po new file mode 100644 index 0000000..93917bc --- /dev/null +++ b/web/app/languages/de_DE.po @@ -0,0 +1,15419 @@ +# Translation of WordPress - 5.5.x - Development in German +# This file is distributed under the same license as the WordPress - 5.5.x - Development package. +msgid "" +msgstr "" +"PO-Revision-Date: 2020-08-28 08:13:59+0000\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: GlotPress/3.0.0-alpha.2\n" +"Language: de\n" +"Project-Id-Version: WordPress - 5.5.x - Development\n" + +#: wp-includes/script-loader.php:1441 +msgctxt "Google Font Name and Variants" +msgid "Noto Serif:400,400i,700,700i" +msgstr "Noto Serif:400,400i,700,700i" + +#: wp-includes/comment-template.php:915 +msgctxt "Comment number declension: on or off" +msgid "off" +msgstr "off" + +#: wp-includes/general-template.php:839 +msgid "html_lang_attribute" +msgstr "de-DE" + +#: wp-includes/functions.php:334 +msgctxt "decline months names: on or off" +msgid "off" +msgstr "off" + +#. translators: If your word count is based on single characters (e.g. East +#. Asian characters), enter 'characters_excluding_spaces' or +#. 'characters_including_spaces'. Otherwise, enter 'words'. Do not translate +#. into your own language. +#: wp-includes/script-loader.php:1619 wp-includes/formatting.php:3884 +#: wp-includes/js/dist/editor.js:13029 +msgctxt "Word count type. Do not translate!" +msgid "words" +msgstr "words" + +#: wp-includes/script-loader.php:1351 +msgctxt "Open Sans font: on or off" +msgid "on" +msgstr "on" + +#. translators: 'rtl' or 'ltr'. This sets the text direction for WordPress. +#: wp-includes/class-wp-locale.php:217 wp-includes/js/dist/i18n.js:1092 +msgctxt "text direction" +msgid "ltr" +msgstr "ltr" + +#. translators: Closing curly single quote. +#: wp-includes/formatting.php:99 +msgctxt "closing curly single quote" +msgid "’" +msgstr "‘" + +#. translators: Opening curly single quote. +#: wp-includes/formatting.php:97 +msgctxt "opening curly single quote" +msgid "‘" +msgstr "‚" + +#. translators: Closing curly double quote. +#: wp-includes/formatting.php:86 +msgctxt "closing curly double quote" +msgid "”" +msgstr "“" + +#. translators: Opening curly double quote. +#: wp-includes/formatting.php:84 wp-includes/formatting.php:5447 +msgctxt "opening curly double quote" +msgid "“" +msgstr "„" + +#. translators: $thousands_sep argument for https://www.php.net/number_format, +#. default is ',' +#: wp-includes/class-wp-locale.php:200 +msgid "number_format_thousands_sep" +msgstr "." + +#. translators: $dec_point argument for https://www.php.net/number_format, +#. default is '.' +#: wp-includes/class-wp-locale.php:208 +msgid "number_format_decimal_point" +msgstr "," + +#. translators: %s: WP_ENVIRONMENT_TYPES +#: wp-includes/load.php:164 +msgid "The %s constant is no longer supported." +msgstr "Die Konstante %s wird nicht mehr unterstützt." + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Chapter Three" +msgstr "Kapitel drei" + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Chapter Two" +msgstr "Kapitel zwei" + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Chapter One" +msgstr "Kapitel eins" + +#: wp-includes/block-patterns/large-header-button.php:10 +msgid "Read now" +msgstr "Jetzt lesen" + +#: wp-includes/block-patterns/quote.php:10 +msgid "Pencil drawing of Don Quixote" +msgstr "Bleistiftzeichnung von Don Quijote" + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:161 +#: wp-admin/includes/theme.php:895 wp-admin/includes/update.php:753 +#: wp-admin/themes.php:447 wp-admin/themes.php:790 wp-admin/themes.php:1053 +msgid "There is a new version of %s available, but it doesn’t work with your version of PHP." +msgstr "Es gibt eine neue Version von %s, aber es funktioniert nicht mit deiner PHP-Version." + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:146 +#: wp-admin/includes/theme.php:880 wp-admin/includes/update.php:740 +#: wp-admin/themes.php:434 wp-admin/themes.php:775 wp-admin/themes.php:1038 +msgid "There is a new version of %s available, but it doesn’t work with your version of WordPress." +msgstr "Es gibt eine neue Version von %s, aber es funktioniert nicht mit deiner WordPress-Version." + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:116 +#: wp-admin/includes/theme.php:850 wp-admin/includes/update.php:712 +#: wp-admin/themes.php:406 wp-admin/themes.php:745 wp-admin/themes.php:1008 +msgid "There is a new version of %s available, but it doesn’t work with your versions of WordPress and PHP." +msgstr "Es gibt eine neue Version von %s, aber es funktioniert nicht mit deiner PHP- und WordPress-Version." + +#: wp-includes/block-patterns/text-three-columns-buttons.php:13 +msgctxt "Block pattern description" +msgid "Three small columns of text, each with an outlined button with rounded corners at the bottom." +msgstr "Drei kleine Textspalten, jede mit einem umrandeten Button mit abgerundeten Ecken darunter." + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Wherein is related the droll way in which Don Quixote had himself dubbed a knight." +msgstr "Hierin wird erzählt, in welch skurriler Art und Weise Don Quijote sich zum Ritter schlagen ließ." + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Which treats of the first sally the ingenious Don Quixote made from home." +msgstr "Handelt von dem ersten Aufbruch des scharfsinnigen Don Quijote aus seinem Besitztume." + +#: wp-includes/block-patterns/text-three-columns-buttons.php:11 +msgid "Which treats of the character and pursuits of the famous Don Quixote of La Mancha." +msgstr "Handelt von dem Stande und der Lebensweise des ruhmvollen Edlen Don Quijote von la Mancha." + +#: wp-includes/block-patterns/quote.php:13 +msgctxt "Block pattern description" +msgid "A quote and citation with an image above, and a separator at the bottom." +msgstr "Ein Zitat mit einem Bild darüber und einem Abstandshalter darunter." + +#: wp-includes/block-patterns/quote.php:10 +msgid "\"Do you see over yonder, friend Sancho, thirty or forty hulking giants? I intend to do battle with them and slay them.\"" +msgstr "„Siehst du da drüben, Freund Sancho, dreißig oder vierzig große Riesen? Ich beabsichtige, mit ihnen zu kämpfen und sie zu töten.“" + +#: wp-includes/block-patterns/three-buttons.php:13 +msgctxt "Block pattern description" +msgid "Three filled buttons with rounded corners, side by side." +msgstr "Drei gefüllte Buttons nebeneinander mit abgerundeten Ecken." + +#: wp-includes/block-patterns/three-buttons.php:10 +msgid "Books" +msgstr "Bücher" + +#: wp-includes/block-patterns/heading-paragraph.php:13 +msgctxt "Block pattern description" +msgid "A heading preceded by a chapter number, and followed by a paragraph." +msgstr "Eine Überschrift, der eine Kapitelnummer vorangestellt ist, gefolgt von einem Absatz." + +#: wp-includes/block-patterns/heading-paragraph.php:10 +msgid "These preliminaries settled, he did not care to put off any longer the execution of his design, urged on to it by the thought of all the world was losing by his delay, seeing what wrongs he intended to right, grievances to redress, injustices to repair, abuses to remove, and duties to discharge." +msgstr "Da er diese Vorkehrungen getroffen, mochte er es nicht länger aufschieben, seinen Vorsatz ins Werk zu richten, denn ihn drängte der Nachteil, der nach seiner Meinung der Welt durch seine Verzögerung erwüchse; ihn rief das Unrecht, das er vertilgen, die Ungebühr, die er einrichten, die Beschwer, die er aufheben, Missbräuche, die er bessern, und Verschuldungen, die er vergelten müsse." + +#: wp-includes/block-patterns/heading-paragraph.php:10 +msgid "Which treats of the first sally the ingenious Don Quixote made from home" +msgstr "Handelt von dem ersten Aufbruch des scharfsinnigen Don Quijote aus seinem Besitztume" + +#: wp-includes/block-patterns/heading-paragraph.php:9 +msgid "Heading and paragraph" +msgstr "Überschrift und Absatz" + +#: wp-includes/block-patterns/text-two-columns-with-images.php:12 +msgctxt "Block pattern description" +msgid "Two columns of text, each with an image on top." +msgstr "Zwei Textspalten, jede mit einem Bild darüber." + +#: wp-includes/block-patterns/text-two-columns-with-images.php:11 +msgid "But of all there were none he liked so well as those of the famous Feliciano de Silva's composition, for their lucidity of style and complicated conceits were as pearls in his sight, particularly when in his reading he came upon courtships and cartels, where he often found passages like \"the reason of the unreason with which my reason is afflicted so weakens my reason that with reason I murmur at your beauty;\" or again, \"the high heavens render you deserving of the desert your greatness deserves.\"" +msgstr "Unter allen schienen ihm keine so trefflich als die Werke, die der berühmte Feliciano de Silva verfertigt hatte, die Klarheit seiner Prosa und den Scharfsinn seiner Redewendungen hielt er für Perlen, fürnehmlich wenn er auf Artigkeiten oder Ausformulierungen stieß, in denen er oft Passagen fand wie: „Das Tiefsinnige des Unsinnlichen, das meinen Sinnen sich verhaftet hat, erschüttert also meinen Sinn, dass ich über Eure Schönheit eine vielsinnige Klage führe.“ Oder wann er las: „Die hohen Himmel, die Eure Göttlichkeit göttlich mit den Gestirnen bewehrt, haben Euch die Verehrung der Ehre verwährt, womit Eure Hoheit geehrt ist.“" + +#: wp-includes/block-patterns/text-two-columns-with-images.php:11 +msgid "They must know, then, that the above-named gentleman whenever he was at leisure (which was mostly all the year round) gave himself up to reading books of chivalry with such ardour and avidity that he almost entirely neglected the pursuit of his field-sports, and even the management of his property; and to such a pitch did his eagerness and infatuation go that he sold many an acre of tillageland to buy books of chivalry to read, and brought home as many of them as he could get." +msgstr "Es ist zu wissen, dass obgenannter Edler die Zeit, die ihm zur Muße blieb – und dies betrug den größten Teil des Jahres – dazu anwandte, Bücher von Rittersachen mit solcher Liebe und Hingebung zu lesen, dass er darüber fast die Ausübung der Jagd als auch die Verwaltung seines Vermögens vergaß; ja, seine Begier und Torheit hierin ging so weit, dass er viele Hektar von seinen Saatfeldern verkaufte, um Bücher von Rittertaten anzuschaffen, in denen er lesen mochte; auch brachte er so viele in sein Haus, als er deren habhaft werden konnte." + +#: wp-includes/block-patterns/text-two-columns.php:12 +msgctxt "Block pattern description" +msgid "Two columns of text preceded by a long heading." +msgstr "Zwei Textspalten, denen eine lange Überschrift vorangestellt ist." + +#: wp-includes/block-patterns/text-two-columns.php:11 +msgid "The rest of it went in a doublet of fine cloth and velvet breeches and shoes to match for holidays, while on week-days he made a brave figure in his best homespun. He had in his house a housekeeper past forty, a niece under twenty, and a lad for the field and market-place, who used to saddle the hack as well as handle the bill-hook. The age of this gentleman of ours was bordering on fifty; he was of a hardy habit, spare, gaunt-featured, a very early riser and a great sportsman." +msgstr "Das übrige ging auf für ein Wams vom besten Tuch, Beinkleider von Samt für die Festtage, Pantoffeln derselben Art, in gleichen für ein auserlesenes ungefärbtes Tuch, womit er sich an den Wochentagen schmückte. Bei ihm lebte eine Haushälterin, die die Vierzig verlassen, und eine Nichte, die die Zwanzig noch nicht erreicht hatte, zugleich ein Bursche, in Feld- und Hausarbeit gewandt, der sowohl den Klepper sattelte, als auch die Axt zu führen wusste. Das Alter unseres Edlen war an den Fünfzigern. Er war von frischer Konstitution, mager, von dürrem Gesichte, ein großer Frühaufsteher und Freund der Jagd." + +#: wp-includes/block-patterns/text-two-columns.php:11 +msgid "In a village of La Mancha, the name of which I have no desire to call to mind, there lived not long since one of those gentlemen that keep a lance in the lance-rack, an old buckler, a lean hack, and a greyhound for coursing. An olla of rather more beef than mutton, a salad on most nights, scraps on Saturdays, lentils on Fridays, and a pigeon or so extra on Sundays, made away with three-quarters of his income." +msgstr "In einem Dorfe von la Mancha, dessen Namen ich mich nicht entsinnen mag, lebte unlängst ein Edler, einer von denen, die eine Lanze auf dem Vorplatz haben, einen alten Schild, einen dürren Klepper und einen Jagdhund. Eine Olla, mehr von Rind- als Hammelfleisch, des Abends gewöhnlich kalte Küche, des Sonnabends arme Ritter und freitags Linsen, sonntags aber einige gebratene Tauben zur Zugabe verzehrten drei Vierteile seiner Einnahme." + +#: wp-includes/block-patterns/text-two-columns.php:11 +msgid "Which treats of the character and pursuits of the famous gentleman Don Quixote of La Mancha" +msgstr "Handelt von dem Stande und der Lebensweise des ruhmvollen Edlen Don Quijote von la Mancha" + +#: wp-includes/block-patterns/large-header.php:13 +msgctxt "Block pattern description" +msgid "A large hero section with an example background image and a heading in the center." +msgstr "Ein großer Hero-Abschnitt mit einem Beispielhintergundbild und einer Überschrift in der Mitte." + +#: wp-includes/block-patterns/large-header.php:10 +msgid "Don Quixote" +msgstr "Don Quijote" + +#: wp-includes/block-patterns/large-header.php:9 +msgid "Large header with a heading" +msgstr "Großer Header mit einer Überschrift" + +#: wp-includes/block-patterns/two-buttons.php:13 +msgctxt "Block pattern description" +msgid "Two buttons, one filled and one outlined, side by side." +msgstr "Zwei Buttons nebeneinander, einer gefüllt und einer umrandet." + +#: wp-includes/block-patterns/two-buttons.php:10 +#: wp-includes/block-patterns/three-buttons.php:10 +msgid "About Cervantes" +msgstr "Über Cervantes" + +#: wp-includes/block-patterns/two-buttons.php:10 +msgid "Download now" +msgstr "Jetzt herunterladen" + +#: wp-includes/block-patterns/two-images.php:12 +msgid "An old pencil drawing of Don Quixote and Sancho Panza sitting on their horses, by Wilhelm Marstrand." +msgstr "Eine alte Bleistiftzeichnung von Don Quijote und Sancho Panza, die auf ihren Pferden sitzen – von Wilhelm Marstrand." + +#: wp-includes/block-patterns/two-images.php:11 +msgctxt "Block pattern description" +msgid "An image gallery with two example images." +msgstr "Eine Bildergalerie mit zwei Beispielbildern." + +#: wp-includes/block-patterns/large-header-button.php:13 +msgctxt "Block pattern description" +msgid "A large hero section with a bright gradient background, a big heading and a filled button." +msgstr "Ein großer Hero-Abschnitt auf einem Hintergund mit hellem Farbverlauf und mit einer großen Überschrift und einem gefüllten Button." + +#: wp-includes/block-patterns/large-header-button.php:10 +msgid "nothing yet" +msgstr "bisher noch nichts" + +#: wp-includes/block-patterns/large-header-button.php:10 +msgid "Thou hast seen" +msgstr "Ihr habt gesehen" + +#: wp-includes/block-patterns/large-header-button.php:9 +msgid "Large header with a heading and a button " +msgstr "Großer Header mit Überschrift und Button" + +#: wp-includes/customize/class-wp-customize-theme-control.php:220 +#: wp-admin/includes/theme.php:966 wp-admin/themes.php:501 +#: wp-admin/themes.php:848 wp-admin/themes.php:980 +#: wp-admin/theme-install.php:320 wp-admin/theme-install.php:506 +msgid "This theme doesn’t work with your version of PHP." +msgstr "Dieses Theme funktioniert nicht mit deiner PHP-Version." + +#: wp-includes/customize/class-wp-customize-theme-control.php:209 +#: wp-admin/includes/theme.php:955 wp-admin/themes.php:492 +#: wp-admin/themes.php:837 wp-admin/themes.php:969 +#: wp-admin/theme-install.php:309 wp-admin/theme-install.php:495 +msgid "This theme doesn’t work with your version of WordPress." +msgstr "Dieses Theme funktioniert nicht mit deiner WordPress-Version." + +#. translators: %s: URL to Update PHP page. +#: wp-includes/customize/class-wp-customize-theme-control.php:136 +#: wp-includes/customize/class-wp-customize-theme-control.php:167 +#: wp-includes/customize/class-wp-customize-theme-control.php:201 +#: wp-includes/customize/class-wp-customize-theme-control.php:224 +#: wp-admin/includes/theme.php:870 wp-admin/includes/theme.php:901 +#: wp-admin/includes/theme.php:947 wp-admin/includes/theme.php:970 +#: wp-admin/includes/update.php:732 wp-admin/includes/update.php:759 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:668 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:687 +#: wp-admin/includes/update-core.php:968 wp-admin/includes/plugin.php:1155 +#: wp-admin/install.php:244 wp-admin/update-core.php:86 +#: wp-admin/update-core.php:380 wp-admin/update-core.php:536 +#: wp-admin/update-core.php:560 wp-admin/themes.php:426 wp-admin/themes.php:453 +#: wp-admin/themes.php:486 wp-admin/themes.php:505 wp-admin/themes.php:765 +#: wp-admin/themes.php:796 wp-admin/themes.php:829 wp-admin/themes.php:852 +#: wp-admin/themes.php:961 wp-admin/themes.php:984 wp-admin/themes.php:1028 +#: wp-admin/themes.php:1059 wp-admin/upgrade.php:86 +#: wp-admin/theme-install.php:301 wp-admin/theme-install.php:324 +#: wp-admin/theme-install.php:487 wp-admin/theme-install.php:510 +msgid "
Learn more about updating PHP." +msgstr "Erfahre mehr über die PHP-Aktualisierung (engl.)" + +#. translators: %s: URL to WordPress Updates screen. +#: wp-includes/customize/class-wp-customize-theme-control.php:130 +#: wp-includes/customize/class-wp-customize-theme-control.php:152 +#: wp-includes/customize/class-wp-customize-theme-control.php:195 +#: wp-includes/customize/class-wp-customize-theme-control.php:213 +#: wp-admin/includes/theme.php:864 wp-admin/includes/theme.php:886 +#: wp-admin/includes/theme.php:941 wp-admin/includes/theme.php:959 +#: wp-admin/includes/update.php:726 wp-admin/includes/update.php:746 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:662 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:678 +#: wp-admin/update-core.php:530 wp-admin/update-core.php:551 +#: wp-admin/themes.php:420 wp-admin/themes.php:440 wp-admin/themes.php:480 +#: wp-admin/themes.php:496 wp-admin/themes.php:759 wp-admin/themes.php:781 +#: wp-admin/themes.php:823 wp-admin/themes.php:841 wp-admin/themes.php:955 +#: wp-admin/themes.php:973 wp-admin/themes.php:1022 wp-admin/themes.php:1044 +#: wp-admin/theme-install.php:295 wp-admin/theme-install.php:313 +#: wp-admin/theme-install.php:481 wp-admin/theme-install.php:499 +msgid "Please update WordPress." +msgstr "Bitte aktualisiere WordPress." + +#. translators: 1: URL to WordPress Updates screen, 2: URL to Update PHP page. +#: wp-includes/customize/class-wp-customize-theme-control.php:122 +#: wp-includes/customize/class-wp-customize-theme-control.php:187 +#: wp-admin/includes/theme.php:856 wp-admin/includes/theme.php:933 +#: wp-admin/includes/update.php:718 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:654 +#: wp-admin/update-core.php:517 wp-admin/themes.php:412 wp-admin/themes.php:472 +#: wp-admin/themes.php:751 wp-admin/themes.php:815 wp-admin/themes.php:947 +#: wp-admin/themes.php:1014 wp-admin/theme-install.php:287 +#: wp-admin/theme-install.php:473 +msgid "Please update WordPress, and then learn more about updating PHP." +msgstr "Bitte aktualisiere WordPress und dann lerne mehr über die PHP-Aktualisierung (engl.)." + +#: wp-includes/customize/class-wp-customize-theme-control.php:183 +#: wp-admin/includes/theme.php:929 wp-admin/themes.php:468 +#: wp-admin/themes.php:811 wp-admin/themes.php:943 +#: wp-admin/theme-install.php:283 wp-admin/theme-install.php:469 +msgid "This theme doesn’t work with your versions of WordPress and PHP." +msgstr "Dieses Theme funktioniert nicht mit deinen Versionen von WordPress und PHP." + +#. translators: %s: register_rest_field +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2432 +msgid "Please use %s to add new schema properties." +msgstr "Bitte benutze %s, um neue Schema-Eigenschaften hinzuzufügen." + +#. translators: %s: prepare_callback +#: wp-includes/theme.php:3129 +msgid "The \"%s\" must be a callable function." +msgstr "„%s“ muss eine aufrufbare Funktion sein." + +#. translators: %s: customize_messenger_channel +#: wp-includes/class-wp-customize-manager.php:1914 +msgid "Unauthorized. You may remove the %s param to preview as frontend." +msgstr "Nicht autorisiert. Du solltest den Parameter %s entfernen, um die Vorschau des Frontends anzuzeigen." + +#. translators: 1: Deprecated option key, 2: New option key. +#: wp-includes/option.php:53 wp-includes/option.php:354 +#: wp-includes/option.php:541 +msgid "The \"%1$s\" option key has been renamed to \"%2$s\"." +msgstr "Der Optionsschlüssel „%1$s“ wurde in „%2$s“ umbenannt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:670 +msgid "Sorry, you are not allowed to manage network plugins." +msgstr "Du bist leider nicht berechtigt, Plugins dieses Netzwerks zu verwalten." + +#. translators: 1. The REST API route being registered. 2. The argument name. +#. 3. The suggested function name. +#: wp-includes/rest-api.php:98 +msgid "The REST API route definition for %1$s is missing the required %2$s argument. For REST API routes that are intended to be public, use %3$s as the permission callback." +msgstr "Der Definition der REST-API-Route für %1$s fehlt das erforderliche Argument %2$s. Für REST-API-Routen, die für öffentlichen Zugriff gedacht sind, benutze %3$s als Berechtigungs-Callback." + +#: wp-includes/post.php:3991 +msgid "Could not update attachment in the database." +msgstr "Der Anhang konnte in der Datenbank nicht aktualisiert werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:678 +#: wp-admin/plugins.php:48 wp-admin/plugins.php:175 +msgid "Sorry, you are not allowed to activate this plugin." +msgstr "Du bist leider nicht berechtigt, das Plugin zu aktivieren." + +#. translators: %s: the author. +#. translators: byline. %s: current author. +#: wp-includes/blocks/rss.php:60 wp-includes/blocks/latest-posts.php:105 +#: wp-includes/js/dist/block-library.js:17390 +msgid "by %s" +msgstr "von %s" + +#: wp-includes/js/dist/core-data.js:2103 +#: wp-admin/includes/ajax-actions.php:1507 +msgid "Menu Item" +msgstr "Menüeintrag" + +#: wp-includes/js/dist/core-data.js:2091 wp-admin/includes/template.php:459 +#: wp-admin/edit-form-comment.php:72 +msgid "Comment" +msgstr "Kommentar" + +#: wp-includes/js/dist/block-library.js:5285 +#: wp-admin/includes/image-edit.php:54 +msgid "Crop" +msgstr "Zuschneiden" + +#: wp-includes/class-wp-oembed-controller.php:213 +msgid "Embed Handler" +msgstr "Handler einbetten" + +#. translators: %s: Documentation URL. +#: wp-includes/ms-load.php:497 +msgid "Read the Debugging a WordPress Network article. Some of the suggestions there may help you figure out what went wrong." +msgstr "Schau dir die Dokumentation Debugging eines WordPress-Netzwerks (engl.) an. Einige der Vorschläge dort können dir helfen zu verstehen, was schiefgelaufen ist." + +#. translators: 1: Block pattern name. +#: wp-includes/class-wp-block-pattern-categories-registry.php:62 +msgid "Block pattern category \"%1$s\" not found." +msgstr "Block-Vorlagen-Kategorie „%1$s“ nicht gefunden." + +#: wp-includes/class-wp-block-pattern-categories-registry.php:39 +msgid "Block pattern category name must be a string." +msgstr "Der Kategoriename der Block-Vorlage muss eine Zeichenfolge sein." + +#: wp-includes/block-patterns.php:46 +msgctxt "Block pattern category" +msgid "Text" +msgstr "Text" + +#: wp-includes/block-patterns.php:45 +msgctxt "Block pattern category" +msgid "Headers" +msgstr "Header" + +#: wp-includes/block-patterns.php:44 +msgctxt "Block pattern category" +msgid "Gallery" +msgstr "Galerie" + +#: wp-includes/block-patterns.php:43 +msgctxt "Block pattern category" +msgid "Columns" +msgstr "Spalten" + +#: wp-includes/block-patterns.php:42 +msgctxt "Block pattern category" +msgid "Buttons" +msgstr "Buttons" + +#. translators: 1: WP_REST_Response, 2: WP_Error +#: wp-includes/functions.php:4069 +msgid "Return a %1$s or %2$s object from your callback when using the REST API." +msgstr "Gib ein %1$s- oder %2$s-Objekt von deinem Callback zurück, wenn du die REST-API benutzt." + +#. translators: Unit symbol for byte. +#: wp-includes/functions.php:461 wp-includes/functions.php:466 +msgctxt "unit symbol" +msgid "B" +msgstr "B" + +#. translators: Unit symbol for kilobyte. +#: wp-includes/functions.php:459 +msgctxt "unit symbol" +msgid "KB" +msgstr "kB" + +#. translators: Unit symbol for megabyte. +#: wp-includes/functions.php:457 +msgctxt "unit symbol" +msgid "MB" +msgstr "MB" + +#. translators: Unit symbol for gigabyte. +#: wp-includes/functions.php:455 +msgctxt "unit symbol" +msgid "GB" +msgstr "GB" + +#. translators: Unit symbol for terabyte. +#: wp-includes/functions.php:453 +msgctxt "unit symbol" +msgid "TB" +msgstr "TB" + +#: wp-includes/general-template.php:4445 +msgctxt "admin color scheme" +msgid "Modern" +msgstr "Modern" + +#. translators: 1: Title prefix. 2: Title. +#: wp-includes/general-template.php:1725 +msgctxt "archive title" +msgid "%1$s %2$s" +msgstr "%1$s %2$s" + +#. translators: %s: Taxonomy singular name. +#: wp-includes/general-template.php:1706 +msgctxt "taxonomy term archive title prefix" +msgid "%s:" +msgstr "%s:" + +#: wp-includes/general-template.php:1698 +msgctxt "post type archive title prefix" +msgid "Archives:" +msgstr "Archive:" + +#: wp-includes/general-template.php:1675 +msgctxt "date archive title prefix" +msgid "Day:" +msgstr "Tag:" + +#: wp-includes/general-template.php:1672 +msgctxt "date archive title prefix" +msgid "Month:" +msgstr "Monat:" + +#: wp-includes/general-template.php:1669 +msgctxt "date archive title prefix" +msgid "Year:" +msgstr "Jahr:" + +#: wp-includes/general-template.php:1666 +msgctxt "author archive title prefix" +msgid "Author:" +msgstr "Autor:" + +#: wp-includes/general-template.php:1663 +msgctxt "tag archive title prefix" +msgid "Tag:" +msgstr "Schlagwort:" + +#: wp-includes/general-template.php:1660 +msgctxt "category archive title prefix" +msgid "Category:" +msgstr "Kategorie:" + +#. translators: %1: field name. %2: block name +#: wp-includes/blocks.php:115 +msgid "The asset file for the \"%1$s\" defined in \"%2$s\" block definition is missing." +msgstr "Die Asset-Datei für die Definition „%1$s“ im Block „%2$s“ fehlt." + +#: wp-includes/ms-deprecated.php:413 +msgid "Error: There was a problem creating site entry." +msgstr "Fehler: Beim Erstellen des Website-Eintrags ist ein Fehler aufgetreten." + +#: wp-includes/ms-deprecated.php:404 +msgid "Error: Site URL you’ve entered is already taken." +msgstr "Fehler: Die von dir eingegebene Website-URL ist bereits vergeben." + +#. translators: 1: Pattern name. +#: wp-includes/class-wp-block-patterns-registry.php:75 +msgid "Pattern \"%1$s\" not found." +msgstr "Vorlage „%1$s“ nicht gefunden." + +#: wp-includes/class-wp-block-patterns-registry.php:52 +msgid "Pattern content must be a string." +msgstr "Der Inhalt der Vorlage muss eine Zeichenfolge sein." + +#: wp-includes/class-wp-block-patterns-registry.php:47 +msgid "Pattern title must be a string." +msgstr "Der Titel der Vorlage muss eine Zeichenfolge sein." + +#: wp-includes/class-wp-block-patterns-registry.php:42 +msgid "Pattern name must be a string." +msgstr "Der Name der Vorlage muss eine Zeichenfolge sein." + +#: wp-includes/media.php:4241 +msgid "Attachment details" +msgstr "Anhang-Details" + +#: wp-includes/media.php:4187 wp-includes/media.php:4209 +msgid "Add media" +msgstr "Medien hinzufügen" + +#: wp-includes/post.php:4014 +msgid "Could not insert attachment into the database." +msgstr "Der Anhang konnte nicht in die Datenbank eingefügt werden." + +#: wp-includes/comment.php:2525 +msgid "Could not update comment in the database." +msgstr "Der Kommentar konnte in der Datenbank nicht aktualisiert werden." + +#: wp-includes/media-template.php:503 wp-includes/media-template.php:694 +#: wp-admin/includes/media.php:3269 +msgid "File URL:" +msgstr "Datei-URL:" + +#. translators: %s is the name of a JSON field expecting a valid uuid. +#: wp-includes/rest-api.php:1769 +msgid "%s is not a valid UUID." +msgstr "%s ist keine gültige UUID." + +#: wp-includes/rest-api.php:1745 +msgid "Invalid hex color." +msgstr "Ungültige Hexadezimal-Farbe." + +#. translators: 1: Parameter, 2: Pattern. +#: wp-includes/rest-api.php:1732 +msgid "%1$s does not match pattern %2$s." +msgstr "%1$s stimmt nicht mit der Vorlage %2$s überein." + +#. translators: 1: Parameter, 2: Number of characters. +#: wp-includes/rest-api.php:1721 +msgid "%1$s must be at most %2$s character long." +msgid_plural "%1$s must be at most %2$s characters long." +msgstr[0] "%1$s darf maximal %2$s Zeichen lang sein." +msgstr[1] "%1$s darf maximal %2$s Zeichen lang sein." + +#. translators: 1: Parameter, 2: Number of characters. +#: wp-includes/rest-api.php:1709 +msgid "%1$s must be at least %2$s character long." +msgid_plural "%1$s must be at least %2$s characters long." +msgstr[0] "%1$s muss mindestens %2$s Zeichen lang sein." +msgstr[1] "%1$s muss mindestens %2$s Zeichen lang sein." + +#. translators: 1: Property of an object, 2: Parameter. +#: wp-includes/rest-api.php:1633 wp-includes/rest-api.php:1640 +msgid "%1$s is a required property of %2$s." +msgstr "%1$s ist eine erforderliche Eigenschaft für %2$s." + +#. translators: 1: Parameter +#: wp-includes/rest-api.php:1617 wp-includes/rest-api.php:1869 +msgid "%1$s has duplicate items." +msgstr "%1$s hat doppelte Elemente." + +#. translators: 1: Parameter, 2: Number. +#: wp-includes/rest-api.php:1612 +msgid "%1$s must contain at most %2$s items." +msgstr "%1$s darf maximal %2$s Elemente beinhalten." + +#. translators: 1: Parameter, 2: Number. +#: wp-includes/rest-api.php:1607 +msgid "%1$s must contain at least %2$s items." +msgstr "%1$s muss mindestens %2$s Elemente beinhalten." + +#. translators: 1. Parameter 2. The list of allowed types. +#. translators: 1. Parameter. 2. The list of allowed types. +#: wp-includes/rest-api.php:1583 wp-includes/rest-api.php:1853 +msgid "The \"type\" schema keyword for %1$s can only be one of the built-in types: %2$l." +msgstr "Das Schema-Keyword „type“ für %1$s kann nur einer der integrierten Typen sein: %2$l." + +#. translators: 1. Parameter +#: wp-includes/rest-api.php:1565 wp-includes/rest-api.php:1836 +msgid "The \"type\" schema keyword for %s is required." +msgstr "Das Schema-Keyword „type“ ist für %s erforderlich." + +#: wp-includes/rest-api.php:1528 +msgid "Cannot stabilize objects. Convert the object to an array first." +msgstr "Objekte können nicht stabilisiert werden. Konvertiere das Objekt zuerst in ein Array." + +#. translators: 1. Parameter. 2. List of allowed types. +#: wp-includes/rest-api.php:1466 +msgid "The \"type\" schema keyword for %1$s can only contain the built-in types: %2$l." +msgstr "Das Schema-Keyword „type“ für %1$s kann nur die integrierten Typen enthalten: %2%l." + +#. translators: Developer debugging message. 1: PHP function name, 2: +#. Explanatory message. +#. translators: 1: Theme name. 2: Theme slug. +#: wp-includes/rest-api.php:637 wp-admin/includes/class-wp-debug-data.php:1055 +#: wp-admin/includes/class-wp-debug-data.php:1074 +#: wp-admin/includes/class-wp-debug-data.php:1171 +#: wp-admin/includes/class-wp-debug-data.php:1336 +msgid "%1$s (%2$s)" +msgstr "%1$s (%2$s)" + +#. translators: %s: Name of the script or stylesheet. +#: wp-includes/functions.wp-scripts.php:59 +msgid "This notice was triggered by the %s handle." +msgstr "Dieser Hinweis wurde durch das Handle %s verursacht." + +#: wp-includes/comment.php:1344 wp-admin/options.php:215 +msgid "Please consider writing more inclusive code." +msgstr "Bitte erwäge, inklusiveren Code zu schreiben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1317 +msgid "URL to the edited image file." +msgstr "URL zur bearbeiteten Bilddatei." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1311 +msgid "As a percentage of the image, the height to crop the image to." +msgstr "Die Höhe in Prozent des Bildes, auf die das Bild zugeschnitten werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1305 +msgid "As a percentage of the image, the width to crop the image to." +msgstr "Die Breite in Prozent des Bildes, auf die das Bild zugeschnitten werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1299 +msgid "As a percentage of the image, the y position to start the crop from." +msgstr "Die Y-Position in Prozent des Bildes, von der aus das Zuschneiden beginnt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1293 +msgid "As a percentage of the image, the x position to start the crop from." +msgstr "Die X-Position in Prozent des Bildes, von der aus das Zuschneiden beginnt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1285 +msgid "The amount to rotate the image clockwise in degrees." +msgstr "Der Wert in Grad, um den das Bild im Uhrzeigersinn gedreht wird." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:512 +msgid "Unable to crop this image." +msgstr "Dieses Bild kann nicht zugeschnitten werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:493 +msgid "Unable to rotate this image." +msgstr "Dieses Bild kann nicht gedreht werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:482 +msgid "Unable to edit this image." +msgstr "Dieses Bild kann nicht bearbeitet werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:462 +msgid "The image was not edited. Edit the image before applying the changes." +msgstr "Das Bild wurde nicht bearbeitet. Bearbeite das Bild, bevor du die Änderungen speicherst." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:441 +msgid "This type of file cannot be edited." +msgstr "Die Datei dieses Typs kann nicht bearbeitet werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:431 +msgid "Unable to get meta information for file." +msgstr "Meta-Informationen für diese Datei können nicht abgerufen werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:307 +msgid "Limit result set to blocks matching the search term." +msgstr "Ergebnisliste auf Blöcke limitieren, die mit dem Suchbegriff übereinstimmen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:278 +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:284 +msgid "The date when the block was last updated, in fuzzy human readable format." +msgstr "Das Datum, an dem der Block zuletzt aktualisiert wurde, in einem unscharfen, menschenlesbaren Format." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:272 +msgid "The block icon." +msgstr "Das Block-Icon." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:267 +msgid "The WordPress.org username of the block author." +msgstr "Der WordPress.org-Benutzername des Block-Autors." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:262 +msgid "The number of blocks published by the same author." +msgstr "Die Anzahl an Blöcken, die vom gleichen Autor veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:257 +msgid "The average rating of blocks published by the same author." +msgstr "Die durchschnittliche Bewertung von Blöcken, die vom gleichen Autor veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:252 +msgid "The number sites that have activated this block." +msgstr "Die Anzahl der Websites, die diesen Block aktiviert haben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:247 +msgid "The number of ratings." +msgstr "Die Anzahl der Bewertungen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:242 +msgid "The star rating of the block." +msgstr "Die Sternebewertung des Blocks." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:237 +msgid "The block slug." +msgstr "Die Block-Titelform." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:232 +msgid "A short description of the block, in human readable format." +msgstr "Eine kurze Beschreibung des Blocks in menschenlesbarem Format." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:227 +msgid "The block title, in human readable format." +msgstr "Der Blocktitel in menschenlesbarem Format." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:222 +msgid "The block name, in namespace/block-name format." +msgstr "Der Blockname im Format namensraum/blockname." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-directory-controller.php:59 +msgid "Sorry, you are not allowed to browse the block directory." +msgstr "Du bist leider nicht berechtigt, das Block-Verzeichnis zu durchsuchen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1249 +msgid "This username is invalid because it uses illegal characters. Please enter a valid username." +msgstr "Dieser Benutzername ist ungültig, da er unzulässige Zeichen verwendet. Bitte gib einen gültigen Benutzernamen ein." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:963 +msgid "Limits results to plugins with the given status." +msgstr "Limitiert Ergebnisse auf Plugins mit dem gegebenen Status." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:939 +msgid "The plugin's text domain." +msgstr "Die Textdomain des Plugins." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:933 +msgid "Minimum required version of PHP." +msgstr "Erforderliche Mindestversion von PHP." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:927 +msgid "Minimum required version of WordPress." +msgstr "Erforderliche Mindestversion von WordPress." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:921 +msgid "Whether the plugin can only be activated network-wide." +msgstr "Ob das Plugin nur netzwerkweit aktiviert werden kann." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:915 +msgid "The plugin version number." +msgstr "Die Versionsnummer des Plugins." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:909 +msgid "The plugin description formatted for display." +msgstr "Die Plugin-Beschreibung, formatiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:905 +msgid "The raw plugin description." +msgstr "Die unbearbeitete Plugin-Beschreibung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:899 +msgid "The plugin description." +msgstr "Die Plugin-Beschreibung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:892 +msgid "Plugin author's website address." +msgstr "Die Website-Adresse des Plugin-Autors." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:886 +msgid "The plugin author." +msgstr "Der Plugin-Autor." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:879 +msgid "The plugin's website address." +msgstr "Die Website-Adresse des Plugins." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:873 +msgid "The plugin name." +msgstr "Der Plugin-Name." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:860 +msgid "The plugin file." +msgstr "Die Plugin-Datei." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:839 +msgid "The filesystem is currently unavailable for managing plugins." +msgstr "Das Dateisystem steht momentan für die Verwaltung von Plugins nicht zur Verfügung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:720 +msgid "Network only plugin must be network activated." +msgstr "Ein Plugin nur für das Netzwerk muss netzwerkweit aktiviert werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:686 +#: wp-admin/plugins.php:198 +msgid "Sorry, you are not allowed to deactivate this plugin." +msgstr "Du bist leider nicht berechtigt, das Plugin zu deaktivieren." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:523 +msgid "Cannot delete an active plugin. Please deactivate it first." +msgstr "Ein aktives Plugin kann nicht gelöscht werden. Bitte deaktiviere es zuerst." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:488 +#: wp-admin/includes/ajax-actions.php:4539 wp-admin/plugins.php:268 +msgid "Sorry, you are not allowed to delete plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu löschen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:342 +msgid "Unable to determine what plugin was installed." +msgstr "Es lässt sich nicht feststellen, welches Plugin installiert wurde." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:336 +#: wp-admin/includes/ajax-actions.php:4073 +#: wp-admin/includes/ajax-actions.php:4203 +#: wp-admin/includes/ajax-actions.php:4267 +#: wp-admin/includes/ajax-actions.php:4367 +#: wp-admin/includes/ajax-actions.php:4494 +#: wp-admin/includes/ajax-actions.php:4563 +msgid "Unable to connect to the filesystem. Please confirm your credentials." +msgstr "Es ist nicht möglich, eine Verbindung mit dem Dateisystem herzustellen. Bitte überprüfe deine Anmeldedaten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:251 +msgid "Sorry, you are not allowed to activate plugins." +msgstr "Du bist leider nicht berechtigt, das Plugin zu aktivieren." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:243 +#: wp-admin/includes/ajax-actions.php:4320 wp-admin/update.php:106 +#: wp-admin/update.php:149 wp-admin/update.php:181 +#: wp-admin/plugin-install.php:19 +msgid "Sorry, you are not allowed to install plugins on this site." +msgstr "Du bist leider nicht berechtigt, Plugins auf dieser Website zu installieren." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:213 +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:626 +msgid "Plugin not found." +msgstr "Plugin nicht gefunden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:116 +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:166 +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:410 +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:480 +#: wp-admin/includes/ajax-actions.php:4615 +#: wp-admin/includes/ajax-actions.php:4667 wp-admin/plugins.php:13 +msgid "Sorry, you are not allowed to manage plugins for this site." +msgstr "Du bist leider nicht berechtigt, Plugins dieser Website zu verwalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:59 +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:867 +msgid "The plugin activation status." +msgstr "Der Aktivierungsstatus des Plugins." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:55 +msgid "WordPress.org plugin directory slug." +msgstr "Titelform im WordPress.org-Plugin-Verzeichnis." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:398 +msgid "The theme's current version." +msgstr "Die aktuelle Version des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:391 +msgid "The URI of the theme's webpage, transformed for display." +msgstr "Der URI der Theme-Webseite, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:386 +msgid "The URI of the theme's webpage, as found in the theme header." +msgstr "Der URI der Theme-Webseite, wie er im Theme-Header zu finden ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:381 +msgid "The URI of the theme's webpage." +msgstr "Der URI der Theme-Webseite." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:370 +msgid "The theme's text domain." +msgstr "Die Textdomain des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:364 +msgid "The theme tags, transformed for display." +msgstr "Die Theme-Schlagwörter, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:357 +msgid "The theme tags, as found in the theme header." +msgstr "Die Theme-Schlagwörter, wie sie im Theme-Header zu finden sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:352 +msgid "Tags indicating styles and features of the theme." +msgstr "Schlagwörter, die Stile und Funktionen des Themes angeben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:346 +msgid "The theme's screenshot URL." +msgstr "Die Screenshot-URL des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:341 +msgid "The minimum WordPress version required for the theme to work." +msgstr "Die mindestens erforderliche WordPress-Version, damit dieses Theme funktioniert." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:336 +msgid "The minimum PHP version required for the theme to work." +msgstr "Die mindestens erforderliche PHP-Version, damit dieses Theme funktioniert." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:330 +msgid "The theme name, transformed for display." +msgstr "Der Theme-Name, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:326 +msgid "The theme name, as found in the theme header." +msgstr "Der Name des Themes, wie er im Theme-Header zu finden ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:321 +msgid "The name of the theme." +msgstr "Der Name des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:315 +msgid "The theme description, transformed for display." +msgstr "Die Theme-Beschreibung, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:311 +msgid "The theme description, as found in the theme header." +msgstr "Die Theme-Beschreibung, wie sie im Theme-Header zu finden ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:306 +msgid "A description of the theme." +msgstr "Eine Beschreibung des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:299 +msgid "The website of the theme author, transformed for display." +msgstr "Die Website des Theme-Autors, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:294 +msgid "The website of the theme author, as found in the theme header." +msgstr "Die Website des Theme-Autors, wie sie im Theme-Header zu finden ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:289 +msgid "The website of the theme author." +msgstr "Die Website des Theme-Autors." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:283 +msgid "HTML for the theme author, transformed for display." +msgstr "Das HTML für den Theme-Autor, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:279 +msgid "The theme author's name, as found in the theme header." +msgstr "Der Name des Theme-Autors, wie er im Theme-Header zu finden ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:274 +msgid "The theme author." +msgstr "Der Theme-Autor." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:269 +msgid "The theme's template. If this is a child theme, this refers to the parent theme, otherwise this is the same as the theme's stylesheet." +msgstr "Das Template des Themes. Wenn es sich um ein Child-Theme handelt, bezieht sich dieses auf das Eltern-Theme, andernfalls ist es das gleiche wie das Stylesheet des Themes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:264 +msgid "The theme's stylesheet. This uniquely identifies the theme." +msgstr "Das Stylesheet des Themes. Dieses identifiziert das Theme eindeutig." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:587 +msgid "Block namespace." +msgstr "Block-Namensraum." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:558 +msgid "A list of the inner block's own inner blocks. This is a recursive definition following the parent innerBlocks schema." +msgstr "Eine Liste der eigenen inneren Blöcke des inneren Blocks. Dies ist eine rekursive Definition, die dem übergeordneten Schema der inneren Blöcke folgt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:554 +msgid "The attributes of the inner block." +msgstr "Die Attribute des inneren Blocks." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:550 +msgid "The name of the inner block." +msgstr "Der Name des inneren Blocks." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:544 +msgid "The list of inner blocks used in the example." +msgstr "Die Liste der im Beispiel verwendeten inneren Blöcke." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:540 +msgid "The attributes used in the example." +msgstr "Die Attribute, die im Beispiel verwendet werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:535 +msgid "Block example." +msgstr "Block-Beispiel." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:525 +msgid "Block keywords." +msgstr "Block-Schlüsselwörter." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:515 +msgid "Parent blocks." +msgstr "Übergeordnete Blöcke." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:508 +msgid "Public text domain." +msgstr "Öffentliche Textdomain." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:498 +msgid "Contains the handle that defines the block style." +msgstr "Beinhaltet den Handle, der den Block-Stil definiert." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:494 +msgid "Inline CSS code that registers the CSS class required for the style." +msgstr "Inline-CSS-Code, der die CSS-Klasse registriert, die für den Stil erforderlich ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:490 +msgid "The human-readable label for the style." +msgstr "Die menschenlesbare Bezeichnung für den Stil." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:485 +msgid "Unique name identifying the style." +msgstr "Eindeutiger Name, der den Stil identifiziert." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:479 +msgid "Block style variations." +msgstr "Variationen des Block-Stils." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:472 +msgid "Public facing style handle." +msgstr "Öffentlich sichtbares Stil-Handle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:465 +msgid "Editor style handle." +msgstr "Editor-Stil-Handle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:458 +msgid "Public facing script handle." +msgstr "Öffentlich sichtbares Skript-Handle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:451 +msgid "Editor script handle." +msgstr "Editor-Skript-Handle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:444 +msgid "Is the block dynamically rendered." +msgstr "Ob der Block dynamisch gerendert ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:437 +msgid "Block category." +msgstr "Block-Kategorie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:429 +msgid "Block supports." +msgstr "Block-Unterstützung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:419 +msgid "Context values inherited by blocks of this type." +msgstr "Geerbte Kontextwerte von Blöcken dieses Typs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:408 +msgid "Context provided by blocks of this type." +msgstr "Kontext, der von Blöcken dieses Typs angeboten wird." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:397 +msgid "Block attributes." +msgstr "Block-Attribute." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:390 +msgid "Icon of block type." +msgstr "Icon des Blocktyps." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:383 +msgid "Description of block type." +msgstr "Beschreibung des Blocktyps." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:376 +msgid "Unique name identifying the block type." +msgstr "Eindeutiger Name, der den Blocktyp identifiziert." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:369 +msgid "Title of block type." +msgstr "Titel des Blocktyps." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:210 +msgid "Invalid block type." +msgstr "Ungültiger Blocktyp." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:196 +msgid "Sorry, you are not allowed to manage block types." +msgstr "Du bist leider nicht berechtigt, Blocktypen zu verwalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:94 +msgid "Block namespace" +msgstr "Block-Namensraum" + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-types-controller.php:90 +msgid "Block name" +msgstr "Blockname" + +#: wp-includes/meta.php:1373 +msgid "When registering a default meta value the data must match the type provided." +msgstr "Wenn ein Standard-Metawert registriert wird, muss dieser vom angegebenen Typ sein." + +#: wp-includes/widgets/class-wp-widget-rss.php:106 +msgid "RSS Feed" +msgstr "RSS-Feed" + +#: wp-includes/block-patterns/text-three-columns-buttons.php:9 +msgid "Three columns of text with buttons" +msgstr "Drei Textspalten mit Buttons" + +#: wp-includes/block-patterns/quote.php:10 +msgid "— Don Quixote" +msgstr "— Don Quijote" + +#: wp-includes/block-patterns/three-buttons.php:9 +msgid "Three buttons" +msgstr "Drei Buttons" + +#: wp-includes/block-patterns/text-two-columns-with-images.php:9 +msgid "Two columns of text with images" +msgstr "Zwei Textspalten mit Bildern" + +#: wp-includes/block-patterns/text-two-columns.php:9 +msgid "Two columns of text" +msgstr "Zwei Textspalten" + +#: wp-includes/block-patterns/two-buttons.php:9 +msgid "Two buttons" +msgstr "Zwei Buttons" + +#: wp-includes/block-patterns/two-images.php:9 +msgid "Two images side by side" +msgstr "Zwei Bilder nebeneinander" + +#: wp-includes/theme.php:4007 +msgid "The post types that support thumbnails or true if all post types are supported." +msgstr "Die Inhaltstypen, die Vorschaubilder unterstützen oder true, wenn alle Inhaltstypen unterstützt werden." + +#: wp-includes/theme.php:3118 +msgid "When registering an \"object\" feature, the feature's schema must include the \"properties\" keyword." +msgstr "Wenn eine Funktion als „object“ registriert wird, muss das Funktions-Schema das Stichwort „properties“ enthalten." + +#: wp-includes/theme.php:3111 +msgid "When registering an \"array\" feature, the feature's schema must include the \"items\" keyword." +msgstr "Wenn eine Funktion als „array“ registriert wird, muss das Funktions-Schema das Stichwort „items“ enthalten." + +#: wp-includes/theme.php:3104 +msgid "When registering an \"array\" or \"object\" feature to show in the REST API, the feature's schema must also be defined." +msgstr "Wenn eine Funktion als „array“ oder „object“ registriert wird, um es in der REST-API anzuzeigen, muss das Funktions-Schema auch definiert sein." + +#: wp-includes/theme.php:3096 +msgid "When registering a \"variadic\" theme feature, the \"type\" must be an \"array\"." +msgstr "Wenn eine Theme-Funktion als „variadic“ registriert wird, muss der „type“ ein „array“ sein." + +#: wp-includes/theme.php:3089 +msgid "The feature \"type\" is not valid JSON Schema type." +msgstr "Die Funktion „type“ ist kein gültiger JSON-Schema-Typ." + +#. translators: %s: Theme name. +#: wp-includes/theme.php:959 +msgctxt "theme" +msgid "Error: Current WordPress version does not meet minimum requirements for %s." +msgstr "Fehler: Die aktuelle WordPress-Version erfüllt nicht die Mindestanforderungen für %s." + +#. translators: %s: Theme name. +#: wp-includes/theme.php:950 +msgctxt "theme" +msgid "Error: Current PHP version does not meet minimum requirements for %s." +msgstr "Fehler: Die aktuelle PHP-Version erfüllt nicht die Mindestanforderungen für %s." + +#. translators: %s: Theme name. +#: wp-includes/theme.php:941 +msgctxt "theme" +msgid "Error: Current WordPress and PHP versions do not meet minimum requirements for %s." +msgstr "Fehler: Die aktuellen WordPress- und PHP-Versionen erfüllen nicht die Mindestanforderungen für %s." + +#: wp-includes/script-loader.php:850 +msgid "This image cannot be displayed in a web browser. For best results convert it to JPEG before uploading." +msgstr "Dieses Bild kann nicht in einem Webbrowser dargestellt werden. Für ein optimales Ergebnis konvertiere es vor dem Hochladen in das JPEG-Format." + +#: wp-includes/admin-bar.php:314 +msgid "Edit Profile" +msgstr "Profil bearbeiten" + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:64 +msgid "Priority" +msgstr "Priorität" + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:63 +msgid "Change Frequency" +msgstr "Häufigkeit der Änderungen" + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:62 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:176 +#: wp-admin/includes/class-wp-posts-list-table.php:1103 +msgid "Last Modified" +msgstr "Zuletzt geändert" + +#. translators: %s: Number of URLs. +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:56 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:170 +msgid "Number of URLs in this XML Sitemap: %s." +msgstr "Anzahl der URLs in dieser XML-Sitemap: %s." + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:51 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:165 +msgid "Learn more about XML sitemaps." +msgstr "Weitere Informationen zu XML-Sitemaps." + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:50 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:164 +msgid "https://www.sitemaps.org/" +msgstr "https://www.sitemaps.org/de/" + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:47 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:161 +msgid "This XML Sitemap is generated by WordPress to make your content more visible for search engines." +msgstr "Die XML-Sitemap wird von WordPress generiert, um deinen Inhalt besser für Suchmaschinen sichtbar zu machen." + +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:46 +#: wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php:160 +msgid "XML Sitemap" +msgstr "XML-Sitemap" + +#. translators: %s: SimpleXML +#: wp-includes/sitemaps/class-wp-sitemaps-renderer.php:264 +msgid "Could not generate XML sitemap due to missing %s extension" +msgstr "Die XML-Sitemap konnte aufgrund der fehlenden Erweiterung %s nicht generiert werden" + +#. translators: %s: List of element names. +#: wp-includes/sitemaps/class-wp-sitemaps-renderer.php:235 +msgid "Fields other than %s are not currently supported for sitemaps." +msgstr "Andere Felder als %s werden für Sitemaps aktuell nicht unterstützt." + +#. translators: %s: List of element names. +#: wp-includes/sitemaps/class-wp-sitemaps-renderer.php:170 +msgid "Fields other than %s are not currently supported for the sitemap index." +msgstr "Andere Felder als %s werden für den Sitemap-Index aktuell nicht unterstützt." + +#: wp-login.php:1168 +msgid "Check your email" +msgstr "Überprüfe deine E-Mail" + +#. translators: %s: Link to the login page. +#: wp-login.php:1158 +msgid "Registration complete. Please check your email, then visit the login page." +msgstr "Registrierung abgeschlossen. Bitte überprüfe deine E-Mail und rufe dann die Anmelde-Seite auf." + +#. translators: %s: Link to the login page. +#: wp-login.php:1148 +msgid "Check your email for the confirmation link, then visit the login page." +msgstr "Überprüfe deine E-Mail auf einen Bestätigungslink und rufe dann die Anmelde-Seite auf." + +#: wp-includes/comment-template.php:603 wp-admin/includes/meta-boxes.php:172 +#: wp-admin/includes/meta-boxes.php:201 +msgid "Password protected" +msgstr "Passwortgeschützt" + +#: wp-includes/rest-api.php:51 +msgid "Namespace must not start or end with a slash." +msgstr "Der Namensraum darf nicht mit einem Schrägstrich beginnen oder enden." + +#: wp-includes/class-wp-xmlrpc-server.php:3385 +#: wp-includes/class-wp-xmlrpc-server.php:3388 +msgid "Sorry, the category could not be created." +msgstr "Die Kategorie konnte leider nicht erstellt werden." + +#: wp-includes/class-wp-xmlrpc-server.php:1786 +#: wp-includes/class-wp-xmlrpc-server.php:5202 +msgid "Sorry, the post could not be deleted." +msgstr "Der Beitrag konnte leider nicht gelöscht werden." + +#: wp-includes/class-wp-xmlrpc-server.php:1643 +#: wp-includes/class-wp-xmlrpc-server.php:5142 +#: wp-includes/class-wp-xmlrpc-server.php:5900 +msgid "Sorry, the post could not be updated." +msgstr "Der Beitrag konnte leider nicht aktualisiert werden." + +#: wp-includes/media.php:4288 wp-includes/js/dist/block-library.js:23701 +msgid "Select poster image" +msgstr "Vorschaubild auswählen" + +#: wp-includes/js/dist/edit-post.js:6875 wp-admin/edit-form-advanced.php:143 +msgid "View post" +msgstr "Beitrag anzeigen" + +#: wp-includes/js/dist/editor.js:11748 wp-admin/edit-tags.php:446 +#: wp-admin/includes/meta-boxes.php:890 wp-admin/includes/meta-boxes.php:1563 +#: wp-admin/includes/class-wp-terms-list-table.php:184 +#: wp-admin/includes/class-wp-terms-list-table.php:652 +#: wp-admin/includes/class-wp-posts-list-table.php:1555 +#: wp-admin/edit-tag-form.php:138 +msgid "Slug" +msgstr "Titelform" + +#: wp-includes/js/dist/editor.js:8628 wp-admin/includes/meta-boxes.php:708 +msgid "https://wordpress.org/support/article/excerpt/" +msgstr "https://wordpress.org/support/article/excerpt/" + +#. translators: 1: Post status, 2: Capability name. +#: wp-includes/capabilities.php:246 +msgid "The post status %1$s is not registered, so it may not be reliable to check the capability \"%2$s\" against a post with that status." +msgstr "Der Beitragsstatus %1$s wurde nicht registriert. Es könnte deshalb unzuverlässig sein, die Berechtigung „%2$s“ mit einem Inhalt dieses Status abzugleichen." + +#. translators: %s: Comment link. +#: wp-includes/comment-template.php:981 +#: wp-admin/includes/class-wp-comments-list-table.php:871 +#: wp-admin/comment.php:204 +msgid "In reply to %s." +msgstr "Als Antwort auf %s." + +#: wp-includes/general-template.php:2367 +msgid "Previous and next months" +msgstr "Vorherige und nächste Monate" + +#: wp-includes/option.php:2258 +msgid "When registering an \"array\" setting to show in the REST API, you must specify the schema for each array item in \"show_in_rest.schema.items\"." +msgstr "Wenn du eine „array“-Einstellung registrierst, die in der REST-API angezeigt wird, musst du das Schema für jedes Array-Element in „show_in_rest.schema.items“ angeben." + +#: wp-includes/user.php:3144 +msgid "User’s Session Tokens data." +msgstr "Daten im Session-Token des Benutzers." + +#: wp-includes/user.php:3143 +msgid "Session Tokens" +msgstr "Session-Token" + +#: wp-includes/user.php:3122 +msgid "Last Login" +msgstr "Letzte Anmeldung" + +#: wp-includes/user.php:3121 +msgid "User Agent" +msgstr "User Agent" + +#: wp-includes/user.php:3119 +msgid "Expiration" +msgstr "Ablaufdatum" + +#: wp-includes/user.php:3109 +msgid "User’s location data used for the Community Events in the WordPress Events and News dashboard widget." +msgstr "Die Standortdaten des Benutzers, die für die Anzeige der Einträge im Dashboard-Widget „WordPress-Veranstaltungen und Neuigkeiten“ verwendet wird." + +#: wp-includes/user.php:3108 +msgid "Community Events Location" +msgstr "Standort für WordPress-Veranstaltungen" + +#: wp-includes/user.php:3092 wp-includes/user.php:3120 +msgid "IP" +msgstr "IP" + +#: wp-includes/user.php:3091 +msgid "Longitude" +msgstr "Längengrad" + +#: wp-includes/user.php:3090 +msgid "Latitude" +msgstr "Breitengrad" + +#: wp-includes/user.php:3089 +msgid "Country" +msgstr "Land" + +#: wp-includes/user.php:3088 +msgid "City" +msgstr "Stadt" + +#. translators: %s: wp_privacy_additional_user_profile_data +#: wp-includes/user.php:3064 +msgid "Filter %s returned items with reserved names." +msgstr "Der Filter %s übergibt Elemente mit reservierten Namen." + +#: wp-includes/media-template.php:424 wp-includes/media-template.php:623 +#: wp-admin/includes/media.php:3410 +msgid "Original image:" +msgstr "Originalbild:" + +#: wp-includes/cron.php:831 +msgid "Once Weekly" +msgstr "Einmal wöchentlich" + +#. translators: Comment moderation. %s: Parent comment edit URL. +#. translators: %s: Comment link. +#: wp-includes/pluggable.php:1630 wp-includes/pluggable.php:1814 +#: wp-admin/edit-form-comment.php:177 +msgid "In reply to: %s" +msgstr "Als Antwort auf: %s" + +#: wp-includes/pluggable.php:1274 +msgid "HTTP redirect status code must be a redirection code, 3xx." +msgstr "Der HTTP-Weiterleitungs-Statuscode muss ein 3xx-Weiterleitungscode sein." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2717 +msgid "Limit result set based on relationship between multiple taxonomies." +msgstr "Abfrage-Ergebnis auf Basis der Beziehung zwischen mehreren Taxonomien einschränken." + +#. translators: 1. The taxonomy name, 2. The property name, either 'rest_base' +#. or 'name', 3. The conflicting value. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2384 +msgid "The \"%1$s\" taxonomy \"%2$s\" property (%3$s) conflicts with an existing property on the REST API Posts Controller. Specify a custom \"rest_base\" when registering the taxonomy to avoid this error." +msgstr "Die Eigenschaft „%2$s“ (%3$s) der Taxonomie „%1$s“ erzeugt einen Konflikt mit einer bestehenden Eigenschaft im REST-API-Posts-Controller. Bitte gib bei der Registrierung der Taxonomie einen individuellen Wert für „rest_base“ an, um diesen Fehler zu vermeiden." + +#: wp-includes/theme.php:4035 +msgid "Whether theme opts in to default WordPress block styles for viewing." +msgstr "Ob das Theme die Standard-Block-Stile von WordPress als Ansicht zulässt." + +#: wp-includes/theme.php:4028 +msgid "Whether the theme can manage the document title tag." +msgstr "Ob das Theme den Title-Tag des Dokuments verwalten kann." + +#: wp-includes/theme.php:3961 +msgid "Allows use of HTML5 markup for search forms, comment forms, comment lists, gallery, and caption." +msgstr "Erlaubt die Verwendung von HTML5-Markup für Such- und Kommentar-Formulare, Kommentar-Listen, Galerien und Bildunterschriften." + +#: wp-includes/theme.php:3953 +msgid "Whether theme opts in to the editor styles CSS wrapper." +msgstr "Ob das Theme den CSS-Wrapper des Editors zulässt." + +#: wp-includes/theme.php:3929 +msgid "Custom gradient presets if defined by the theme." +msgstr "Individuelle Verlaufs-Voreinstellungen, falls durch das Theme definiert." + +#: wp-includes/theme.php:3904 +msgid "Custom font sizes if defined by the theme." +msgstr "Individuelle Schriftgrößen, falls durch das Theme definiert." + +#: wp-includes/theme.php:3879 +msgid "Custom color palette if defined by the theme." +msgstr "Individuelle Farbpalette, falls durch das Theme definiert." + +#: wp-includes/theme.php:3871 +msgid "Whether the theme disables custom gradients." +msgstr "Ob das Theme individuelle Verläufe deaktiviert." + +#: wp-includes/theme.php:3864 +msgid "Whether the theme disables custom font sizes." +msgstr "Ob das Theme individuelle Schriftgrößen deaktiviert." + +#: wp-includes/theme.php:3857 +msgid "Whether the theme disables custom colors." +msgstr "Ob das Theme individuelle Farben deaktiviert." + +#: wp-includes/theme.php:3850 +msgid "Whether theme opts in to the dark editor style UI." +msgstr "Ob das Theme den dunklen Benutzeroberflächen-Stil des Editors zulässt." + +#: wp-includes/theme.php:3843 +msgid "Whether the theme enables Selective Refresh for Widgets being managed with the Customizer." +msgstr "Ob das Theme das selektive Aktualisieren der Widgets aktiviert, die mit dem Customizer verwaltet werden." + +#: wp-includes/theme.php:3810 +msgid "Custom logo if defined by the theme." +msgstr "Individuelles Logo, falls durch das Theme definiert." + +#: wp-includes/theme.php:3695 +msgid "Custom background if defined by the theme." +msgstr "Individueller Hintergrund, falls durch das Theme definiert." + +#: wp-includes/theme.php:3765 +msgid "Custom header if defined by the theme." +msgstr "Individueller Header, falls durch das Theme definiert." + +#: wp-includes/theme.php:3688 +msgid "Whether posts and comments RSS feed links are added to head." +msgstr "Ob Links zu den RSS-Feeds für Beiträge und Kommentare in den HTML-Head eingefügt werden." + +#: wp-includes/theme.php:3681 +msgid "Whether theme opts in to wide alignment CSS class." +msgstr "Ob das Theme die CSS-Klasse für weite Ausrichtung zulässt." + +#: wp-includes/class-wp-xmlrpc-server.php:4989 +#: wp-includes/class-wp-xmlrpc-server.php:5002 +msgid "Sorry, this method is not supported." +msgstr "Diese Methode wird leider nicht unterstützt." + +#: wp-includes/class-wp-xmlrpc-server.php:1645 +#: wp-includes/class-wp-xmlrpc-server.php:5062 +#: wp-includes/class-wp-xmlrpc-server.php:5555 +msgid "Sorry, the post could not be created." +msgstr "Der Beitrag konnte leider nicht erstellt werden." + +#. translators: Minimum input length in characters to start searching posts in +#. the "Insert/edit link" modal. +#: wp-includes/script-loader.php:1067 +msgctxt "minimum input length for searching post links" +msgid "3" +msgstr "3" + +#: wp-includes/script-loader.php:835 +msgid "Post-processing of the image failed likely because the server is busy or does not have enough resources. Uploading a smaller image may help. Suggested maximum size is 2500 pixels." +msgstr "Die Verarbeitung des Bildes ist fehlgeschlagen. Der Server ist möglicherweise ausgelastet oder hat nicht genügend Ressourcen zur Verfügung. Eventuell hilft es, wenn du ein kleineres Bild hochlädst. Die vorgeschlagene Maximalgröße ist 2500 Pixel." + +#: wp-login.php:861 +msgid "Please enter your username or email address. You will receive an email message with instructions on how to reset your password." +msgstr "Bitte gib deinen Benutzernamen oder deine E-Mail-Adresse an. Du wirst eine E-Mail-Nachricht mit Informationen erhalten, wie du dein Passwort zurücksetzen kannst." + +#. translators: Accessibility text. +#: wp-includes/media-template.php:188 +msgid "Selected media actions" +msgstr "Ausgewählte Medien-Aktionen" + +#: wp-includes/media-template.php:177 +msgctxt "media modal menu" +msgid "Menu" +msgstr "Menü" + +#: wp-includes/media-template.php:175 +msgctxt "media modal menu actions" +msgid "Actions" +msgstr "Aktionen" + +#: wp-includes/post.php:2798 +msgctxt "file type group" +msgid "Archives" +msgstr "Archive" + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:906 +msgid "List of the missing image sizes of the attachment." +msgstr "Liste der fehlenden Bildgrößen des Anhangs." + +#: wp-includes/user.php:231 +msgid "Unknown email address. Check again or try your username." +msgstr "Unbekannte E-Mail-Adresse. Überprüfe sie noch einmal oder versuche es mit deinem Benutzernamen." + +#: wp-includes/user.php:152 +msgid "Unknown username. Check again or try your email address." +msgstr "Unbekannter Benutzername. Überprüfe ihn noch einmal oder versuche es mit deiner E-Mail-Adresse." + +#: wp-includes/media.php:4313 +msgid "Media list" +msgstr "Medienliste" + +#: wp-includes/media.php:4312 +msgid "Filter media" +msgstr "Medien filtern" + +#: wp-includes/media-template.php:316 +#: wp-includes/js/dist/block-library.js:17332 +#: wp-includes/js/dist/block-library.js:20087 +#: wp-admin/includes/class-wp-media-list-table.php:45 +msgid "Grid view" +msgstr "Rasteransicht" + +#: wp-includes/media-template.php:313 +#: wp-includes/js/dist/block-library.js:17323 +#: wp-includes/js/dist/block-library.js:20078 +#: wp-admin/includes/class-wp-media-list-table.php:44 +msgid "List view" +msgstr "Listenansicht" + +#: wp-includes/js/dist/block-directory.js:1763 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:62 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:105 +#: wp-admin/includes/class-wp-privacy-data-export-requests-list-table.php:111 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:67 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:111 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:118 +msgid "Retry" +msgstr "Erneut versuchen" + +#: wp-includes/js/dist/editor.js:8000 wp-admin/includes/template.php:2547 +msgid "Restore the backup" +msgstr "Das Backup wiederherstellen" + +#: wp-includes/js/dist/editor.js:7997 wp-admin/includes/template.php:2546 +msgid "The backup of this post in your browser is different from the version below." +msgstr "Das Backup dieses Beitrags in deinem Browser unterscheidet sich von der untenstehenden Version." + +#: wp-includes/nav-menu.php:97 +msgid "Nav menu locations must be strings." +msgstr "Navigations-Menüpositionen müssen aus Zeichenfolgen bestehen." + +#. translators: %s: The currently used PHP version. +#: wp-includes/class-wp-recovery-mode-email-service.php:347 +msgid "PHP version %s" +msgstr "PHP-Version %s" + +#. translators: 1: The failing plugins name. 2: The failing plugins version. +#: wp-includes/class-wp-recovery-mode-email-service.php:339 +msgid "Current plugin: %1$s (version %2$s)" +msgstr "Aktuelles Plugin: %1$s (Version %2$s)" + +#. translators: 1: Current active theme name. 2: Current active theme version. +#: wp-includes/class-wp-recovery-mode-email-service.php:330 +msgid "Current theme: %1$s (version %2$s)" +msgstr "Aktuelles Theme: %1$s (Version %2$s)" + +#. translators: %s: Your current version of WordPress. +#: wp-includes/class-wp-recovery-mode-email-service.php:325 +#: wp-admin/includes/class-wp-site-health.php:264 +msgid "WordPress version %s" +msgstr "WordPress-Version %s" + +#: wp-includes/ms-load.php:498 +msgid "https://wordpress.org/support/article/debugging-a-wordpress-network/" +msgstr "https://wordpress.org/support/article/debugging-a-wordpress-network/" + +#: wp-includes/formatting.php:4857 +msgid "https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure" +msgstr "https://wordpress.org/support/article/using-permalinks/#choosing-your-permalink-structure" + +#: wp-includes/link-template.php:2585 wp-includes/link-template.php:2667 +#: wp-includes/link-template.php:2735 +#: wp-admin/includes/class-wp-users-list-table.php:360 +msgid "Posts" +msgstr "Beiträge" + +#: wp-includes/customize/class-wp-customize-nav-menu-locations-control.php:54 +msgid "https://wordpress.org/support/article/wordpress-widgets/" +msgstr "https://wordpress.org/support/article/wordpress-widgets/" + +#. translators: 1: UTC abbreviation and offset, 2: UTC offset. +#: wp-includes/customize/class-wp-customize-date-time-control.php:252 +msgid "Your timezone is set to %1$s (Coordinated Universal Time %2$s)." +msgstr "Deine Zeitzone ist auf %1$s (Koordinierte Universalzeit %2$s) eingestellt." + +#. translators: 1: Timezone name, 2: Timezone abbreviation, 3: UTC abbreviation +#. and offset, 4: UTC offset. +#: wp-includes/customize/class-wp-customize-date-time-control.php:238 +msgid "Your timezone is set to %1$s (%2$s), currently %3$s (Coordinated Universal Time %4$s)." +msgstr "Deine Zeitzone ist auf %1$s (%2$s), derzeit %3$s (Koordinierte Universalzeit %4$s) eingestellt." + +#. translators: 1: Block name, 2: Block style name. +#: wp-includes/class-wp-block-styles-registry.php:77 +msgid "Block \"%1$s\" does not contain a style named \"%2$s\"." +msgstr "Der Block „%1$s“ enthält keinen Stil mit dem Namen „%2$s.“." + +#: wp-includes/class-wp-block-styles-registry.php:52 +msgid "Block style name must be a string." +msgstr "Der Name des Block-Stils muss aus einer Zeichenfolge bestehen." + +#: wp-includes/class-wp-block-styles-registry.php:46 +msgid "Block name must be a string." +msgstr "Der Name des Blocks muss aus einer Zeichenfolge bestehen." + +#: wp-includes/class-wp-fatal-error-handler.php:196 +#: wp-admin/includes/class-wp-site-health.php:1439 +msgid "Learn more about debugging in WordPress." +msgstr "Erfahre mehr über die Fehlerbehebung in WordPress." + +#. translators: Documentation explaining debugging in WordPress. +#: wp-includes/class-wp-fatal-error-handler.php:195 +#: wp-includes/functions.php:5214 +#: wp-admin/includes/class-wp-site-health.php:1438 +msgid "https://wordpress.org/support/article/debugging-in-wordpress/" +msgstr "https://wordpress.org/support/article/debugging-in-wordpress/" + +#: wp-includes/class-wp-fatal-error-handler.php:188 +msgid "There has been a critical error on your website." +msgstr "Es gab einen kritischen Fehler auf deiner Website." + +#: wp-includes/class-wp-fatal-error-handler.php:186 +msgid "There has been a critical error on your website. Please check your site admin email inbox for instructions." +msgstr "Es gab einen kritischen Fehler auf deiner Website. Bitte überprüfe den Posteingang deiner Website-Administrator-E-Mail-Adresse für weitere Anweisungen." + +#: wp-includes/class-wp-fatal-error-handler.php:184 +msgid "There has been a critical error on your website, putting it in recovery mode. Please check the Themes and Plugins screens for more details. If you just installed or updated a theme or plugin, check the relevant page for that first." +msgstr "Es gab einen kritischen Fehler auf deiner Website, der sie in den Wiederherstellungsmodus versetzt hat. Bitte überprüfe die Themes-Ansicht und Plugins-Ansicht für weitere Details. Wenn du gerade ein Theme oder Plugin installiert oder aktualisiert hast, überprüfe zuerst die entsprechende Seite." + +#: wp-includes/class-wp-image-editor-imagick.php:633 +msgid "The image cannot be rotated because the embedded meta data cannot be updated." +msgstr "Das Bild kann nicht gedreht werden, da die eingebetteten Metadaten nicht aktualisiert werden können." + +#: wp-includes/user.php:3079 +msgid "User’s profile data." +msgstr "Profildaten des Benutzers." + +#: wp-includes/user.php:1816 +msgid "Not enough data to create this user." +msgstr "Es sind nicht genügend Daten vorhanden, um diesen Benutzer zu erstellen." + +#: wp-includes/user.php:1687 +msgid "Sorry, marking a user as spam is only supported on Multisite." +msgstr "Leider wird die Kennzeichnung eines Benutzers als Spam nur auf Multisite unterstützt." + +#: wp-includes/media.php:4751 +msgid "User’s media data." +msgstr "Mediendaten des Benutzers." + +#: wp-includes/media.php:4238 +msgid "No media items found. Try a different search." +msgstr "Keine Medienelemente gefunden. Versuche eine andere Suche." + +#: wp-includes/media.php:4236 +msgid "Number of media items displayed: %d. Scroll the page for more results." +msgstr "Anzahl der angezeigten Medienelemente: %d. Scroll auf der Seite, um weitere Ergebnisse zu erhalten." + +#: wp-includes/media.php:4235 +msgid "Number of media items found: %d" +msgstr "Anzahl der gefundenen Medienelemente: %d" + +#. translators: %s: Number of archives. +#: wp-includes/post.php:2801 +msgid "Archive (%s)" +msgid_plural "Archives (%s)" +msgstr[0] "Archiv (%s)" +msgstr[1] "Archive (%s)" + +#: wp-includes/post.php:2799 +msgid "Manage Archives" +msgstr "Archive verwalten" + +#. translators: %s: Number of spreadsheets. +#: wp-includes/post.php:2792 +msgid "Spreadsheet (%s)" +msgid_plural "Spreadsheets (%s)" +msgstr[0] "Tabellenkalkulation (%s)" +msgstr[1] "Tabellenkalkulationen (%s)" + +#: wp-includes/post.php:2790 +msgid "Manage Spreadsheets" +msgstr "Tabellenkalkulationen verwalten" + +#: wp-includes/post.php:2789 +msgid "Spreadsheets" +msgstr "Tabellenkalkulationen" + +#: wp-includes/post.php:2781 +msgid "Manage Documents" +msgstr "Dokumente verwalten" + +#: wp-includes/post.php:2780 +msgid "Documents" +msgstr "Dokumente" + +#: wp-includes/load.php:124 wp-admin/install.php:287 +msgid "Requirements Not Met" +msgstr "Anforderungen sind nicht erfüllt" + +#. translators: 1: "srclang" HTML attribute, 2: "label" HTML attribute, 3: +#. "kind" HTML attribute. +#: wp-includes/media-template.php:1385 +msgid "The %1$s, %2$s, and %3$s values can be edited to set the video track language and kind." +msgstr "Die Werte %1$s, %2$s und %3$s können bearbeitet werden, um die Sprache und Art der Videospur festzulegen." + +#: wp-includes/comment.php:3646 +msgid "User’s comment data." +msgstr "Kommentardaten des Benutzers." + +#: wp-includes/class-wp-text-diff-renderer-table.php:137 +msgid "Unchanged:" +msgstr "Unverändert:" + +#: wp-includes/class-wp-text-diff-renderer-table.php:116 +msgid "Added:" +msgstr "Hinzugefügt:" + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:344 +msgid "Whether posts of this status may have floating published dates." +msgstr "Ob Beiträge mit diesem Status variable Veröffentlichungsdaten haben können." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:413 +msgid "Sorry, you are not allowed to delete revisions of this post." +msgstr "Du bist leider nicht berechtigt, Revisionen dieses Beitrags zu löschen." + +#. translators: %s: Custom field key. +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:315 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:329 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:379 +msgid "Could not update the meta value of %s in database." +msgstr "Der Metawert von %s in der Datenbank konnte nicht aktualisiert werden." + +#: wp-includes/meta.php:1331 +msgid "When registering an \"array\" meta type to show in the REST API, you must specify the schema for each array item in \"show_in_rest.schema.items\"." +msgstr "Wenn du einen Metatyp „array“ registrierst, der in der REST-API angezeigt wird, musst du das Schema für jedes Array-Element in „show_in_rest.schema.items“ angeben." + +#. translators: %s: taxonomy name +#: wp-includes/blocks/tag-cloud.php:37 +msgid "Your site doesn’t have any %s, so there’s nothing to display here at the moment." +msgstr "Deine Website hat keine %s, also gibt es hier im Moment nichts zu sehen." + +#: wp-includes/widgets/class-wp-widget-meta.php:74 +msgid "Comments feed" +msgstr "Kommentare-Feed" + +#: wp-includes/widgets/class-wp-widget-meta.php:73 +msgid "Entries feed" +msgstr "Feed der Einträge" + +#: wp-includes/script-loader.php:834 +msgid "Unexpected response from the server. The file may have been uploaded successfully. Check in the Media Library or reload the page." +msgstr "Unerwartete Antwort des Servers. Die Datei wurde möglicherweise erfolgreich hochgeladen. Schau in der Mediathek nach oder lade die Seite neu." + +#: wp-load.php:83 wp-admin/setup-config.php:194 +msgid "https://wordpress.org/support/article/editing-wp-config-php/" +msgstr "https://wordpress.org/support/article/editing-wp-config-php/" + +#: wp-login.php:740 +msgid "Remind me later" +msgstr "Später daran erinnert werden" + +#: wp-login.php:724 +msgid "The email is correct" +msgstr "Diese E-Mail-Adresse ist korrekt" + +#: wp-login.php:712 +msgid "This email may be different from your personal email address." +msgstr "Diese E-Mail-Adresse kann sich von deiner persönlichen E-Mail-Adresse unterscheiden." + +#. translators: %s: Admin email address. +#: wp-login.php:705 +msgid "Current administration email: %s" +msgstr "Derzeitige Administrator-E-Mail-Adresse: %s" + +#: wp-login.php:694 +msgid "Why is this important?" +msgstr "Warum ist das wichtig?" + +#. translators: URL to the WordPress help section about admin email. +#: wp-login.php:686 +msgid "https://wordpress.org/support/article/settings-general-screen/#email-address" +msgstr "https://wordpress.org/support/article/settings-general-screen/#email-address" + +#: wp-login.php:682 +msgid "Please verify that the administration email for this website is still correct." +msgstr "Bitte überprüfe, ob die Administrator-E-Mail-Adresse für diese Website noch korrekt ist." + +#: wp-login.php:679 +msgid "Administration email verification" +msgstr "Überprüfung der Administrator-E-Mail-Adresse" + +#: wp-login.php:650 +msgid "Confirm your administration email" +msgstr "Bestätige deine Administrator-E-Mail-Adresse" + +#. translators: Maximum number of words used in a post excerpt. +#: wp-includes/formatting.php:3823 +msgctxt "excerpt_length" +msgid "55" +msgstr "55" + +#: wp-includes/class-wp-customize-manager.php:5527 +#: wp-admin/includes/class-custom-background.php:430 +msgctxt "Original Size" +msgid "Original" +msgstr "Original" + +#. translators: Maximum number of words used in a comment excerpt. +#: wp-includes/comment-template.php:607 +msgctxt "comment_excerpt_length" +msgid "20" +msgstr "20" + +#: wp-includes/class-wp-image-editor-imagick.php:467 +#: wp-includes/class-wp-image-editor-gd.php:260 +msgid "Cannot resize the image. Both width and height are not set." +msgstr "Die Größe des Bildes kann nicht geändert werden. Sowohl Breite als auch Höhe sind nicht definiert." + +#: wp-includes/media-template.php:1113 +msgid "Image size in pixels" +msgstr "Bildgröße in Pixeln" + +#: wp-includes/media-template.php:582 +msgid "Media title…" +msgstr "Medientitel…" + +#: wp-includes/media-template.php:581 +msgid "Media title" +msgstr "Medientitel" + +#: wp-includes/media-template.php:579 +msgid "Audio title…" +msgstr "Audiotitel…" + +#: wp-includes/media-template.php:578 +msgid "Audio title" +msgstr "Audiotitel" + +#: wp-includes/media-template.php:576 +msgid "Video title…" +msgstr "Videotitel…" + +#: wp-includes/media-template.php:575 +msgid "Video title" +msgstr "Videotitel" + +#: wp-includes/media-template.php:571 +msgid "Caption…" +msgstr "Beschriftung…" + +#: wp-includes/media-template.php:407 +#: wp-admin/includes/class-wp-themes-list-table.php:271 +#: wp-admin/includes/class-wp-theme-install-list-table.php:369 +#: wp-admin/import.php:205 +msgid "Details" +msgstr "Details" + +#: wp-includes/media-template.php:356 +msgid "Attachment Preview" +msgstr "Vorschau des Anhangs" + +#: wp-includes/media-template.php:232 +msgid "Your browser cannot upload files" +msgstr "Dein Browser kann keine Dateien hochladen" + +#: wp-includes/class-wp-xmlrpc-server.php:615 wp-includes/option.php:2185 +msgid "Allow people to submit comments on new posts." +msgstr "Erlaube Besuchern, neue Beiträge zu kommentieren." + +#. translators: %s: Documentation URL. +#: wp-login.php:474 +msgid "Error: The email could not be sent. Your site may not be correctly configured to send emails. Get support for resetting your password." +msgstr "Fehler: Die E-Mail konnte nicht gesendet werden. Möglicherweise ist deine Website nicht korrekt für den Versand von E-Mails konfiguriert. Unterstützung für das Zurücksetzen deines Passwortes erhalten (engl.)." + +#: wp-login.php:475 +msgid "https://wordpress.org/support/article/resetting-your-password/" +msgstr "https://wordpress.org/support/article/resetting-your-password/" + +#: wp-includes/customize/class-wp-customize-theme-control.php:98 +#: wp-admin/themes.php:397 wp-admin/themes.php:736 +msgid "New version available." +msgstr "Neue Version verfügbar." + +#: wp-includes/taxonomy.php:2362 +msgid "Could not insert term taxonomy into the database." +msgstr "Der Taxonomie-Begriff konnte nicht in die Datenbank eingefügt werden." + +#. translators: 1: Link to tutorial, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-includes/media-template.php:161 wp-admin/includes/media.php:3193 +msgid "Describe the purpose of the image%3$s. Leave empty if the image is purely decorative." +msgstr "Beschreibe den Zweck des Bildes%3$s. Leer lassen, wenn das Bild nur als dekoratives Element dient." + +#. translators: %s: Theme name. +#: wp-includes/class-wp-recovery-mode-email-service.php:269 +msgid "In this case, WordPress caught an error with your theme, %s." +msgstr "In diesem Fall hat WordPress einen Fehler in deinem Theme „%s“ abgefangen." + +#. translators: %s: Plugin name. +#: wp-includes/class-wp-recovery-mode-email-service.php:263 +msgid "In this case, WordPress caught an error with one of your plugins, %s." +msgstr "In diesem Fall hat WordPress einen Fehler in einem deiner Plugins, %s, abgefangen." + +#. translators: Do not translate LINK, EXPIRES, CAUSE, DETAILS, SITEURL, +#. PAGEURL, SUPPORT. DEBUG: those are placeholders. +#: wp-includes/class-wp-recovery-mode-email-service.php:152 +msgid "" +"Howdy!\n" +"\n" +"Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email.\n" +"###CAUSE###\n" +"First, visit your website (###SITEURL###) and check for any visible issues. Next, visit the page where the error was caught (###PAGEURL###) and check for any visible issues.\n" +"\n" +"###SUPPORT###\n" +"\n" +"If your site appears broken and you can't access your dashboard normally, WordPress now has a special \"recovery mode\". This lets you safely login to your dashboard and investigate further.\n" +"\n" +"###LINK###\n" +"\n" +"To keep your site safe, this link will expire in ###EXPIRES###. Don't worry about that, though: a new link will be emailed to you if the error occurs again after it expires.\n" +"\n" +"When seeking help with this issue, you may be asked for some of the following information:\n" +"###DEBUG###\n" +"\n" +"###DETAILS###" +msgstr "" +"Hallo!\n" +"\n" +"Seit WordPress 5.2 gibt es eine eingebaute Funktion, die erkennt, wenn ein Plugin oder ein Theme einen fatalen Fehler auf deiner Website verursacht, und dich deswegen mit dieser automatisierten E-Mail benachrichtigt.\n" +"###CAUSE###\n" +"Besuche zunächst deine Website (###SITEURL###) und überprüfe sie auf sichtbare Probleme. Besuche als nächstes die Seite, auf der der Fehler aufgetreten ist (###PAGEURL###) und prüfe, ob es sichtbare Probleme gibt.\n" +"\n" +"###SUPPORT###\n" +"\n" +"Wenn deine Website fehlerhaft zu sein scheint und du nicht mehr wie gewohnt auf dein Dashboard zugreifen kannst, hat WordPress jetzt einen speziellen „Wiederherstellungsmodus“. Auf diese Weise kannst du dich sicher in deinem Dashboard anmelden und weitere Untersuchungen durchführen.\n" +"\n" +"###LINK###\n" +"\n" +"Um deine Website zu schützen, läuft dieser Link in ###EXPIRES### ab. Aber keine Sorge: Ein neuer Link wird dir per E-Mail zugeschickt, wenn der Fehler nach Ablauf der Frist erneut auftritt.\n" +"\n" +"Wenn du Hilfe bei diesem Problem suchst, wirst du möglicherweise nach einigen der folgenden Informationen gefragt:\n" +"###DEBUG###\n" +"\n" +"###DETAILS###" + +#: wp-includes/class-wp-recovery-mode-email-service.php:140 +msgid "Please contact your host for assistance with investigating this issue further." +msgstr "Bitte kontaktiere dein Hosting-Unternehmen, um Unterstützung bei der weiteren Untersuchung dieses Problems zu erhalten." + +#: wp-includes/class-wp-recovery-mode.php:177 +msgid "Error occurred on a non-protected endpoint." +msgstr "Bei einem nicht geschützten Endpunkt ist ein Fehler aufgetreten." + +#. translators: %s: Login screen title. +#. translators: %s: Admin screen title. +#: wp-login.php:75 wp-admin/admin-header.php:57 +msgid "Recovery Mode — %s" +msgstr "Wiederherstellungsmodus – %s" + +#. translators: Login details notification email subject. %s: Site title. +#: wp-includes/pluggable.php:2059 +msgid "[%s] Login Details" +msgstr "[%s] Anmeldedaten" + +#: wp-includes/media-template.php:523 wp-includes/media-template.php:644 +#: wp-includes/media.php:4226 wp-admin/includes/meta-boxes.php:337 +#: wp-admin/includes/meta-boxes.php:441 wp-admin/includes/media.php:1710 +#: wp-admin/includes/class-wp-media-list-table.php:177 +#: wp-admin/includes/class-wp-comments-list-table.php:374 +#: wp-admin/includes/class-wp-posts-list-table.php:420 wp-admin/comment.php:136 +#: wp-admin/edit-form-comment.php:205 +msgid "Move to Trash" +msgstr "In den Papierkorb verschieben" + +#: wp-includes/media-template.php:521 wp-includes/media-template.php:642 +#: wp-includes/media.php:4227 +msgid "Restore from Trash" +msgstr "Aus dem Papierkorb wiederherstellen" + +#: wp-login.php:1258 wp-includes/wp-db.php:1122 wp-includes/wp-db.php:1701 +#: wp-includes/wp-db.php:1858 wp-includes/update.php:166 +#: wp-includes/update.php:401 wp-includes/update.php:605 +#: wp-includes/customize/class-wp-customize-themes-section.php:90 +#: wp-admin/includes/theme.php:544 wp-admin/includes/theme.php:558 +#: wp-admin/includes/theme.php:573 wp-admin/includes/translation-install.php:66 +#: wp-admin/includes/translation-install.php:80 +#: wp-admin/includes/translation-install.php:92 +#: wp-admin/includes/update.php:141 wp-admin/includes/plugin-install.php:181 +#: wp-admin/includes/plugin-install.php:196 +#: wp-admin/includes/plugin-install.php:211 +#: wp-admin/includes/class-wp-automatic-updater.php:788 +#: wp-admin/includes/class-wp-automatic-updater.php:1157 +#: wp-admin/theme-install.php:63 +msgid "https://wordpress.org/support/forums/" +msgstr "https://de.wordpress.org/support/forums/" + +#: wp-includes/admin-bar.php:184 +msgid "Support" +msgstr "Support" + +#. translators: Network admin email change notification email subject. %s: +#. Network title. +#: wp-includes/ms-functions.php:2825 +msgid "[%s] Network Admin Email Changed" +msgstr "[%s] E-Mail-Adresse des Netzwerkadministrators geändert" + +#. translators: Email change notification email subject. %s: Network title. +#: wp-includes/ms-functions.php:2762 +msgid "[%s] Network Admin Email Change Request" +msgstr "[%s] Änderungsanfrage für E-Mail-Adresse des Netzwerkadministrators" + +#. translators: Site admin email change notification email subject. %s: Site +#. title. +#: wp-includes/functions.php:7059 +msgid "[%s] Admin Email Changed" +msgstr "[%s] Administrator-E-Mail geändert" + +#. translators: New email address notification email subject. %s: Site title. +#: wp-includes/user.php:2900 +msgid "[%s] Email Change Request" +msgstr "[%s] E-Mail-Änderungsanfrage" + +#. translators: Email change notification email subject. %s: Site title. +#: wp-includes/user.php:2098 +msgid "[%s] Email Changed" +msgstr "[%s] E-Mail geändert" + +#: wp-includes/js/dist/block-library.js:11127 wp-admin/options-reading.php:151 +msgid "posts" +msgstr "Beiträge" + +#: wp-includes/widgets/class-wp-widget-calendar.php:34 +#: wp-includes/js/dist/block-library.js:11125 +msgid "A calendar of your site’s posts." +msgstr "Ein Kalender mit den Beiträgen deiner Website." + +#: wp-includes/media.php:4252 +msgid "Edit gallery" +msgstr "Galerie bearbeiten" + +#: wp-includes/class-wp-recovery-mode.php:246 +msgid "Failed to exit recovery mode. Please try again later." +msgstr "Der Wiederherstellungsmodus konnte nicht beendet werden. Bitte versuche es später noch einmal." + +#: wp-includes/class-wp-recovery-mode.php:242 +msgid "Exit recovery mode link expired." +msgstr "Der Link zum Verlassen des Wiederherstellungsmodus ist abgelaufen." + +#: wp-includes/class-wp-recovery-mode.php:188 +msgid "Failed to store the error." +msgstr "Der Fehler konnte nicht gespeichert werden." + +#: wp-includes/class-wp-recovery-mode.php:172 +msgid "Error not caused by a plugin or theme." +msgstr "Der Fehler wurde nicht durch ein Plugin oder ein Theme verursacht." + +#. translators: %s: Site title. +#: wp-includes/class-wp-recovery-mode-email-service.php:199 +msgid "[%s] Your Site is Experiencing a Technical Issue" +msgstr "[%s] Deine Website hat ein technisches Problem" + +#: wp-includes/class-wp-recovery-mode-email-service.php:125 +msgid "Error Details" +msgstr "Fehler-Details" + +#. translators: 1. Last sent as a human time diff, 2. Wait time as a human time +#. diff. +#: wp-includes/class-wp-recovery-mode-email-service.php:79 +msgid "A recovery link was already sent %1$s ago. Please wait another %2$s before requesting a new email." +msgstr "Ein Wiederherstellungslink wurde bereits vor %1$s gesendet. Bitte warte noch einmal %2$s, bevor du eine neue E-Mail anforderst." + +#. translators: %s: mail() +#: wp-includes/class-wp-recovery-mode-email-service.php:71 +msgid "The email could not be sent. Possible reason: your host may have disabled the %s function." +msgstr "Die E-Mail konnte nicht gesendet werden. Möglicherweise hat dein Provider die Funktion %s deaktiviert." + +#: wp-includes/class-wp-recovery-mode-email-service.php:58 +msgid "Could not update the email last sent time." +msgstr "Die zuletzt gesendete E-Mail konnte nicht aktualisiert werden." + +#: wp-includes/class-wp-recovery-mode-key-service.php:113 +msgid "Recovery key expired." +msgstr "Der Wiederherstellungsschlüssel ist abgelaufen." + +#: wp-includes/class-wp-recovery-mode-key-service.php:109 +msgid "Invalid recovery key." +msgstr "Ungültiger Wiederherstellungsschlüssel." + +#: wp-includes/class-wp-recovery-mode-key-service.php:105 +msgid "Invalid recovery key format." +msgstr "Ungültiges Schlüssel-Format für die Wiederherstellung." + +#: wp-includes/class-wp-recovery-mode-key-service.php:97 +msgid "Recovery Mode not initialized." +msgstr "Wiederherstellungsmodus nicht initialisiert." + +#. translators: User role for subscribers. +#: wp-includes/capabilities.php:1077 +msgctxt "User role" +msgid "Subscriber" +msgstr "Abonnent" + +#. translators: User role for contributors. +#: wp-includes/capabilities.php:1075 +msgctxt "User role" +msgid "Contributor" +msgstr "Mitarbeiter" + +#. translators: User role for authors. +#: wp-includes/capabilities.php:1073 +msgctxt "User role" +msgid "Author" +msgstr "Autor" + +#. translators: User role for editors. +#: wp-includes/capabilities.php:1071 +msgctxt "User role" +msgid "Editor" +msgstr "Redakteur" + +#. translators: User role for administrators. +#: wp-includes/capabilities.php:1069 +msgctxt "User role" +msgid "Administrator" +msgstr "Administrator" + +#: wp-includes/customize/class-wp-customize-media-control.php:246 +msgid "Select site icon" +msgstr "Website-Icon auswählen" + +#: wp-includes/user.php:3610 +msgid "An incomplete request for this email address already exists." +msgstr "Eine unvollständige Anfrage für diese E-Mail-Adresse liegt bereits vor." + +#: wp-includes/class-wp-customize-widgets.php:778 +msgid "Keep widget settings and move it to the inactive widgets" +msgstr "Widget-Einstellungen beibehalten und in die inaktiven Widgets verschieben." + +#: wp-includes/class-wp-recovery-mode-cookie-service.php:107 +msgid "Invalid cookie." +msgstr "Ungültiges Cookie." + +#: wp-includes/class-wp-recovery-mode-cookie-service.php:100 +msgid "Cookie expired." +msgstr "Das Cookie ist abgelaufen." + +#: wp-includes/class-wp-recovery-mode-cookie-service.php:93 +#: wp-includes/class-wp-recovery-mode-cookie-service.php:156 +msgid "Invalid cookie format." +msgstr "Ungültiges Cookie-Format." + +#: wp-includes/class-wp-recovery-mode-cookie-service.php:78 +#: wp-includes/class-wp-recovery-mode-cookie-service.php:127 +msgid "No cookie present." +msgstr "Kein Cookie vorhanden." + +#. translators: 1: Error type, 2: Error line number, 3: Error file name, 4: +#. Error message. +#: wp-includes/error-protection.php:63 +msgid "An error of type %1$s was caused in line %2$s of the file %3$s. Error message: %4$s" +msgstr "Ein Fehler vom Typ %1$s wurde in der Zeile %2$s der Datei %3$s verursacht. Fehlermeldung: %4$s" + +#: wp-includes/class-wp-theme.php:320 +#: wp-admin/includes/class-wp-themes-list-table.php:286 +#: wp-admin/theme-editor.php:43 wp-admin/theme-editor.php:368 +#: wp-admin/update-core.php:480 +msgid "https://developer.wordpress.org/themes/advanced-topics/child-themes/" +msgstr "https://developer.wordpress.org/themes/advanced-topics/child-themes/" + +#. translators: %s: The amount of additional, not visible images in the gallery +#. widget preview. +#: wp-includes/widgets/class-wp-widget-media-gallery.php:218 +msgid "Additional images added to this gallery: %s" +msgstr "Weitere Bilder wurden dieser Galerie hinzugefügt: %s" + +#. translators: %s: The image file name. +#: wp-includes/widgets/class-wp-widget-media-image.php:364 +#: wp-includes/widgets/class-wp-widget-media-gallery.php:204 +msgid "The current image has no alternative text. The file name is: %s" +msgstr "Das aktuelle Bild hat keinen Alternativtext. Der Dateiname ist: %s" + +#: wp-includes/admin-bar.php:1101 +msgid "Exit Recovery Mode" +msgstr "Wiederherstellungsmodus beenden" + +#. translators: %s: Number of comments. +#: wp-includes/admin-bar.php:921 wp-admin/includes/ajax-actions.php:470 +#: wp-admin/includes/ajax-actions.php:541 +#: wp-admin/includes/ajax-actions.php:1377 wp-admin/includes/dashboard.php:311 +#: wp-admin/menu.php:94 +msgid "%s Comment in moderation" +msgid_plural "%s Comments in moderation" +msgstr[0] "%s Kommentar in Moderation" +msgstr[1] "%s Kommentare in Moderation" + +#: wp-content/plugins/hello.php:62 hello.php:62 +msgid "Quote from Hello Dolly song, by Jerry Herman:" +msgstr "Zitat aus dem Hello-Dolly-Lied von Jerry Herman:" + +#: wp-login.php:1373 +msgid "Recovery Mode Initialized. Please log in to continue." +msgstr "Wiederherstellungsmodus initialisiert. Bitte melde dich an, um fortzufahren." + +#: wp-login.php:1268 +msgid "https://wordpress.org/support/article/cookies/#enable-cookies-in-your-browser" +msgstr "https://wordpress.org/support/article/cookies/#enable-cookies-in-your-browser" + +#: wp-login.php:1257 +msgid "https://wordpress.org/support/article/cookies/" +msgstr "https://wordpress.org/support/article/cookies/" + +#: wp-login.php:1178 wp-includes/user.php:3872 +msgid "Missing confirm key." +msgstr "Fehlender Bestätigungsschlüssel." + +#: wp-login.php:1174 wp-admin/includes/ajax-actions.php:4730 +#: wp-admin/includes/ajax-actions.php:4920 +msgid "Missing request ID." +msgstr "Fehlende Anforderungs-ID." + +#: wp-login.php:148 +msgid "Usage of the title attribute on the login logo is not recommended for accessibility reasons. Use the link text instead." +msgstr "Die Verwendung des title-Attributs für das Login-Logo wird aus Gründen der Barrierefreiheit nicht empfohlen. Verwende stattdessen den Linktext." + +#: wp-includes/functions.php:7479 +msgid "Update PHP" +msgstr "PHP aktualisieren" + +#: wp-includes/ms-site.php:79 +msgid "Could not retrieve site data." +msgstr "Die Website-Daten konnten nicht abgerufen werden." + +#. translators: %s: rest_api_init +#: wp-includes/rest-api.php:59 +msgid "REST API routes must be registered on the %s action." +msgstr "REST-API-Routen müssen für die Aktion %s registriert werden." + +#. translators: Used to join last two items in a list with more than 2 times. +#: wp-includes/formatting.php:5123 +msgid "%1$s, and %2$s" +msgstr "%1$s und %2$s" + +#. translators: %s: Number of failed requests. +#: wp-includes/post.php:456 +msgid "Failed (%s)" +msgid_plural "Failed (%s)" +msgstr[0] "Fehlgeschlagen (%s)" +msgstr[1] "Fehlgeschlagen (%s)" + +#: wp-includes/class-walker-comment.php:304 +#: wp-includes/class-walker-comment.php:402 +msgid "Your comment is awaiting moderation. This is a preview, your comment will be visible after it has been approved." +msgstr "Dein Kommentar wartet auf die Moderation. Dies ist eine Vorschau, dein Kommentar wird sichtbar, nachdem er genehmigt wurde." + +#. translators: %s: Database table name. +#: wp-includes/ms-site.php:1334 +msgid "The %s table is not installed. Please run the network database upgrade." +msgstr "Die %s-Tabelle ist nicht installiert. Bitte führe das Upgrade der Netzwerkdatenbank durch." + +#: wp-includes/ms-site.php:817 +msgid "The site appears to be already uninitialized." +msgstr "Die Website weist technische Schwierigkeiten auf." + +#. translators: %d: Site ID. +#: wp-includes/ms-site.php:699 +msgid "Site %d" +msgstr "Website %d" + +#: wp-includes/ms-site.php:686 +msgid "The site appears to be already initialized." +msgstr "Die Website scheint bereits initialisiert zu sein." + +#: wp-includes/ms-site.php:682 wp-includes/ms-site.php:813 +msgid "Site with the ID does not exist." +msgstr "Eine Website mit dieser ID existiert nicht." + +#: wp-includes/ms-site.php:626 +msgid "Both registration and last updated dates must be valid dates." +msgstr "Sowohl das Datum der Registrierung als auch das der letzten Aktualisierung müssen gültige Datumsangaben sein." + +#: wp-includes/ms-site.php:615 +msgid "Both registration and last updated dates must be provided." +msgstr "Sowohl das Datum der Registrierung als auch das der letzten Aktualisierung müssen angegeben werden." + +#: wp-includes/ms-site.php:608 +msgid "Site network ID must be provided." +msgstr "Die ID des Website-Netzwerkes muss angegeben werden." + +#: wp-includes/ms-site.php:603 +msgid "Site path must not be empty." +msgstr "Pfad der Website darf nicht leer sein." + +#: wp-includes/ms-site.php:598 +msgid "Site domain must not be empty." +msgstr "Domain der Website darf nicht leer sein." + +#: wp-includes/ms-site.php:269 +msgid "Could not delete site from the database." +msgstr "Die Website konnte nicht aus der Datenbank gelöscht werden." + +#: wp-includes/ms-site.php:180 +msgid "Could not update site in the database." +msgstr "Die Website konnte in der Datenbank nicht aktualisiert werden." + +#: wp-includes/ms-site.php:166 wp-includes/ms-site.php:219 +msgid "Site does not exist." +msgstr "Die Website existiert nicht." + +#: wp-includes/ms-site.php:161 wp-includes/ms-site.php:214 +#: wp-includes/ms-site.php:677 wp-includes/ms-site.php:808 +msgid "Site ID must not be empty." +msgstr "Website-ID darf nicht leer sein." + +#: wp-includes/ms-site.php:69 +msgid "Could not insert site into the database." +msgstr "Die Website konnte nicht in die Datenbank eingefügt werden." + +#: wp-includes/ms-functions.php:2099 +msgid "Unable to submit this form, please try again." +msgstr "Das Formular kann nicht abgeschickt werden, bitte versuche es nochmal." + +#: wp-includes/taxonomy.php:165 +msgctxt "post format" +msgid "Formats" +msgstr "Formate" + +#. translators: Used to join items in a list with more than 2 items. +#: wp-includes/formatting.php:5121 +msgid "%1$s, %2$s" +msgstr "%1$s, %2$s" + +#. translators: %s: Default Update PHP page URL. +#: wp-includes/functions.php:7422 +msgid "This resource is provided by your web host, and is specific to your site. For more information, see the official WordPress documentation." +msgstr "Diese Ressource wird von deinem Webhoster bereitgestellt und ist spezifisch für deine Website. Für weitere Informationen siehe die offizielle WordPress-Dokumentation (engl.)." + +#: wp-includes/functions.php:7379 +msgctxt "localized PHP upgrade information page" +msgid "https://wordpress.org/support/update-php/" +msgstr "https://de.wordpress.org/support/update-php/" + +#. translators: %s: Time duration in second or seconds. +#. translators: Time difference between two dates, in seconds. %s: Number of +#. seconds. +#: wp-includes/functions.php:542 wp-includes/formatting.php:3735 +msgid "%s second" +msgid_plural "%s seconds" +msgstr[0] "%s Sekunde" +msgstr[1] "%s Sekunden" + +#. translators: %s: Time duration in minute or minutes. +#: wp-includes/functions.php:536 +msgid "%s minute" +msgid_plural "%s minutes" +msgstr[0] "%s Minute" +msgstr[1] "%s Minuten" + +#. translators: 1: A number of pixels wide, 2: A number of pixels tall. +#: wp-includes/media-template.php:418 wp-includes/media-template.php:617 +msgid "%1$s by %2$s pixels" +msgstr "%1$s auf %2$s Pixel" + +#: wp-includes/class-wp-theme.php:423 +msgid "This theme failed to load properly and was paused within the admin backend." +msgstr "Dieses Theme wurde nicht richtig geladen und wurde im Administrator-Backend angehalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:394 +msgid "Whether to show the taxonomy in the quick/bulk edit panel." +msgstr "Ob die Taxonomie im Schnell-/Stapel-Bearbeitungsfenster angezeigt werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:390 +msgid "Whether to make the taxonomy available for selection in navigation menus." +msgstr "Ob die Taxonomie in den Navigationsmenüs zur Auswahl angeboten werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:386 +msgid "Whether to allow automatic creation of taxonomy columns on associated post-types table." +msgstr "Ob die automatische Erstellung von Taxonomie-Spalten in der zugehörigen Tabelle der Beitrags-Typen erlaubt werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:382 +msgid "Whether to generate a default UI for managing this taxonomy." +msgstr "Ob eine Standard-Benutzeroberfläche für die Verwaltung dieser Taxonomie generiert werden soll." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:378 +msgid "Whether the taxonomy is publicly queryable." +msgstr "Ob die Taxonomie öffentlich abgerufen werden kann." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:374 +msgid "Whether a taxonomy is intended for use publicly either via the admin interface or by front-end users." +msgstr "Ob eine Taxonomie für die öffentliche Verwendung, entweder über die Administrator-Oberfläche oder durch Frontend-Benutzer, bestimmt ist." + +#: wp-login.php:365 wp-login.php:407 wp-includes/user.php:2288 +msgid "Error: There is no account with that username or email address." +msgstr "Fehler: Es existiert kein Konto mit diesem Benutzernamen oder dieser E-Mail-Adresse." + +#: wp-includes/class-wp.php:300 wp-includes/ms-deprecated.php:275 +#: wp-includes/ms-deprecated.php:294 +msgid "A variable mismatch has been detected." +msgstr "Eine Abweichung zwischen Variablen wurde erkannt." + +#: wp-activate.php:30 +msgid "A key value mismatch has been detected. Please follow the link provided in your activation email." +msgstr "Eine Schlüssel-Wertabweichung wurde festgestellt. Bitte folge dem Link in deiner Aktivierungs-E-Mail." + +#: wp-includes/class-wp-editor.php:1394 +msgid "Classic Block Keyboard Shortcuts" +msgstr "Classic-Block-Tastaturkürzel" + +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:166 +msgid "Sorry, you are not allowed to view autosaves of this post." +msgstr "Du bist leider nicht berechtigt, automatische Speicherungen dieses Beitrags anzuzeigen." + +#: wp-includes/js/dist/block-editor.js:23850 +#: wp-includes/js/dist/block-library.js:2457 wp-admin/edit-form-blocks.php:285 +msgid "Start writing or type / to choose a block" +msgstr "Schreib etwas oder tippe „/“ zur Blockauswahl" + +#: wp-includes/media.php:4264 wp-includes/js/dist/block-library.js:5701 +#: wp-includes/js/dist/block-library.js:5702 +msgid "Edit image" +msgstr "Bild bearbeiten" + +#: wp-includes/media-template.php:506 wp-includes/media-template.php:697 +#: wp-includes/js/dist/block-library.js:15020 wp-admin/includes/media.php:3272 +msgid "Copy URL" +msgstr "URL kopieren" + +#: wp-includes/block-patterns/large-header-button.php:10 +#: wp-includes/block-patterns/large-header.php:10 +#: wp-includes/js/dist/block-library.js:12993 +#: wp-includes/js/dist/block-library.js:13049 +#: wp-includes/js/dist/block-library.js:13095 +#: wp-includes/js/dist/block-library.js:13150 +msgid "Write title…" +msgstr "Schreibe einen Titel…" + +#: wp-includes/js/dist/blocks.js:5991 wp-admin/options-media.php:100 +msgid "Embeds" +msgstr "Einbettungen" + +#: wp-includes/js/dist/edit-post.js:5415 wp-includes/js/dist/edit-post.js:6975 +#: wp-admin/includes/meta-boxes.php:1545 wp-admin/menu.php:296 +msgid "Discussion" +msgstr "Diskussion" + +#: wp-includes/js/dist/editor.js:12796 wp-includes/js/dist/editor.js:12801 +#: wp-admin/edit-form-advanced.php:517 wp-admin/edit-form-blocks.php:296 +msgid "Add title" +msgstr "Titel hier eingeben" + +#: wp-includes/js/dist/editor.js:10965 wp-admin/includes/meta-boxes.php:163 +msgid "Visibility:" +msgstr "Sichtbarkeit:" + +#: wp-includes/media-template.php:507 wp-includes/media-template.php:698 +#: wp-includes/js/dist/editor.js:11130 wp-includes/js/dist/edit-post.js:1874 +#: wp-includes/js/dist/block-library.js:15020 +#: wp-admin/includes/class-wp-privacy-policy-content.php:423 +#: wp-admin/includes/media.php:3273 wp-admin/site-health-info.php:102 +msgid "Copied!" +msgstr "Kopiert!" + +#: wp-includes/js/dist/editor.js:9793 wp-admin/includes/meta-boxes.php:364 +#: wp-admin/includes/meta-boxes.php:365 +msgid "Submit for Review" +msgstr "Zur Überprüfung einreichen" + +#: wp-includes/media.php:4262 wp-includes/js/dist/block-library.js:8171 +msgid "Replace image" +msgstr "Bild ersetzen" + +#: wp-includes/js/dist/editor.js:8588 wp-admin/includes/meta-boxes.php:801 +msgid "Allow comments" +msgstr "Kommentare erlauben" + +#: wp-includes/js/dist/editor.js:8204 wp-admin/includes/meta-boxes.php:1008 +#: wp-admin/includes/media.php:1385 wp-admin/includes/media.php:2544 +#: wp-admin/includes/class-wp-posts-list-table.php:1703 +msgid "Order" +msgstr "Reihenfolge" + +#: wp-includes/js/dist/block-editor.js:17671 +#: wp-admin/includes/class-theme-installer-skin.php:248 +#: wp-admin/includes/class-plugin-installer-skin.php:224 +msgid "Current" +msgstr "Aktuell" + +#: wp-includes/js/dist/components.js:40069 +#: wp-admin/includes/edit-tag-messages.php:14 +msgid "Item added." +msgstr "Element hinzugefügt." + +#. translators: accessibility text +#. translators: Accessibility text. +#: wp-login.php:689 wp-includes/widgets/class-wp-widget-custom-html.php:317 +#: wp-includes/media-template.php:167 +#: wp-includes/customize/class-wp-customize-nav-menu-locations-control.php:59 +#: wp-includes/functions.php:7481 +#: wp-includes/class-wp-customize-manager.php:4338 +#: wp-includes/class-wp-customize-manager.php:5660 +#: wp-includes/class-wp-customize-manager.php:5681 +#: wp-includes/js/dist/components.js:37307 wp-includes/js/dist/editor.js:9329 +#: wp-admin/includes/theme.php:829 +#: wp-admin/includes/class-wp-privacy-policy-content.php:360 +#: wp-admin/includes/meta-boxes.php:80 wp-admin/includes/media.php:3199 +#: wp-admin/includes/class-wp-site-health.php:736 +#: wp-admin/includes/class-wp-site-health.php:848 +#: wp-admin/includes/class-wp-site-health.php:1166 +#: wp-admin/includes/class-wp-site-health.php:1403 +#: wp-admin/includes/class-wp-site-health.php:1441 +#: wp-admin/includes/class-wp-site-health.php:1510 +#: wp-admin/includes/dashboard.php:1233 wp-admin/includes/dashboard.php:1245 +#: wp-admin/includes/dashboard.php:1258 wp-admin/includes/dashboard.php:1756 +msgid "(opens in a new tab)" +msgstr "(öffnet in neuem Tab)" + +#: wp-includes/post.php:282 wp-includes/js/dist/editor.js:6085 +msgid "Block updated." +msgstr "Block aktualisiert." + +#: wp-includes/post.php:281 +msgid "Block scheduled." +msgstr "Block geplant." + +#: wp-includes/post.php:280 +msgid "Block reverted to draft." +msgstr "Block auf Entwurf zurückgesetzt." + +#: wp-includes/post.php:279 +msgid "Block published privately." +msgstr "Block privat veröffentlicht." + +#: wp-includes/post.php:278 +msgid "Block published." +msgstr "Block veröffentlicht." + +#: wp-includes/post.php:277 +msgid "Blocks list" +msgstr "Blockliste" + +#: wp-includes/post.php:276 +msgid "Blocks list navigation" +msgstr "Navigation der Blockliste" + +#: wp-includes/post.php:275 +msgid "Filter blocks list" +msgstr "Blockliste filtern" + +#: wp-includes/post.php:273 wp-includes/js/dist/edit-post.js:5047 +msgid "No blocks found." +msgstr "Keine Blöcke gefunden." + +#: wp-includes/post.php:271 +msgid "All Blocks" +msgstr "Alle Blöcke" + +#: wp-includes/post.php:270 +msgid "View Block" +msgstr "Block anzeigen" + +#: wp-includes/post.php:269 +msgid "Edit Block" +msgstr "Block bearbeiten" + +#: wp-includes/post.php:268 +msgid "New Block" +msgstr "Neuer Block" + +#: wp-includes/post.php:267 +msgid "Add New Block" +msgstr "Neuen Block hinzufügen" + +#: wp-includes/post.php:266 +msgctxt "Block" +msgid "Add New" +msgstr "Block hinzufügen" + +#: wp-includes/post.php:265 +msgctxt "add new on admin bar" +msgid "Block" +msgstr "Block" + +#: wp-includes/post.php:264 +msgctxt "admin menu" +msgid "Blocks" +msgstr "Blöcke" + +#: wp-includes/post.php:263 +msgctxt "post type singular name" +msgid "Block" +msgstr "Block" + +#: wp-includes/post.php:262 +msgctxt "post type general name" +msgid "Blocks" +msgstr "Blöcke" + +#. translators: Abbreviated date/time format, see https://www.php.net/date +#: wp-includes/script-loader.php:354 +msgid "M j, Y g:i a" +msgstr "j. M Y G:i" + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:210 +msgid "The rendered block." +msgstr "Der gerenderte Block." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:167 +msgid "Invalid block." +msgstr "Ungültiger Block." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:130 +msgid "Sorry, you are not allowed to read blocks as this user." +msgstr "Du bist mit deiner Benutzerrolle leider nicht berechtigt, Blöcke zu lesen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:120 +msgid "Sorry, you are not allowed to read blocks of this post." +msgstr "Du bist leider nicht berechtigt, Blöcke dieses Beitrags zu lesen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:91 +msgid "ID of the post context." +msgstr "ID des Beitrag-Kontextes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:54 +msgid "Attributes for the block" +msgstr "Attribute für den Block" + +#: wp-includes/rest-api/endpoints/class-wp-rest-block-renderer-controller.php:43 +msgid "Unique registered name for the block." +msgstr "Eindeutiger registrierter Name für den Block." + +#: wp-includes/post.php:272 +msgid "Search Blocks" +msgstr "Blöcke suchen" + +#: wp-includes/theme.php:4021 +msgid "Whether the theme supports responsive embedded content." +msgstr "Ob das Theme responsive eingebettete Inhalte unterstützt." + +#. translators: %s: Duration. +#: wp-includes/script-loader.php:341 +msgid "%s from now" +msgstr "%s ab jetzt" + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:431 +msgid "Limit result set to themes assigned one or more statuses." +msgstr "Ergebnissatz auf Themes begrenzen, die einem oder mehreren Status zugewiesen sind." + +#: wp-includes/theme.php:3984 +msgid "Post formats supported." +msgstr "Beitragsformate unterstützt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:375 +msgid "Features supported by this theme." +msgstr "Von diesem Theme unterstützte Funktionen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:368 +msgid "The visibility settings for the taxonomy." +msgstr "Die Sichtbarkeits-Einstellungen für die Taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:376 +msgid "Invalid type parameter." +msgstr "Ungültiger Typ-Parameter." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:319 +msgid "Limit results to items of one or more object subtypes." +msgstr "Ergebnisse auf ein oder mehrerer Objekt-Subtypen einschränken." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:312 +msgid "Limit results to items of an object type." +msgstr "Ergebnisse auf Elemente eines Objekt-Typs beschränken." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:273 +msgid "Object subtype." +msgstr "Objekt-Untertyp." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:266 +msgid "Object type." +msgstr "Objekt-Typ." + +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:138 +msgid "Internal search handler error." +msgstr "Interner Such-Handler-Fehler." + +#. translators: %s: PHP class name. +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:74 +msgid "REST search handlers must extend the %s class." +msgstr "REST-Suchhandler müssen die Klasse %s erweitern." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2476 +msgid "The current user can post unfiltered HTML markup and JavaScript." +msgstr "Der aktuelle Benutzer kann ungefiltertes HTML-Markup und JavaScript veröffentlichen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2252 +msgid "Version of the content block format used by the object." +msgstr "Version des Inhalt-Block-Formates, das von dem Objekt genutzt wird." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2137 +msgid "Slug automatically generated from the object title." +msgstr "Aus dem Objekttitel automatisch generierte Titelform." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2130 +msgid "Permalink template for the object." +msgstr "Permalink-Template für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:379 +msgid "There is nothing to save. The autosave and the post content are the same." +msgstr "Es gibt nichts zu speichern. Die automatische Speicherung und der aktuelle Beitragsinhalt sind identisch." + +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:324 +msgid "Preview link for the post." +msgstr "Vorschau-Link für diesen Beitrag." + +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:269 +msgid "There is no autosave revision for this post." +msgstr "Es gibt keine automatisch gespeicherte Revision von diesem Beitrag." + +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:119 +msgid "The ID for the object." +msgstr "Die ID des Objekts." + +#: wp-includes/post.php:1725 wp-admin/edit-form-advanced.php:195 +#: wp-admin/edit-form-advanced.php:198 +msgid "Page updated." +msgstr "Seite aktualisiert." + +#: wp-includes/post.php:1725 wp-admin/edit-form-advanced.php:180 +#: wp-admin/edit-form-advanced.php:183 +msgid "Post updated." +msgstr "Beitrag aktualisiert." + +#: wp-includes/post.php:1724 +msgid "Page scheduled." +msgstr "Seite geplant." + +#: wp-includes/post.php:1724 +msgid "Post scheduled." +msgstr "Beitrag geplant." + +#: wp-includes/post.php:1723 +msgid "Page reverted to draft." +msgstr "Seite auf Entwurf zurückgesetzt." + +#: wp-includes/post.php:1723 +msgid "Post reverted to draft." +msgstr "Beitrag auf Entwurf zurückgesetzt." + +#: wp-includes/post.php:1722 +msgid "Page published privately." +msgstr "Seite privat veröffentlicht." + +#: wp-includes/post.php:1722 +msgid "Post published privately." +msgstr "Beitrag privat veröffentlicht." + +#: wp-includes/post.php:1721 wp-admin/edit-form-advanced.php:201 +msgid "Page published." +msgstr "Seite veröffentlicht." + +#: wp-includes/post.php:1721 wp-admin/edit-form-advanced.php:186 +msgid "Post published." +msgstr "Beitrag veröffentlicht." + +#. translators: %s: Block name. +#: wp-includes/class-wp-block-type-registry.php:108 +msgid "Block type \"%s\" is not registered." +msgstr "Blocktyp „%s“ ist nicht registriert." + +#. translators: %s: Block name. +#: wp-includes/class-wp-block-type-registry.php:78 +msgid "Block type \"%s\" is already registered." +msgstr "Blocktyp „%s“ ist bereits registriert." + +#: wp-includes/class-wp-block-type-registry.php:71 +msgid "Block type names must contain a namespace prefix. Example: my-plugin/my-custom-block-type" +msgstr "Blocktyp-Namen müssen ein Namensraum-Präfix enthalten. Beispiel: mein-plugin/mein-individueller-block" + +#: wp-includes/class-wp-block-type-registry.php:64 +msgid "Block type names must not contain uppercase characters." +msgstr "Blocktyp-Namen dürfen keine Großbuchstaben enthalten." + +#: wp-includes/class-wp-block-type-registry.php:58 +msgid "Block type names must be strings." +msgstr "Blocktyp-Namen müssen Zeichenfolgen sein." + +#: wp-includes/blocks/latest-comments.php:147 +msgid "No comments to show." +msgstr "Keine Kommentare vorhanden." + +#. translators: 1: author name (inside or tag, based on if they have +#. a URL), 2: post title related to this comment +#: wp-includes/blocks/latest-comments.php:99 +msgid "%1$s on %2$s" +msgstr "%1$s zu %2$s" + +#: wp-includes/blocks/archives.php:104 +msgid "No archives to show." +msgstr "Keine Archive zum Anzeigen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:306 +msgid "The offset number requested is larger than or equal to the number of available revisions." +msgstr "Die angeforderte Offset-Nummer ist größer oder gleich groß der Anzahl der verfügbaren Revisionen." + +#: wp-includes/user.php:3811 +msgid "Unable to send personal data export confirmation email." +msgstr "Kann Bestätigungs-E-Mail zum Export personenbezogener Daten nicht senden." + +#: wp-includes/user.php:3678 +msgid "Invalid user request." +msgstr "Ungültige Benutzeranfrage." + +#. translators: Privacy data request confirmed notification email subject. 1: +#. Site title, 2: Name of the confirmed action. +#: wp-includes/user.php:3296 +msgid "[%1$s] Action Confirmed: %2$s" +msgstr "[%1$s] Aktion bestätigt: %2$s" + +#. translators: %s: Taxonomy name. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2530 +msgid "The current user can create terms in the %s taxonomy." +msgstr "Der aktuelle Benutzer kann Begriffe in der Taxonomie %s erstellen." + +#. translators: %s: Taxonomy name. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2528 +msgid "The current user can assign terms in the %s taxonomy." +msgstr "Der aktuelle Benutzer kann Begriffe in der Taxonomie %s zuordnen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2509 +msgid "The current user can change the author on this post." +msgstr "Der aktuelle Benutzer kann den Autor dieses Beitrags ändern." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2493 +msgid "The current user can sticky this post." +msgstr "Der aktuelle Benutzer kann diesen Beitrag oben halten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2460 +msgid "The current user can publish this post." +msgstr "Der aktuelle Benutzer kann diesen Beitrag veröffentlichen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1267 +#: wp-admin/includes/ms.php:45 +msgid "You have used your space quota. Please delete files before uploading." +msgstr "Du hast deinen Speicherplatz aufgebraucht. Bitte lösche Dateien vor dem Hochladen." + +#. translators: %s: Required disk space in kilobytes. +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1247 +#: wp-admin/includes/ms.php:36 +msgid "Not enough space to upload. %s KB needed." +msgstr "Nicht genug Speicherplatz zum Hochladen. %s KB benötigt." + +#: wp-includes/user.php:3550 +msgid "The site administrator has been notified. You will receive an email confirmation when they erase your data." +msgstr "Der Website-Administrator wurde benachrichtigt. Wenn die Daten gelöscht werden, erhältst du eine Bestätigung per E-Mail." + +#: wp-includes/user.php:3549 +msgid "Thanks for confirming your erasure request." +msgstr "Danke für das Bestätigen deiner Lösch-Anfrage." + +#: wp-includes/user.php:3547 +msgid "The site administrator has been notified. You will receive a link to download your export via email when they fulfill your request." +msgstr "Der Website-Administrator wurde benachrichtigt. Du erhältst einen Link zum Herunterladen deines Exports per E-Mail, wenn er deine Anfrage beantwortet." + +#: wp-includes/user.php:3546 +msgid "Thanks for confirming your export request." +msgstr "Danke für das Bestätigen deiner Export-Anfrage." + +#. translators: Do not translate SITENAME, SITEURL, PRIVACY_POLICY_URL; those +#. are placeholders. +#: wp-includes/user.php:3445 +msgid "" +"Howdy,\n" +"\n" +"Your request to erase your personal data on ###SITENAME### has been completed.\n" +"\n" +"If you have any follow-up questions or concerns, please contact the site administrator.\n" +"\n" +"For more information, you can also read our privacy policy: ###PRIVACY_POLICY_URL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"die von dir angefragte Löschung deiner personenbezogenen Daten auf ###SITENAME### wurde ausgeführt.\n" +"\n" +"Wenn du weitere Fragen oder Bedenken hast, wende dich bitte an den Administrator der Website.\n" +"\n" +"Für weitere Informationen kannst du auch unsere Datenschutzerklärung lesen: ###PRIVACY_POLICY_URL###\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#. translators: Do not translate SITENAME, SITEURL; those are placeholders. +#: wp-includes/user.php:3432 +msgid "" +"Howdy,\n" +"\n" +"Your request to erase your personal data on ###SITENAME### has been completed.\n" +"\n" +"If you have any follow-up questions or concerns, please contact the site administrator.\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"die von dir angefragte Löschung deiner personenbezogenen Daten auf ###SITENAME### wurde ausgeführt.\n" +"\n" +"Wenn du weitere Fragen oder Bedenken hast, wende dich bitte an den Administrator der Website.\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#. translators: Erasure request fulfilled notification email subject. %s: Site +#. title. +#: wp-includes/user.php:3405 +msgid "[%s] Erasure Request Fulfilled" +msgstr "[%s] Löschauftrag ausgeführt" + +#. translators: Do not translate SITENAME, USER_EMAIL, DESCRIPTION, MANAGE_URL, +#. SITEURL; those are placeholders. +#: wp-includes/user.php:3242 +msgid "" +"Howdy,\n" +"\n" +"A user data privacy request has been confirmed on ###SITENAME###:\n" +"\n" +"User: ###USER_EMAIL###\n" +"Request: ###DESCRIPTION###\n" +"\n" +"You can view and manage these data privacy requests here:\n" +"\n" +"###MANAGE_URL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"auf folgender Website wurde eine Anfrage zum Schutz der Benutzerdaten bestätigt: ###SITENAME###\n" +"\n" +"Benutzer: ###USER_EMAIL###\n" +"Anfrage: ###DESCRIPTION###\n" +"\n" +"Diese Datenschutzanfragen kannst du hier einsehen und verwalten:\n" +"\n" +"###MANAGE_URL###\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#. translators: Confirm privacy data request notification email subject. 1: +#. Site title, 2: Name of the action. +#: wp-includes/user.php:3758 +msgid "[%1$s] Confirm Action: %2$s" +msgstr "[%1$s] Aktion bestätigen: %2$s" + +#: wp-includes/user.php:3644 +#: wp-admin/includes/class-wp-privacy-data-removal-requests-list-table.php:108 +#: wp-admin/erase-personal-data.php:54 wp-admin/menu.php:284 +msgid "Erase Personal Data" +msgstr "Personenbezogene Daten löschen" + +#: wp-includes/comment-template.php:2385 +msgid "Save my name, email, and website in this browser for the next time I comment." +msgstr "Meinen Namen, E-Mail und Website in diesem Browser speichern, bis ich wieder kommentiere." + +#: wp-includes/user.php:2996 +msgid "User Description" +msgstr "Benutzer-Beschreibung" + +#: wp-includes/user.php:2995 +msgid "User Last Name" +msgstr "Benutzer-Nachname" + +#: wp-includes/user.php:2994 +msgid "User First Name" +msgstr "Benutzer-Vorname" + +#: wp-includes/user.php:2993 +msgid "User Nickname" +msgstr "Benutzer-Spitzname" + +#: wp-includes/user.php:2992 +msgid "User Display Name" +msgstr "Benutzer-Anzeige-Name" + +#: wp-includes/user.php:2991 +msgid "User Registration Date" +msgstr "Benutzer-Registrierungsdatum" + +#: wp-includes/user.php:2990 +msgid "User URL" +msgstr "Benutzer-URL" + +#: wp-includes/user.php:2989 +msgid "User Email" +msgstr "Benutzer-E-Mail" + +#: wp-includes/user.php:2988 +msgid "User Nice Name" +msgstr "Benutzer-Ausgeschriebener-Name" + +#: wp-includes/user.php:2987 +msgid "User Login Name" +msgstr "Benutzer-Anmeldename" + +#: wp-includes/user.php:2986 +msgid "User ID" +msgstr "Benutzer-ID" + +#: wp-includes/user.php:2952 +msgid "WordPress User" +msgstr "WordPress-Benutzer" + +#: wp-includes/media.php:4694 +msgid "WordPress Media" +msgstr "WordPress-Medien" + +#: wp-login.php:1206 +msgid "User action confirmed." +msgstr "Benutzeraktion bestätigt." + +#: wp-includes/user.php:3868 +msgid "This link has expired." +msgstr "Dieser Link ist abgelaufen." + +#: wp-includes/user.php:3864 wp-admin/includes/privacy-tools.php:23 +#: wp-admin/includes/privacy-tools.php:52 +msgid "Invalid request." +msgstr "Ungültige Anfrage." + +#. translators: %s: Action name. +#: wp-includes/user.php:3648 +msgid "Confirm the \"%s\" action" +msgstr "Aktion „%s“ bestätigen" + +#: wp-includes/user.php:3641 wp-admin/export-personal-data.php:54 +#: wp-admin/menu.php:283 +msgid "Export Personal Data" +msgstr "Personenbezogene Daten exportieren" + +#: wp-includes/user.php:3589 +msgid "Invalid action name." +msgstr "Ungültiger Aktions-Name." + +#: wp-includes/user.php:3542 +msgid "The site administrator has been notified and will fulfill your request as soon as possible." +msgstr "Der Website-Administrator wurde benachrichtigt und wird deiner Anfrage so schnell wie möglich nachkommen." + +#: wp-includes/post.php:245 +msgid "User Request" +msgstr "Benutzer-Anfrage" + +#: wp-includes/post.php:244 +msgid "User Requests" +msgstr "Benutzer-Anfragen" + +#. translators: Deleted long text. +#: wp-includes/functions.php:7206 +msgid "This content was deleted by the author." +msgstr "Dieser Inhalt wurde vom Autor gelöscht." + +#. translators: Deleted text. +#: wp-includes/functions.php:7202 +msgid "[deleted]" +msgstr "[gelöscht]" + +#. translators: %d: Comment ID. +#: wp-includes/comment.php:3747 +msgid "Comment %d contains personal data but could not be anonymized." +msgstr "Kommentar %d beinhaltet personenbezogene Daten, konnte aber nicht anonymisiert werden." + +#: wp-includes/user.php:3541 +msgid "Action has been confirmed." +msgstr "Aktion wurde bestätigt." + +#: wp-includes/user.php:3906 +msgid "The confirmation email has expired." +msgstr "Die Bestätigungs-E-Mail ist abgelaufen." + +#: wp-includes/user.php:3888 wp-admin/includes/privacy-tools.php:107 +#: wp-admin/includes/privacy-tools.php:119 +msgid "Invalid action." +msgstr "Ungültige Aktion" + +#. translators: Do not translate DESCRIPTION, CONFIRM_URL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-includes/user.php:3707 +msgid "" +"Howdy,\n" +"\n" +"A request has been made to perform the following action on your account:\n" +"\n" +" ###DESCRIPTION###\n" +"\n" +"To confirm this, please click on the following link:\n" +"###CONFIRM_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"die folgende Anfrage wurde zur Ausführung auf deinem Konto eingereicht:\n" +"\n" +" ###DESCRIPTION###\n" +"\n" +"Um diese Aktion zu bestätigen, klicke bitte auf den folgenden Link:\n" +"###CONFIRM_URL###\n" +"\n" +"Falls du diese Aktion nicht ausführen willst, kannst du diese E-Mail ignorieren und löschen.\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-includes/post.php:467 wp-includes/post.php:990 +msgctxt "request status" +msgid "Completed" +msgstr "Abgeschlossen" + +#: wp-includes/post.php:452 wp-includes/post.php:989 +msgctxt "request status" +msgid "Failed" +msgstr "Fehlgeschlagen" + +#: wp-includes/post.php:437 wp-includes/post.php:988 +msgctxt "request status" +msgid "Confirmed" +msgstr "Bestätigt" + +#: wp-includes/post.php:422 wp-includes/post.php:987 +msgctxt "request status" +msgid "Pending" +msgstr "Ausstehend" + +#: wp-includes/comment.php:3602 +msgid "Comment URL" +msgstr "Kommentar-URL" + +#: wp-includes/comment.php:3601 +msgid "Comment Content" +msgstr "Kommentar-Inhalt" + +#: wp-includes/comment.php:3600 +msgid "Comment Date" +msgstr "Kommentar-Datum" + +#: wp-includes/comment.php:3599 +msgid "Comment Author User Agent" +msgstr "Kommentar-Autor-User-Agent" + +#: wp-includes/comment.php:3598 +msgid "Comment Author IP" +msgstr "Kommentar-Autor-IP" + +#: wp-includes/comment.php:3597 +msgid "Comment Author URL" +msgstr "Kommentar-Autor-URL" + +#: wp-includes/comment.php:3596 +msgid "Comment Author Email" +msgstr "Kommentar-Autor-E-Mail" + +#: wp-includes/comment.php:3595 wp-admin/edit-form-comment.php:45 +msgid "Comment Author" +msgstr "Kommentar-Autor" + +#: wp-includes/comment.php:3560 wp-includes/comment.php:3670 +msgid "WordPress Comments" +msgstr "WordPress-Kommentare" + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1550 +msgid "Limit result set to users who are considered authors." +msgstr "Ergebnissatz auf Benutzer begrenzen, die als Autoren gelten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:229 +msgid "Sorry, you are not allowed to query users by this parameter." +msgstr "Du bist leider nicht berechtigt, eine Benutzer-Abfrage mit diesen Parametern durchzuführen." + +#: wp-includes/media.php:4219 +#: wp-admin/includes/class-wp-media-list-table.php:153 +msgctxt "media items" +msgid "Mine" +msgstr "Eigene" + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:293 +msgid "Whether or not the post type can be viewed." +msgstr "Ob der Inhaltstyp angezeigt werden kann, oder nicht." + +#: wp-includes/functions.php:3258 +msgid "The link you followed has expired." +msgstr "Der Link, dem du gefolgt bist, ist abgelaufen." + +#: wp-includes/script-loader.php:1111 +#: wp-includes/class-wp-customize-manager.php:514 wp-admin/edit-tags.php:28 +#: wp-admin/edit-tags.php:85 wp-admin/edit-tags.php:116 +#: wp-admin/edit-tags.php:136 wp-admin/edit-tags.php:172 +#: wp-admin/includes/bookmark.php:31 wp-admin/press-this.php:21 +#: wp-admin/nav-menus.php:25 wp-admin/customize.php:17 +#: wp-admin/customize.php:34 wp-admin/user-new.php:15 wp-admin/user-new.php:22 +#: wp-admin/user-new.php:55 wp-admin/user-new.php:156 wp-admin/themes.php:14 +#: wp-admin/themes.php:42 wp-admin/themes.php:62 wp-admin/edit-comments.php:13 +#: wp-admin/term.php:42 wp-admin/options.php:49 wp-admin/options.php:77 +#: wp-admin/widgets.php:17 wp-admin/users.php:15 wp-admin/post-new.php:60 +#: wp-admin/edit.php:41 wp-admin/media-upload.php:46 +msgid "You need a higher level of permission." +msgstr "Du benötigst eine höhere Berechtigungsstufe." + +#: wp-includes/script-loader.php:667 wp-includes/script-loader.php:1110 +#: wp-includes/class-wp-xmlrpc-server.php:3934 wp-includes/functions.php:3269 +#: wp-includes/class-wp-customize-manager.php:449 +#: wp-admin/includes/class-custom-image-header.php:775 +#: wp-admin/includes/class-custom-image-header.php:939 +#: wp-admin/includes/class-custom-image-header.php:947 +#: wp-admin/includes/file.php:618 wp-admin/customize.php:79 +#: wp-admin/themes.php:27 wp-admin/themes.php:70 wp-admin/users.php:145 +#: wp-admin/media-upload.php:38 wp-admin/js/tags.js:62 +#: wp-admin/js/updates.js:1859 wp-admin/network/site-users.php:163 +msgid "Something went wrong." +msgstr "Etwas ging schief." + +#. translators: %s: User who is customizing the changeset in customizer. +#: wp-includes/class-wp-customize-manager.php:4105 +msgid "%s is already customizing this changeset. Do you want to take over?" +msgstr "%s arbeitet bereits an der Anpassung dieses Änderungs-Sets. Willst du übernehmen?" + +#. translators: %s: User who is customizing the changeset in customizer. +#: wp-includes/class-wp-customize-manager.php:4103 +msgid "%s is already customizing this changeset. Please wait until they are done to try customizing. Your latest changes have been autosaved." +msgstr "%s arbeitet bereits an der Anpassung dieses Änderungs-Sets. Bitte warte, bis das Anpassen abgeschlossen ist. Deine letzten Änderungen wurden automatisch gespeichert." + +#: wp-includes/class-wp-customize-manager.php:4311 +#: wp-admin/includes/file.php:335 +msgid "Update anyway, even though it might break your site?" +msgstr "Aktualisieren, auch wenn die korrekte Funktion deiner Website beeinträchtigt werden könnte?" + +#: wp-includes/wp-db.php:1374 +msgid "The query only expected one placeholder, but an array of multiple placeholders was sent." +msgstr "Die Abfrage erwartete nur einen Platzhalter, aber es wurde ein Array mit mehreren Platzhaltern gesendet." + +#: wp-includes/script-loader.php:1100 +msgctxt "customizer changeset status" +msgid "Scheduled" +msgstr "Geplant" + +#: wp-includes/customize/class-wp-customize-theme-control.php:243 +#: wp-includes/customize/class-wp-customize-theme-control.php:255 +#: wp-admin/includes/class-wp-theme-install-list-table.php:317 +#: wp-admin/includes/class-wp-theme-install-list-table.php:475 +#: wp-admin/theme-install.php:276 +msgctxt "theme" +msgid "Installed" +msgstr "Installiert" + +#. translators: %s: Property of an object. +#: wp-includes/rest-api.php:1654 +msgid "%1$s is not a valid property of Object." +msgstr "%1$s ist keine gültige Eigenschaft des Objekts." + +#. translators: %s: URL to Add Themes admin screen. +#: wp-includes/script-loader.php:1149 +msgid "You won’t be able to install new themes from here yet since your install requires SFTP credentials. For now, please add themes in the admin." +msgstr "Du kannst hier leider noch keine neuen Themes installieren, da deine Installation SFTP-Zugangsdaten benötigt. Füge bitte vorerst Themes im Administrationsbereich hinzu." + +#. translators: Tab heading when selecting from the most used terms. +#: wp-includes/taxonomy.php:606 wp-admin/includes/meta-boxes.php:1119 +msgctxt "categories" +msgid "Most Used" +msgstr "Häufig genutzt" + +#. translators: Tab heading when selecting from the most used terms. +#: wp-includes/taxonomy.php:606 +msgctxt "tags" +msgid "Most Used" +msgstr "Meistgenutzt" + +#: wp-includes/class-wp-customize-nav-menus.php:1109 +msgid "Click “Next” to start adding links to your new menu." +msgstr "„Weiter“ klicken, um deinem neuen Menü Links hinzuzufügen." + +#. translators: %s: A list of valid video file extensions. +#: wp-includes/widgets/class-wp-widget-media-video.php:51 +msgid "Sorry, we can’t load the video at the supplied URL. Please check that the URL is for a supported video file (%s) or stream (e.g. YouTube and Vimeo)." +msgstr "Leider kann das Video mit der angegebenen URL nicht geladen werden. Bitte prüfe, ob die URL auf eine unterstützte Videodatei (%s) oder einen Stream (z. B. YouTube oder Vimeo) verweist." + +#: wp-includes/script-loader.php:1099 +#: wp-includes/class-wp-customize-manager.php:4822 +msgctxt "customizer changeset action/button label" +msgid "Schedule" +msgstr "Planen" + +#: wp-includes/customize/class-wp-customize-nav-menu-location-control.php:85 +msgid "+ Create New Menu" +msgstr "+ Neues Menü erstellen" + +#: wp-includes/customize/class-wp-customize-nav-menu-location-control.php:85 +msgid "Create a menu for this location" +msgstr "Ein neues Menü für diese Position erstellen" + +#. translators: 1: fopen(), 2: File name. +#: wp-includes/class-wp-http-streams.php:257 +#: wp-includes/class-wp-http-curl.php:193 +msgid "Could not open handle for %1$s to %2$s." +msgstr "Identifikator für %1$s auf %2$s konnte nicht geöffnet werden." + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:26 +msgid "Add a navigation menu to your sidebar." +msgstr "Der Seitenleiste ein Navigationsmenü hinzufügen." + +#. translators: %s: Display name of the user who has taken over the changeset +#. in customizer. +#: wp-includes/script-loader.php:1124 +msgid "%s has taken over and is currently customizing." +msgstr "%s hat übernommen und passt gerade die Website an." + +#: wp-includes/script-loader.php:1118 +msgid "Looks like something’s gone wrong. Wait a couple seconds, and then try again." +msgstr "Etwas scheint schiefgelaufen zu sein. Warte einige Sekunden und versuche es dann erneut." + +#: wp-includes/class-wp-customize-manager.php:4297 +#: wp-admin/includes/post.php:1773 +msgid "Take over" +msgstr "Übernehmen" + +#: wp-includes/class-wp-customize-manager.php:4293 +#: wp-admin/includes/post.php:1690 wp-admin/comment.php:78 +#: wp-admin/comment.php:276 wp-admin/theme-editor.php:376 +#: wp-admin/plugin-editor.php:330 +msgid "Go back" +msgstr "Zurück gehen" + +#. translators: %s: User who is customizing the changeset in customizer. +#: wp-includes/class-wp-customize-manager.php:4110 +msgid "%s is already customizing this site. Please wait until they are done to try customizing. Your latest changes have been autosaved." +msgstr "%s arbeitet bereits an der Anpassung dieser Website. Bitte warte, bis das Anpassen abgeschlossen ist. Deine letzten Änderungen wurden automatisch gespeichert." + +#. translators: %s: User who is customizing the changeset in customizer. +#: wp-includes/class-wp-customize-manager.php:4112 +msgid "%s is already customizing this site. Do you want to take over?" +msgstr "%s arbeitet bereits an der Anpassung dieser Website. Willst du übernehmen?" + +#: wp-includes/class-wp-customize-manager.php:3387 +msgid "Sorry, you are not allowed to take over." +msgstr "Du bist leider nicht berechtigt, zu übernehmen." + +#: wp-includes/class-wp-customize-manager.php:3378 +msgid "No changeset found to take over" +msgstr "Kein Änderungs-Set zum Übernehmen gefunden" + +#: wp-includes/class-wp-customize-manager.php:3367 +msgid "Security check failed." +msgstr "Sicherheitsüberprüfung fehlgeschlagen." + +#: wp-includes/class-wp-customize-manager.php:2531 +#: wp-includes/class-wp-customize-manager.php:3165 +msgid "Changeset is being edited by other user." +msgstr "Änderungs-Set wird von einem anderen Benutzer bearbeitet." + +#: wp-includes/customize/class-wp-customize-nav-menu-locations-control.php:66 +msgctxt "menu locations" +msgid "Here’s where this menu appears. If you’d like to change that, pick another location." +msgstr "Hier siehst du, wo dieses Menü erscheint. Falls du das ändern möchtest, wähle eine andere Position." + +#. translators: 1: Documentation URL, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-includes/customize/class-wp-customize-nav-menu-locations-control.php:53 +msgctxt "menu locations" +msgid "(If you plan to use a menu widget%3$s, skip this step.)" +msgstr "(Falls du vorhast, ein Menü-Widget%3$s einzusetzen, überspringe diesen Schritt.)" + +#: wp-includes/customize/class-wp-customize-nav-menu-locations-control.php:48 +msgctxt "menu locations" +msgid "Where do you want this menu to appear?" +msgstr "Wo soll dieses Menü positioniert werden?" + +#: wp-includes/class-wp-customize-nav-menus.php:1123 +msgid "You’ll create a menu, assign it a location, and add menu items like links to pages and categories. If your theme has multiple menu areas, you might need to create more than one." +msgstr "Du erstellst ein Menü, weist es einer Position zu und fügst Menüeinträge wie Links zu Seiten, Beiträgen und Kategorien hinzu. Falls dein Theme über mehrere Menü-Positionen verfügt, musst du möglicherweise mehrere Menüs erstellen." + +#: wp-includes/class-wp-customize-nav-menus.php:1120 +msgid "It doesn’t look like your site has any menus yet. Want to build one? Click the button to start." +msgstr "Es sieht so aus, als ob deine Website noch keine Menüs enthält. Willst du eines erstellen? Klicke dafür auf den Button." + +#: wp-includes/class-wp-customize-nav-menus.php:697 +msgctxt "menu locations" +msgid "View All Locations" +msgstr "Alle Positionen anzeigen" + +#: wp-includes/class-wp-customize-manager.php:5027 +msgid "While previewing a new theme, you can continue to tailor things like widgets and menus, and explore theme-specific options." +msgstr "Während der Vorschau eines neuen Themes kannst du weiterhin Widgets und Menüs anpassen und Theme-spezifische Optionen erkunden." + +#: wp-includes/class-wp-customize-manager.php:5026 +msgid "Looking for a theme? You can search or browse the WordPress.org theme directory, install and preview themes, then activate them right here." +msgstr "Suchst du ein Theme? Du kannst im Theme-Verzeichnis auf WordPress.org stöbern und suchen, Themes installieren und als Vorschau ansehen, um sie direkt hier zu aktivieren." + +#: wp-includes/class-wp-customize-nav-menus.php:697 +msgctxt "menu locations" +msgid "View Location" +msgstr "Position anzeigen" + +#: wp-includes/customize/class-wp-customize-themes-section.php:97 +#: wp-admin/themes.php:235 wp-admin/themes.php:565 +#: wp-admin/theme-install.php:68 wp-admin/theme-install.php:245 +msgid "No themes found. Try a different search." +msgstr "Keine Themes gefunden. Probiere eine andere Suche." + +#: wp-includes/class-wp-customize-nav-menus.php:683 +msgid "Your theme can display menus in one location. Select which menu you would like to use." +msgstr "Dein Theme kann Menüs nur an einer Position anzeigen. Wähle, welches Menü du verwenden möchtest." + +#. translators: %s: Site name. +#: wp-login.php:432 +msgid "Site Name: %s" +msgstr "Name der Website: %s" + +#. translators: Login screen title. 1: Login screen name, 2: Network or site +#. name. +#. translators: Admin screen title. 1: Admin screen name, 2: Network or site +#. name. +#: wp-login.php:71 wp-admin/admin-header.php:52 +msgid "%1$s ‹ %2$s — WordPress" +msgstr "%1$s ‹ %2$s — WordPress" + +#. translators: 1: Number of placeholders, 2: Number of arguments passed. +#: wp-includes/wp-db.php:1389 +msgid "The query does not contain the correct number of placeholders (%1$d) for the number of arguments passed (%2$d)." +msgstr "Die Abfrage enthält nicht die korrekte Anzahl von Platzhaltern (%1$d) für die Anzahl der übergebenen Argumente (%2$d)." + +#. translators: %s: Value type. +#: wp-includes/wp-db.php:1331 +msgid "Unsupported value type (%s)." +msgstr "Nicht unterstützter ValueType (%s)." + +#. translators: %s: register_widget() +#: wp-includes/widgets.php:1147 +msgid "Widgets need to be registered using %s, before they can be displayed." +msgstr "Widgets müssen unter Verwendung von %s registriert werden, bevor sie angezeigt werden können." + +#: wp-includes/widgets/class-wp-widget-media-image.php:342 +msgid "Link to:" +msgstr "Link auf: " + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:38 +msgid "No images selected" +msgstr "Keine Bilder ausgewählt" + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:30 +msgid "Displays an image gallery." +msgstr "Zeigt eine Bildergalerie an." + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:28 +#: wp-includes/js/dist/editor.js:8963 wp-includes/js/dist/block-library.js:8743 +#: wp-includes/js/dist/block-library.js:9164 wp-admin/includes/media.php:20 +msgid "Gallery" +msgstr "Galerie" + +#: wp-includes/widgets/class-wp-widget-custom-html.php:333 +msgid "Custom HTML Widget" +msgstr "Individuelles HTML-Widget" + +#: wp-includes/widgets/class-wp-widget-custom-html.php:304 +msgid "Use the Custom HTML widget to add arbitrary HTML code to your widget areas." +msgstr "Verwende das HTML-Widget, um in den Widget-Bereichen beliebigen HTML-Code einzufügen." + +#. translators: %s: New email address. +#: wp-includes/user.php:2922 +msgid "Your email address has not been updated yet. Please check your inbox at %s for a confirmation email." +msgstr "Deine E-Mail-Adresse wurde noch nicht aktualisiert. Bitte prüfe deinen Posteingang für %s auf eine Bestätigungs-E-Mail." + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-includes/user.php:2852 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently requested to have the email address on your account changed.\n" +"\n" +"If this is correct, please click on the following link to change it:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo ###USERNAME###,\n" +" \n" +"du hast vor kurzem angefordert, die E-Mail-Adresse zu deinem Konto zu ändern.\n" +"Wenn das stimmt, klicke bitte zur Änderung auf den folgenden Link:\n" +"###ADMIN_URL###\n" +" \n" +"Du kannst diese E-Mail ruhig ignorieren und löschen, wenn du das nicht tun möchtest.\n" +"\n" +"Diese E-Mail wurde an ###EMAIL### versandt.\n" +" \n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-includes/user.php:2832 +msgid "Error: The email address is already used." +msgstr "Fehler: Diese E-Mail-Adresse wird bereits verwendet." + +#: wp-includes/taxonomy.php:607 +msgid "← Back to Categories" +msgstr "← Zurück zu den Kategorien" + +#: wp-includes/taxonomy.php:142 +msgid "← Back to Link Categories" +msgstr "← Zurück zu den Link-Kategorien" + +#: wp-includes/script-loader.php:1146 +msgid "Sorry, you can’t preview new themes when you have changes scheduled or saved as a draft. Please publish your changes, or wait until they publish to preview new themes." +msgstr "Du kannst leider keine Vorschau des Themes sehen, wenn du Änderungen geplant oder als Entwurf gespeichert hast. Bitte veröffentliche deine Änderungen oder warte bis sie veröffentlicht werden, um eine Vorschau neuer Themes zu sehen." + +#: wp-includes/script-loader.php:1145 +msgid "Schedule your customization changes to publish (\"go live\") at a future date." +msgstr "Plane deine Änderungen im Customizer so, dass sie zu einem späteren Zeitpunkt veröffentlicht werden (das „Live-schalten“)." + +#: wp-includes/script-loader.php:1137 +msgid "Homepage and posts page must be different." +msgstr "Startseite und Beitragsseite müssen unterschiedlich sein." + +#. translators: %d: Error count. +#: wp-includes/script-loader.php:1132 wp-includes/script-loader.php:1134 +#: wp-includes/widgets/class-wp-widget-custom-html.php:228 +#: wp-includes/widgets/class-wp-widget-custom-html.php:230 +msgid "There is %d error which must be fixed before you can save." +msgid_plural "There are %d errors which must be fixed before you can save." +msgstr[0] "Es gibt %d Fehler, der korrigiert werden muss, bevor du speichern kannst." +msgstr[1] "Es gibt %d Fehler, die korrigiert werden müssen, bevor du speichern kannst." + +#. translators: %s: URL to the Customizer to load the autosaved version. +#: wp-includes/script-loader.php:1126 +msgid "There is a more recent autosave of your changes than the one you are previewing. Restore the autosave" +msgstr "Es gibt eine aktuellere, automatische Speicherung deiner Änderungen als die, deren Vorschau du ansiehst. Automatische Speicherung wiederherstellen" + +#: wp-includes/script-loader.php:1122 +msgid "Are you sure you want to discard your unpublished changes?" +msgstr "Bist du sicher, dass du deine unveröffentlichten Änderungen verwerfen möchtest?" + +#: wp-includes/script-loader.php:1121 +msgid "Reverting unpublished changes…" +msgstr "Zurücksetzen unveröffentlichter Änderungen …" + +#: wp-includes/script-loader.php:1120 +msgid "Setting up your live preview. This may take a bit." +msgstr "Einrichten der Live-Vorschau. Es kann einen Moment dauern." + +#: wp-includes/script-loader.php:1119 +msgid "Downloading your new theme…" +msgstr "Herunterladen des neuen Themes …" + +#: wp-includes/script-loader.php:1109 +msgid "Discard changes" +msgstr "Änderungen verwerfen" + +#: wp-includes/script-loader.php:1102 +msgid "Please save your changes in order to share the preview." +msgstr "Bitte speichere deine Änderungen, um die Vorschau zu teilen." + +#: wp-includes/script-loader.php:1098 +msgid "Updating" +msgstr "Aktualisierung" + +#: wp-includes/script-loader.php:1097 +msgid "Draft Saved" +msgstr "Entwurf gespeichert" + +#: wp-includes/script-loader.php:1092 wp-admin/customize.php:189 +msgid "Activate & Publish" +msgstr "Aktivieren und Veröffentlichen" + +#: wp-includes/script-loader.php:980 +msgid "Yiddish" +msgstr "Jiddisch" + +#: wp-includes/script-loader.php:979 +msgid "Welsh" +msgstr "Walisisch" + +#: wp-includes/script-loader.php:978 +msgid "Vietnamese" +msgstr "Vietnamesisch" + +#: wp-includes/script-loader.php:977 +msgid "Ukrainian" +msgstr "Ukrainisch" + +#: wp-includes/script-loader.php:976 +msgid "Turkish" +msgstr "Türkisch" + +#: wp-includes/script-loader.php:975 +msgid "Thai" +msgstr "Thailändisch" + +#: wp-includes/script-loader.php:974 +msgid "Tagalog" +msgstr "Tagalog" + +#: wp-includes/script-loader.php:973 +msgid "Swedish" +msgstr "Schwedisch" + +#: wp-includes/script-loader.php:972 +msgid "Swahili" +msgstr "Suaheli" + +#: wp-includes/script-loader.php:971 +msgid "Spanish" +msgstr "Spanisch" + +#: wp-includes/script-loader.php:970 +msgid "Slovenian" +msgstr "Slowenisch" + +#: wp-includes/script-loader.php:969 +msgid "Slovak" +msgstr "Slowakisch" + +#: wp-includes/script-loader.php:968 +msgid "Serbian" +msgstr "Serbisch" + +#: wp-includes/script-loader.php:967 +msgid "Russian" +msgstr "Russisch" + +#: wp-includes/script-loader.php:966 +msgid "Romanian" +msgstr "Rumänisch" + +#: wp-includes/script-loader.php:965 +msgid "Portuguese" +msgstr "Portugiesisch" + +#: wp-includes/script-loader.php:964 +msgid "Polish" +msgstr "Polnisch" + +#: wp-includes/script-loader.php:963 +msgid "Persian" +msgstr "Persisch" + +#: wp-includes/script-loader.php:962 +msgid "Norwegian" +msgstr "Norwegisch" + +#: wp-includes/script-loader.php:961 +msgid "Maltese" +msgstr "Maltesisch" + +#: wp-includes/script-loader.php:960 +msgid "Malay" +msgstr "Malaiisch" + +#: wp-includes/script-loader.php:959 +msgid "Macedonian" +msgstr "Mazedonisch" + +#: wp-includes/script-loader.php:958 +msgid "Lithuanian" +msgstr "Litauisch" + +#: wp-includes/script-loader.php:957 +msgid "Latvian" +msgstr "Lettisch" + +#: wp-includes/script-loader.php:956 +msgid "Korean" +msgstr "Koreanisch" + +#: wp-includes/script-loader.php:955 +msgid "Japanese" +msgstr "Japanisch" + +#: wp-includes/script-loader.php:954 +msgid "Italian" +msgstr "Italienisch" + +#: wp-includes/script-loader.php:953 +msgid "Irish" +msgstr "Irisch" + +#: wp-includes/script-loader.php:952 +msgid "Indonesian" +msgstr "Indonesisch" + +#: wp-includes/script-loader.php:951 +msgid "Icelandic" +msgstr "Isländisch" + +#: wp-includes/script-loader.php:950 +msgid "Hungarian" +msgstr "Ungarisch" + +#: wp-includes/script-loader.php:949 +msgid "Hindi" +msgstr "Hindi" + +#: wp-includes/script-loader.php:948 +msgid "Hebrew" +msgstr "Hebräisch" + +#: wp-includes/script-loader.php:947 +msgid "Haitian Creole" +msgstr "Haitianisches Kreolisch" + +#: wp-includes/script-loader.php:946 +msgid "Greek" +msgstr "Griechisch" + +#: wp-includes/script-loader.php:945 +msgid "German" +msgstr "Deutsch" + +#: wp-includes/script-loader.php:944 +msgid "Galician" +msgstr "Galicisch" + +#: wp-includes/script-loader.php:943 +msgid "French" +msgstr "Französisch" + +#: wp-includes/script-loader.php:941 +msgid "Filipino" +msgstr "Filipino" + +#: wp-includes/script-loader.php:940 +msgid "Estonian" +msgstr "Estnisch" + +#: wp-includes/script-loader.php:939 wp-admin/includes/ms.php:664 +msgid "English" +msgstr "Englisch" + +#: wp-includes/script-loader.php:938 +msgid "Dutch" +msgstr "Niederländisch" + +#: wp-includes/script-loader.php:937 +msgid "Danish" +msgstr "Dänisch" + +#: wp-includes/script-loader.php:936 +msgid "Czech" +msgstr "Tschechisch" + +#: wp-includes/script-loader.php:935 +msgid "Croatian" +msgstr "Kroatisch" + +#: wp-includes/script-loader.php:934 +msgid "Chinese (Traditional)" +msgstr "Chinesisch (Traditionell)" + +#: wp-includes/script-loader.php:933 +msgid "Chinese (Simplified)" +msgstr "Chinesisch (Vereinfacht)" + +#: wp-includes/script-loader.php:932 +msgid "Chinese" +msgstr "Chinesisch" + +#: wp-includes/script-loader.php:931 +msgid "Catalan" +msgstr "Katalanisch" + +#: wp-includes/script-loader.php:930 +msgid "Bulgarian" +msgstr "Bulgarisch" + +#: wp-includes/script-loader.php:929 +msgid "Belarusian" +msgstr "Weißrussisch" + +#: wp-includes/script-loader.php:928 +msgid "Arabic" +msgstr "Arabisch" + +#: wp-includes/script-loader.php:927 +msgid "Albanian" +msgstr "Albanisch" + +#: wp-includes/script-loader.php:926 +msgid "Afrikaans" +msgstr "Afrikaans" + +#: wp-includes/script-loader.php:916 +msgid "Live Broadcast" +msgstr "Live-Übertragung" + +#: wp-includes/script-loader.php:924 +msgid "Chapters" +msgstr "Kapitel" + +#: wp-includes/script-loader.php:910 +msgid "You are using a browser that does not have Flash player enabled or installed. Please turn on your Flash player plugin or download the latest version from https://get.adobe.com/flashplayer/" +msgstr "Du verwendest einen Browser, der nicht den Flash-Player aktiviert oder installiert hat. Bitte aktiviere dein Flash-Player-Plugin oder lade die neueste Version von https://get.adobe.com/flashplayer/ herunter." + +#. translators: %s: register_routes() +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:52 +msgid "Method '%s' must be overridden." +msgstr "Die Methode '%s' muss überschrieben werden." + +#: wp-includes/post.php:227 +msgid "oEmbed Response" +msgstr "oEmbed-Antwort" + +#: wp-includes/post.php:226 +msgid "oEmbed Responses" +msgstr "oEmbed-Antworten" + +#. translators: %s: Post custom field name. +#: wp-includes/post-template.php:1107 +msgctxt "Post custom field name" +msgid "%s:" +msgstr "%s:" + +#. translators: 1: Comment author's name, 2: Comment author's IP address, 3: +#. Comment author's hostname. +#: wp-includes/pluggable.php:1622 wp-includes/pluggable.php:1806 +msgid "Author: %1$s (IP address: %2$s, %3$s)" +msgstr "Autor: %1$s (IP-Adresse: %2$s, %3$s)" + +#. translators: 1: Trackback/pingback website name, 2: Website IP address, 3: +#. Website hostname. +#: wp-includes/pluggable.php:1594 wp-includes/pluggable.php:1608 +#: wp-includes/pluggable.php:1784 wp-includes/pluggable.php:1795 +msgid "Website: %1$s (IP address: %2$s, %3$s)" +msgstr "Website: %1$s (IP-Adresse: %2$s, %3$s)" + +#. translators: Do not translate OLD_EMAIL, NEW_EMAIL, SITENAME, SITEURL: those +#. are placeholders. +#: wp-includes/ms-functions.php:2808 +msgid "" +"Hi,\n" +"\n" +"This notice confirms that the network admin email address was changed on ###SITENAME###.\n" +"\n" +"The new network admin email address is ###NEW_EMAIL###.\n" +"\n" +"This email has been sent to ###OLD_EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +" \n" +"diese Mitteilung bestätigt, dass die E-Mail-Adresse des Netzwerkadministrators auf ###SITENAME### geändert wurde.\n" +" \n" +"Die neue E-Mail-Adresse des Netzwerkadministrators lautet ###NEW_EMAIL###.\n" +" \n" +"Diese E-Mail wurde an ###OLD_EMAIL### versandt.\n" +" \n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#. translators: Do not translate USERNAME, ADMIN_URL, EMAIL, SITENAME, SITEURL: +#. those are placeholders. +#: wp-includes/ms-functions.php:2710 +msgid "" +"Howdy ###USERNAME###,\n" +"\n" +"You recently requested to have the network admin email address on\n" +"your network changed.\n" +"\n" +"If this is correct, please click on the following link to change it:\n" +"###ADMIN_URL###\n" +"\n" +"You can safely ignore and delete this email if you do not want to\n" +"take this action.\n" +"\n" +"This email has been sent to ###EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo ###USERNAME###,\n" +" \n" +"du hast vor kurzem angefordert, dass die E-Mail-Adresse des Netzwerkadministrators in deinem Netzwerk geändert werden soll. \n" +" \n" +"Wenn das richtig ist, klicke zur Änderung bitte auf den folgenden Link:\n" +"###ADMIN_URL###\n" +" \n" +"Du kannst diese E-Mail ruhig ignorieren und löschen, wenn du das nicht tun möchtest.\n" +" \n" +"Diese E-Mail wurde an ###EMAIL### versandt.\n" +" \n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-includes/ms-functions.php:197 +msgid "User cannot be added to this site." +msgstr "Benutzer kann nicht zu dieser Website hinzugefügt werden." + +#: wp-includes/load.php:1499 +msgid "Scrape nonce check failed. Please try again." +msgstr "Scrape-Nonce-Prüfung fehlgeschlagen. Bitte versuche es nochmal." + +#. translators: Do not translate OLD_EMAIL, NEW_EMAIL, SITENAME, SITEURL: those +#. are placeholders. +#: wp-includes/functions.php:7042 +msgid "" +"Hi,\n" +"\n" +"This notice confirms that the admin email address was changed on ###SITENAME###.\n" +"\n" +"The new admin email address is ###NEW_EMAIL###.\n" +"\n" +"This email has been sent to ###OLD_EMAIL###\n" +"\n" +"Regards,\n" +"All at ###SITENAME###\n" +"###SITEURL###" +msgstr "" +"Hallo,\n" +"\n" +"diese Mitteilung bestätigt die Änderung der E-Mail-Adresse des Administrators auf ###SITENAME###.\n" +"\n" +"Die neue E-Mail-Adresse des Administrators lautet ###NEW_EMAIL###.\n" +"\n" +"Diese E-Mail wurde an ###OLD_EMAIL### versandt.\n" +"\n" +"Viele Grüße,\n" +"von allen auf ###SITENAME###\n" +"###SITEURL###" + +#: wp-includes/functions.php:6961 +msgid "Only UUID V4 is supported at this time." +msgstr "Zurzeit wird nur UUID V4 unterstützt." + +#: wp-includes/deprecated.php:3958 wp-includes/deprecated.php:3975 +#: wp-admin/press-this.php:74 +msgid "The Press This plugin is required." +msgstr "Das Press This Plugin ist erforderlich." + +#. translators: %s: Number of themes displayed. +#: wp-includes/customize/class-wp-customize-themes-section.php:152 +msgid "%s themes" +msgstr "%s Themes" + +#. translators: %s: Number of filters selected. +#: wp-includes/customize/class-wp-customize-themes-section.php:136 +msgid "Filter themes (%s)" +msgstr "Themes filtern (%s)" + +#: wp-includes/customize/class-wp-customize-themes-section.php:124 +msgid "Back to theme sources" +msgstr "Zurück zu den Theme-Quellen" + +#: wp-includes/customize/class-wp-customize-themes-section.php:103 +msgid "Search WordPress.org themes" +msgstr "Themes auf WordPress.org suchen" + +#: wp-includes/customize/class-wp-customize-theme-control.php:261 +#: wp-includes/customize/class-wp-customize-theme-control.php:263 +#: wp-admin/includes/theme.php:1006 wp-admin/includes/theme.php:1009 +msgid "Install & Preview" +msgstr "Installation und Vorschau" + +#: wp-includes/customize/class-wp-customize-nav-menu-item-setting.php:722 +msgid "Invalid URL." +msgstr "Ungültige URL." + +#. translators: %s: "Add Items" button text. +#: wp-includes/customize/class-wp-customize-nav-menu-control.php:46 +msgid "Time to add some links! Click “%s” to start putting pages, categories, and custom links in your menu. Add as many things as you’d like." +msgstr "Höchste Zeit, ein paar Links hinzuzufügen! Klicke auf „%s“, wenn du deinem Menü Seiten, Kategorien und individuelle Links hinzufügen willst. Füge soviele hinzu, wie du magst." + +#: wp-includes/media.php:4267 +#: wp-includes/customize/class-wp-customize-media-control.php:252 +msgid "Choose image" +msgstr "Bild wählen" + +#: wp-includes/customize/class-wp-customize-media-control.php:241 +msgid "Choose audio" +msgstr "Audio-Datei wählen" + +#: wp-includes/customize/class-wp-customize-media-control.php:236 +msgid "Change audio" +msgstr "Audio-Datei wechseln" + +#: wp-includes/customize/class-wp-customize-media-control.php:235 +#: wp-includes/customize/class-wp-customize-media-control.php:240 +msgid "Select audio" +msgstr "Audio-Datei auswählen" + +#. translators: %s: Header height in pixels. +#: wp-includes/customize/class-wp-customize-header-image-control.php:219 +msgid "Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header height of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit." +msgstr "Klicke „Neues Bild hinzufügen“, um ein Bild von deinem Computer hochzuladen. Das Theme wirkt am besten mit einem Header-Bild, das eine Höhe von %s Pixel hat. Du kannst dein Bild nach dem Hochladen zuschneiden, um es optimal anzupassen." + +#. translators: %s: Header width in pixels. +#: wp-includes/customize/class-wp-customize-header-image-control.php:213 +msgid "Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header width of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit." +msgstr "Klicke „Neues Bild hinzufügen“, um ein Bild von deinem Computer hochzuladen. Das Theme wirkt am besten mit einem Header-Bild, das eine Breite von %s Pixel hat. Du kannst dein Bild nach dem Hochladen zuschneiden, um es optimal anzupassen." + +#. translators: %s: Header size in pixels. +#: wp-includes/customize/class-wp-customize-header-image-control.php:207 +msgid "Click “Add new image” to upload an image file from your computer. Your theme works best with an image with a header size of %s pixels — you’ll be able to crop your image once you upload it for a perfect fit." +msgstr "Klicke „Neues Bild hinzufügen“, um ein Bild von deinem Computer hochzuladen. Das Theme wirkt am besten mit einem Header-Bild, das eine Größe von %s Pixel hat. Du kannst dein Bild nach dem Hochladen zuschneiden, um es optimal anzupassen." + +#: wp-includes/customize/class-wp-customize-header-image-control.php:203 +msgid "Click “Add new image” to upload an image file from your computer. Your theme works best with an image that matches the size of your video — you’ll be able to crop your image once you upload it for a perfect fit." +msgstr "Klicke „Neues Bild hinzufügen“, um ein Bild von deinem Computer hochzuladen. Das Theme wirkt am besten, wenn das Bild der Größe deines Videos entspricht. Du kannst dein Bild nach dem Hochladen zuschneiden, um es optimal anzupassen." + +#. translators: 1: Month number (01, 02, etc.), 2: Month abbreviation. +#: wp-includes/customize/class-wp-customize-date-time-control.php:204 +#: wp-admin/includes/template.php:822 +msgid "%1$s-%2$s" +msgstr "%1$s-%2$s" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:170 +msgid "Meridian" +msgstr "Längengrad" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:167 +#: wp-admin/includes/template.php:829 +msgid "Minute" +msgstr "Minute" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:162 +#: wp-admin/includes/template.php:828 +msgid "Hour" +msgstr "Stunde" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:160 +#: wp-includes/js/dist/components.js:35698 +msgid "Time" +msgstr "Zeit" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:146 +#: wp-includes/js/dist/components.js:35652 wp-admin/includes/template.php:826 +msgid "Day" +msgstr "Tag" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:130 +#: wp-includes/js/dist/components.js:35614 wp-admin/includes/template.php:816 +msgid "Month" +msgstr "Monat" + +#: wp-includes/customize/class-wp-customize-date-time-control.php:127 +#: wp-includes/js/dist/components.js:35684 +#: wp-admin/includes/ajax-actions.php:2183 +#: wp-admin/includes/class-wp-posts-list-table.php:661 +#: wp-admin/includes/class-wp-posts-list-table.php:1567 +msgid "Date" +msgstr "Datum" + +#: wp-includes/class-wp-user.php:748 +msgid "Usage of user levels is deprecated. Use capabilities instead." +msgstr "Die Verwendung von Benutzer-Levels ist veraltet. Verwende stattdessen Berechtigungen." + +#. translators: %s: Template. +#: wp-includes/class-wp-theme.php:292 +msgid "The theme defines itself as its parent theme. Please check the %s header." +msgstr "Das Theme definiert sich selbst als sein Eltern-Theme. Bitte prüfe den %s-Header." + +#: wp-includes/class-wp-editor.php:190 wp-includes/class-wp-editor.php:1388 +msgctxt "Name for the Visual editor tab" +msgid "Visual" +msgstr "Visuell" + +#: wp-includes/class-wp-customize-nav-menus.php:1127 +msgid "Create New Menu" +msgstr "Neues Menü erstellen" + +#: wp-includes/class-wp-customize-nav-menus.php:843 +msgid "New Menu" +msgstr "Neues Menü" + +#. translators: URL to the Widgets panel of the Customizer. +#: wp-includes/class-wp-customize-nav-menus.php:691 +msgid "If your theme has widget areas, you can also add menus there. Visit the Widgets panel and add a “Navigation Menu widget” to display a menu in a sidebar or footer." +msgstr "Falls dein Theme Widget-Bereiche hat, kannst du dort auch Menüs hinzufügen. Gehe zum Widget-Bereich und füge ein „Navigations-Menü“-Widget hinzu, um ein Menü in einer Seitenleiste oder im Footer anzuzeigen." + +#: wp-includes/class-wp-customize-nav-menus.php:512 +msgid "If your theme has multiple menus, giving them clear names will help you manage them." +msgstr "Hat dein Theme mehrere Menüs, dann kann es hilfreich sein, wenn du ihnen eindeutige Namen gibst." + +#. translators: %s: Number of menu locations. +#: wp-includes/class-wp-customize-nav-menus.php:495 +msgid "Your theme can display menus in %s location." +msgid_plural "Your theme can display menus in %s locations." +msgstr[0] "Dein Theme kann Menüs an %s Position anzeigen." +msgstr[1] "Dein Theme kann Menüs an %s Positionen anzeigen." + +#: wp-includes/class-wp-customize-nav-menus.php:492 +msgid "Your theme can display menus in one location." +msgstr "Dein Theme kann Menüs an einer Position anzeigen." + +#: wp-includes/class-wp-customize-manager.php:5716 +msgid "CSS code" +msgstr "CSS-Code" + +#. translators: 1: Link to user profile, 2: Additional link attributes, 3: +#. Accessibility text. +#: wp-includes/widgets/class-wp-widget-custom-html.php:311 +#: wp-includes/class-wp-customize-manager.php:5675 +msgid "The edit field automatically highlights code syntax. You can disable this in your user profile%3$s to work in plain text mode." +msgstr "Das Bearbeitungsfeld hebt automatisch die Codesyntax hervor. Du kannst das in deinem Benutzerprofil%3$sabschalten, um im einfachen Textmodus zu arbeiten." + +#: wp-includes/widgets/class-wp-widget-custom-html.php:326 +#: wp-includes/class-wp-customize-manager.php:5668 wp-admin/theme-editor.php:36 +#: wp-admin/plugin-editor.php:133 +msgid "Screen reader users: when in forms mode, you may need to press the Esc key twice." +msgstr "Benutzer von Screen-Readern: Im Eingabefeld-Modus kann es sein, dass du die Escape-Taste zweimal drücken musst." + +#: wp-includes/widgets/class-wp-widget-custom-html.php:325 +#: wp-includes/class-wp-customize-manager.php:5667 wp-admin/theme-editor.php:35 +#: wp-admin/plugin-editor.php:132 +msgid "To move away from this area, press the Esc key followed by the Tab key." +msgstr "Zum Verlassen dieses Bereichs drücke die Escape-Taste und dann die Tab-Taste." + +#: wp-includes/widgets/class-wp-widget-custom-html.php:324 +#: wp-includes/class-wp-customize-manager.php:5666 wp-admin/theme-editor.php:34 +#: wp-admin/plugin-editor.php:131 +msgid "In the editing area, the Tab key enters a tab character." +msgstr "Im Bearbeitungsbereich fügt die Tab-Taste ein Tab-Zeichen ein." + +#: wp-includes/widgets/class-wp-widget-custom-html.php:322 +#: wp-includes/class-wp-customize-manager.php:5664 wp-admin/theme-editor.php:32 +#: wp-admin/plugin-editor.php:129 +msgid "When using a keyboard to navigate:" +msgstr "Wenn zum Navigieren die Tastatur verwendet wird:" + +#: wp-includes/class-wp-customize-manager.php:5654 +msgid "Add your own CSS code here to customize the appearance and layout of your site." +msgstr "Füge hier deinen eigenen CSS-Code ein, um das Erscheinungsbild und Layout deiner Website anzupassen." + +#: wp-includes/class-wp-customize-manager.php:5606 +#: wp-admin/options-reading.php:85 wp-admin/options-reading.php:86 +msgid "Your homepage displays" +msgstr "Deine Startseite zeigt" + +#: wp-includes/class-wp-customize-manager.php:5589 +msgid "You can choose what’s displayed on the homepage of your site. It can be posts in reverse chronological order (classic blog), or a fixed/static page. To set a static homepage, you first need to create two Pages. One will become the homepage, and the other will be where your posts are displayed." +msgstr "Du kannst auswählen, was auf der Startseite deiner Website angezeigt wird. Das können Beiträge in umgekehrter chronologischer Reihenfolge (klassischer Blog) oder eine feststehende/statische Seite sein. Um eine statische Startseite festzulegen, musst du erst zwei Seiten erstellen. Eine wird die Startseite (Home) und die andere wird die, wo deine Beiträge angezeigt werden." + +#: wp-includes/class-wp-customize-manager.php:5587 +msgid "Homepage Settings" +msgstr "Startseiten-Einstellungen" + +#. translators: %s: Site icon size in pixels. +#: wp-includes/class-wp-customize-manager.php:5161 +msgid "Site Icons should be square and at least %s pixels." +msgstr "Website-Icons sollten quadratisch und mindestens %s Pixel groß sein." + +#: wp-includes/class-wp-customize-manager.php:5159 +msgid "Site Icons are what you see in browser tabs, bookmark bars, and within the WordPress mobile apps. Upload one here!" +msgstr "Website-Icons erscheinen in Browser-Tabs, Lesezeichenleisten und innerhalb der WordPress Mobile Apps. Lade hier eins hoch!" + +#: wp-includes/class-wp-customize-manager.php:5055 +msgid "WordPress.org themes" +msgstr "WordPress.org-Themes" + +#: wp-includes/class-wp-customize-manager.php:5040 +msgid "Installed themes" +msgstr "Installierte Themes" + +#: wp-includes/script-loader.php:1152 wp-admin/customize.php:192 +#: wp-admin/customize.php:197 wp-admin/edit-form-advanced.php:394 +msgid "Publish Settings" +msgstr "Veröffentlichungs-Einstellungen" + +#: wp-includes/class-wp-customize-manager.php:4341 +msgid "Copied" +msgstr "Kopiert" + +#: wp-includes/class-wp-customize-manager.php:4335 +msgid "Preview Link" +msgstr "Vorschau-Link" + +#: wp-includes/class-wp-customize-manager.php:4332 +msgid "See how changes would look live on your website, and share the preview with people who can't access the Customizer." +msgstr "Schau dir direkt an, wie Änderungen auf deiner Website aussehen würden und teile die Vorschau mit Menschen, die keinen Zugriff auf den Customizer haben." + +#: wp-includes/class-wp-customize-manager.php:4330 +msgid "Share Preview Link" +msgstr "Vorschau-Link teilen" + +#: wp-includes/class-wp-customize-manager.php:3194 +msgid "Changes trashed successfully." +msgstr "Änderungen erfolgreich in den Papierkorb gelegt." + +#: wp-includes/class-wp-customize-manager.php:3175 +msgid "Changes have already been trashed." +msgstr "Änderungen wurden bereits in den Papierkorb gelegt." + +#: wp-includes/class-wp-customize-manager.php:3154 +#: wp-includes/class-wp-customize-manager.php:3187 +msgid "Unable to trash changes." +msgstr "Kann Änderungen nicht in den Papierkorb legen." + +#: wp-includes/class-wp-customize-manager.php:3142 +msgid "No changes saved yet, so there is nothing to trash." +msgstr "Noch keine Änderungen gespeichert, es kann nichts in den Papierkorb gelegt werden." + +#: wp-includes/class-wp-customize-manager.php:3132 +msgid "There was an authentication problem. Please reload and try again." +msgstr "Es gab ein Authentifizierungsproblem. Bitte neu laden und nochmal probieren." + +#. translators: %s: Number of invalid settings. +#: wp-includes/script-loader.php:1140 wp-includes/script-loader.php:1142 +#: wp-includes/class-wp-customize-manager.php:2787 +msgid "Unable to save due to %s invalid setting." +msgid_plural "Unable to save due to %s invalid settings." +msgstr[0] "Speichern aufgrund %s ungültigen Einstellung nicht möglich." +msgstr[1] "Speichern aufgrund %s ungültiger Einstellungen nicht möglich." + +#: wp-includes/script-loader.php:1103 +#: wp-includes/class-wp-customize-manager.php:2668 +#: wp-includes/class-wp-customize-manager.php:2683 +msgid "You must supply a future date to schedule." +msgstr "Du musst ein in der Zukunft liegendes Datum zur Planung angeben." + +#: wp-includes/class-wp-customize-manager.php:2645 +msgid "The previous set of changes has already been published. Please try saving your current set of changes again." +msgstr "Das vorherige Änderungs-Set wurde bereits veröffentlicht. Bitte versuche, dein aktuelles Änderungs-Set nochmal zu speichern." + +#: wp-includes/admin-bar.php:820 +msgid "Edit User" +msgstr "Benutzer bearbeiten" + +#: wp-includes/admin-bar.php:774 +msgid "View User" +msgstr "Benutzer anzeigen" + +#: wp-includes/widgets/class-wp-widget-text.php:498 +msgid "This widget may have contained code that may work better in the “Custom HTML” widget. If you haven’t yet, how about trying that widget instead?" +msgstr "Dieses Widget enthielt anscheinend Code, der vermutlich besser im neuen „HTML“-Widget funktioniert. Falls du es noch nicht kennst: was hältst du davon, es auszuprobieren?" + +#: wp-includes/widgets/class-wp-widget-text.php:551 +msgid "Hey there, looks like you just pasted HTML into the “Visual” tab of the Text widget. You may want to paste your code into the “Text” tab instead. Alternately, try out the new “Custom HTML” widget!" +msgstr "Anscheinend hast du HTML-Code in den Tab „Visuell“ des Text-Widgets eingefügt. Füge deinen Code besser in den Tab „Text“ ein. Oder probiere das neue „HTML“-Widget aus!" + +#: wp-includes/widgets/class-wp-widget-text.php:550 +msgid "Did you just paste HTML?" +msgstr "Hast du gerade HTML eingefügt?" + +#: wp-includes/widgets/class-wp-widget-text.php:535 +msgid "Did you know there is a “Custom HTML” widget now? You can find it by scanning the list of available widgets on this screen. Check it out to add some custom code to your site!" +msgstr "Weißt du schon von dem neuen „individuellen HTML“-Widget? Du findest es in der Liste der verfügbaren Widgets auf diesem Bildschirm. Probiere es aus und füge individuellen Code in deine Website ein!" + +#: wp-includes/widgets/class-wp-widget-text.php:533 +msgid "Did you know there is a “Custom HTML” widget now? You can find it by pressing the “Add a Widget” button and searching for “HTML”. Check it out to add some custom code to your site!" +msgstr "Weißt du schon von dem neuen „individuellen HTML“-Widget? Du findest es, indem du den “Widget hinzufügen”-Button klickst und nach „HTML“ suchst. Probiere es aus und füge individuellen Code in deine Website ein!" + +#: wp-includes/widgets/class-wp-widget-text.php:531 +msgid "New Custom HTML Widget" +msgstr "Neues Widget für individuelles HTML" + +#: wp-includes/widgets/class-wp-widget-text.php:496 +msgid "This widget may contain code that may work better in the “Custom HTML” widget. How about trying that widget instead?" +msgstr "Dieses Widget scheint Code zu enthalten, der vermutlich besser im neuen „HTML“-Widget funktioniert. Was hältst du davon, es auszuprobieren?" + +#: wp-includes/widgets/class-wp-widget-text.php:35 +msgid "Arbitrary text." +msgstr "Beliebiger Text." + +#: wp-includes/widgets/class-wp-widget-custom-html.php:283 +msgid "Some HTML tags are not permitted, including:" +msgstr "Einige HTML-Tags sind nicht erlaubt, darunter:" + +#: wp-includes/widgets/class-wp-widget-custom-html.php:53 +#: wp-includes/js/dist/block-library.js:15487 +msgid "Custom HTML" +msgstr "HTML" + +#: wp-includes/widgets/class-wp-widget-custom-html.php:46 +msgid "Arbitrary HTML code." +msgstr "Beliebiger HTML-Code." + +#: wp-includes/widgets/class-wp-widget-tag-cloud.php:179 +msgid "Show tag counts" +msgstr "Schlagwortanzahl anzeigen" + +#. translators: %s: Number of items (tags). +#. translators: %s: Number of items. +#. translators: Number of items. +#. translators: %s: Number of comments. +#: wp-includes/category-template.php:861 wp-includes/category-template.php:872 +#: wp-admin/includes/class-wp-list-table.php:847 +#: wp-admin/includes/class-wp-list-table.php:1454 +#: wp-admin/includes/ajax-actions.php:533 +msgid "%s item" +msgid_plural "%s items" +msgstr[0] "%s Eintrag" +msgstr[1] "%s Einträge" + +#: wp-includes/widgets/class-wp-widget-media.php:70 +msgctxt "label for button in the media widget" +msgid "Add Media" +msgstr "Medien hinzufügen" + +#: wp-includes/widgets/class-wp-widget-media-video.php:39 +msgctxt "label for button in the video widget" +msgid "Add Video" +msgstr "Video hinzufügen" + +#: wp-includes/widgets/class-wp-widget-media-image.php:39 +msgctxt "label for button in the image widget" +msgid "Add Image" +msgstr "Bild hinzufügen" + +#: wp-includes/widgets/class-wp-widget-media-audio.php:39 +msgctxt "label for button in the audio widget" +msgid "Add Audio" +msgstr "Audio hinzufügen" + +#: wp-includes/media.php:3784 +msgid "(no author)" +msgstr "(kein Autor)" + +#. translators: %s: The name of a city. +#: wp-includes/script-loader.php:1753 +msgid "City updated. Listing events near %s." +msgstr "Stadt aktualisiert. Zeige Veranstaltungen in der Nähe von %s." + +#. translators: %s is the name of the city we couldn't locate. * Replace the +#. examples with cities in your locale, but test * that they match the expected +#. location before including them. * Use endonyms (native locale names) +#. whenever possible. +#: wp-includes/script-loader.php:1749 wp-admin/includes/dashboard.php:1364 +msgid "We couldn’t locate %s. Please try another nearby city. For example: Kansas City; Springfield; Portland." +msgstr "Wir konnten %s nicht finden. Bitte versuche eine andere nahe gelegene Stadt. Zum Beispiel: Berlin; Köln; München." + +#: wp-includes/script-loader.php:1731 +msgid "Attend an upcoming event near you." +msgstr "Besuche eine bevorstehende Veranstaltung in deiner Nähe." + +#: wp-includes/script-loader.php:1730 wp-admin/includes/dashboard.php:1280 +msgid "An error occurred. Please try again." +msgstr "Ein Fehler ist aufgetreten. Bitte versuche es nochmal." + +#: wp-includes/script-loader.php:1729 +msgid "Enter your closest city to find nearby events." +msgstr "Gib eine Stadt in deiner Nähe ein, um Veranstaltungen in der Umgebung zu finden." + +#. translators: %s: URL to Network Settings screen. +#: wp-signup.php:926 +msgid "To change or disable registration go to your Options page." +msgstr "Um die Registrierung zu ändern oder zu deaktivieren, öffne die Einstellungen." + +#: wp-signup.php:919 +msgid "The network currently allows both site and user registrations." +msgstr "Das Netzwerk erlaubt aktuell sowohl Website- als auch Benutzer-Registrierungen." + +#: wp-signup.php:916 +msgid "The network currently allows user registrations." +msgstr "Das Netzwerk erlaubt aktuell Benutzer-Registrierungen." + +#: wp-signup.php:913 +msgid "The network currently allows site registrations." +msgstr "Das Netzwerk erlaubt aktuell Website-Registrierungen." + +#: wp-signup.php:910 +msgid "The network currently disallows registrations." +msgstr "Das Netzwerk erlaubt aktuell keine Registrierungen." + +#: wp-signup.php:905 +msgid "Greetings Network Administrator!" +msgstr "Hallo, Netzwerk-Administrator!" + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:63 +#: wp-includes/widgets/class-wp-widget-media.php:154 +msgid "Title for the widget" +msgstr "Titel für das Widget" + +#: wp-includes/widgets/class-wp-widget-media.php:148 +msgid "URL to the media file" +msgstr "URL der Mediendatei" + +#: wp-includes/widgets/class-wp-widget-media.php:141 +msgid "Attachment post ID" +msgstr "Beitrags-ID des Anhangs" + +#: wp-includes/widgets/class-wp-widget-media.php:82 +msgid "Looks like this isn’t the correct kind of file. Please link to an appropriate file instead." +msgstr "Dies ist scheinbar nicht der richtige Dateityp. Bitte verlinke stattdessen auf eine geeignete Datei." + +#: wp-includes/widgets/class-wp-widget-media.php:81 +msgid "Media Widget" +msgstr "Medien-Widget" + +#. translators: %d: Widget count. +#: wp-includes/widgets/class-wp-widget-media.php:80 +msgid "Media Widget (%d)" +msgid_plural "Media Widget (%d)" +msgstr[0] "Medien-Widget (%d)" +msgstr[1] "Medien-Widgets (%d)" + +#. translators: %s: URL to media library. +#: wp-includes/widgets/class-wp-widget-media.php:76 +msgid "We can’t find that file. Check your media library and make sure it wasn’t deleted." +msgstr "Wir können diese Datei nicht finden. Prüfe deine Mediathek und stelle sicher, dass sie nicht gelöscht wurde." + +#: wp-includes/widgets/class-wp-widget-media.php:73 +msgid "Add to Widget" +msgstr "Zu Widget hinzufügen" + +#: wp-includes/widgets/class-wp-widget-media.php:72 +msgctxt "label for button in the media widget; should preferably not be longer than ~13 characters long" +msgid "Edit Media" +msgstr "Datei bearbeiten" + +#: wp-includes/widgets/class-wp-widget-media.php:71 +msgctxt "label for button in the media widget; should preferably not be longer than ~13 characters long" +msgid "Replace Media" +msgstr "Datei ersetzen" + +#: wp-includes/widgets/class-wp-widget-media.php:69 +msgid "No media selected" +msgstr "Keine Datei ausgewählt" + +#: wp-includes/widgets/class-wp-widget-media.php:60 +msgid "A media item." +msgstr "Ein Medien-Element." + +#. translators: %s: Video extension. +#: wp-includes/widgets/class-wp-widget-media-video.php:98 +msgid "URL to the %s video source file" +msgstr "URL der %s-Quelldatei" + +#: wp-includes/widgets/class-wp-widget-media-video.php:49 +msgid "Video Widget" +msgstr "Video-Widget" + +#. translators: %d: Widget count. +#: wp-includes/widgets/class-wp-widget-media-video.php:48 +msgid "Video Widget (%d)" +msgid_plural "Video Widget (%d)" +msgstr[0] "Video-Widget (%d)" +msgstr[1] "Video-Widgets (%d)" + +#. translators: %s: URL to media library. +#: wp-includes/widgets/class-wp-widget-media-video.php:44 +msgid "We can’t find that video. Check your media library and make sure it wasn’t deleted." +msgstr "Wir können dieses Video nicht finden. Prüfe deine Mediathek und stelle sicher, dass es nicht gelöscht wurde. " + +#: wp-includes/widgets/class-wp-widget-media-video.php:41 +msgctxt "label for button in the video widget; should preferably not be longer than ~13 characters long" +msgid "Edit Video" +msgstr "Video bearbeiten" + +#: wp-includes/widgets/class-wp-widget-media-video.php:40 +msgctxt "label for button in the video widget; should preferably not be longer than ~13 characters long" +msgid "Replace Video" +msgstr "Video ersetzen" + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:39 +msgctxt "label for button in the gallery widget; should not be longer than ~13 characters long" +msgid "Add Images" +msgstr "Bilder hinzufügen" + +#: wp-includes/widgets/class-wp-widget-media-video.php:30 +msgid "Displays a video from the media library or from YouTube, Vimeo, or another provider." +msgstr "Zeigt ein Video aus der Mediathek oder von YouTube, Vimeo oder einem anderen Anbieter." + +#: wp-includes/widgets/class-wp-widget-media-image.php:49 +msgid "Image Widget" +msgstr "Bild-Widget" + +#. translators: %d: Widget count. +#: wp-includes/widgets/class-wp-widget-media-image.php:48 +msgid "Image Widget (%d)" +msgid_plural "Image Widget (%d)" +msgstr[0] "Bild-Widget (%d)" +msgstr[1] "Bild-Widgets (%d)" + +#. translators: %s: URL to media library. +#: wp-includes/widgets/class-wp-widget-media-image.php:44 +msgid "We can’t find that image. Check your media library and make sure it wasn’t deleted." +msgstr "Wir können dieses Bild nicht finden. Prüfe deine Mediathek und stelle sicher, dass es nicht gelöscht wurde. " + +#: wp-includes/widgets/class-wp-widget-media-image.php:41 +msgctxt "label for button in the image widget; should preferably not be longer than ~13 characters long" +msgid "Edit Image" +msgstr "Bild bearbeiten" + +#: wp-includes/widgets/class-wp-widget-media-image.php:40 +msgctxt "label for button in the image widget; should preferably not be longer than ~13 characters long" +msgid "Replace Image" +msgstr "Bild ersetzen" + +#: wp-includes/widgets/class-wp-widget-media-gallery.php:41 +msgctxt "label for button in the gallery widget; should not be longer than ~13 characters long" +msgid "Edit Gallery" +msgstr "Galerie bearbeiten" + +#: wp-includes/widgets/class-wp-widget-media-image.php:30 +msgid "Displays an image." +msgstr "Zeigt ein Bild an." + +#: wp-includes/widgets/class-wp-widget-media-image.php:354 +#: wp-includes/widgets/class-wp-widget-media-audio.php:197 +#: wp-includes/widgets/class-wp-widget-media-video.php:240 +msgid "Unable to preview media due to an unknown error." +msgstr "Medienvorschau aufgrund eines unbekannten Fehlers nicht möglich." + +#. translators: %s: Audio extension. +#: wp-includes/widgets/class-wp-widget-media-audio.php:87 +msgid "URL to the %s audio source file" +msgstr "URL der %s-Quelldatei" + +#: wp-includes/widgets/class-wp-widget-media-audio.php:50 +msgid "Looks like this isn’t the correct kind of file. Please link to an audio file instead." +msgstr "Dies ist scheinbar nicht der richtige Dateityp. Bitte verlinke stattdessen auf eine Audiodatei." + +#: wp-includes/widgets/class-wp-widget-media-audio.php:49 +msgid "Audio Widget" +msgstr "Audio-Widget" + +#. translators: %d: Widget count. +#: wp-includes/widgets/class-wp-widget-media-audio.php:48 +msgid "Audio Widget (%d)" +msgid_plural "Audio Widget (%d)" +msgstr[0] "Audio-Widget (%d)" +msgstr[1] "Audio-Widgets (%d)" + +#. translators: %s: URL to media library. +#: wp-includes/widgets/class-wp-widget-media-audio.php:44 +msgid "We can’t find that audio file. Check your media library and make sure it wasn’t deleted." +msgstr "Wir können diese Audiodatei nicht finden. Prüfe deine Mediathek und stelle sicher, dass sie nicht gelöscht wurde." + +#: wp-includes/widgets/class-wp-widget-media-audio.php:41 +msgctxt "label for button in the audio widget; should preferably not be longer than ~13 characters long" +msgid "Edit Audio" +msgstr "Audio bearbeiten" + +#: wp-includes/widgets/class-wp-widget-media-audio.php:40 +msgctxt "label for button in the audio widget; should preferably not be longer than ~13 characters long" +msgid "Replace Audio" +msgstr "Audio ersetzen" + +#: wp-includes/widgets/class-wp-widget-media-audio.php:38 +#: wp-includes/customize/class-wp-customize-media-control.php:239 +msgid "No audio selected" +msgstr "Keine Audiodatei ausgewählt" + +#: wp-includes/widgets/class-wp-widget-media-audio.php:30 +msgid "Displays an audio player." +msgstr "Zeigt einen Audioplayer." + +#. translators: 1: Parameter, 2: Maximum number. +#: wp-includes/rest-api.php:1790 +msgid "%1$s must be less than or equal to %2$d" +msgstr "%1$s muss kleiner oder gleich %2$d sein" + +#. translators: 1: Parameter, 2: Maximum number. +#: wp-includes/rest-api.php:1787 +msgid "%1$s must be less than %2$d" +msgstr "%1$s muss kleiner als %2$d sein" + +#. translators: 1: Parameter, 2: Minimum number. +#: wp-includes/rest-api.php:1782 +msgid "%1$s must be greater than or equal to %2$d" +msgstr "%1$s muss größer oder gleich %2$d sein" + +#. translators: 1: Parameter, 2: Minimum number. +#: wp-includes/rest-api.php:1779 +msgid "%1$s must be greater than %2$d" +msgstr "%1$s muss größer als %2$d sein" + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1534 +msgid "Limit result set to users with one or more specific slugs." +msgstr "Ergebnissatz auf Benutzer mit einer oder mehreren bestimmten Titelformen begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1076 +msgid "Limit result set to terms with one or more specific slugs." +msgstr "Ergebnissatz auf Begriffe mit einer oder mehreren bestimmten Titelformen begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:312 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:354 +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:160 +msgid "The page number requested is larger than the number of pages available." +msgstr "Die angeforderte Seitennummer ist größer als die Anzahl der verfügbaren Seiten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:237 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:174 +msgid "You need to define an include parameter to order by include." +msgstr "Du musst einen Include-Parameter definieren, um nach include sortieren zu können." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:317 +msgid "All features, supported by the post type." +msgstr "Alle von diesem Inhaltstypen unterstützten Eigenschaften." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:85 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:107 +msgid "The password for the parent post of the comment (if the post is password protected)." +msgstr "Das Passwort für den übergeordneten Beitrag des Kommentars (wenn der Beitrag passwortgeschützt ist)." + +#: wp-includes/post.php:1717 +msgctxt "page" +msgid "Use as featured image" +msgstr "Als Beitragsbild nutzen" + +#: wp-includes/post.php:1717 +msgctxt "post" +msgid "Use as featured image" +msgstr "Als Beitragsbild nutzen" + +#: wp-includes/post.php:1716 +msgctxt "page" +msgid "Remove featured image" +msgstr "Beitragsbild entfernen" + +#: wp-includes/post.php:1716 +msgctxt "post" +msgid "Remove featured image" +msgstr "Beitragsbild entfernen" + +#: wp-includes/post.php:1715 +msgctxt "page" +msgid "Set featured image" +msgstr "Beitragsbild festlegen" + +#: wp-includes/post.php:1715 +msgctxt "post" +msgid "Set featured image" +msgstr "Beitragsbild festlegen" + +#: wp-includes/post.php:1714 +msgctxt "page" +msgid "Featured image" +msgstr "Beitragsbild" + +#: wp-includes/post.php:1714 +msgctxt "post" +msgid "Featured image" +msgstr "Beitragsbild" + +#. translators: 1: $sanitize_callback, 2: register_setting() +#: wp-includes/option.php:2376 +msgid "%1$s is deprecated. The callback from %2$s is used instead." +msgstr "%1$s ist veraltet. Stattdessen wird der Callback von %2$s verwendet." + +#: wp-includes/media.php:4223 +msgid "" +"You are about to permanently delete these items from your site.\n" +"This action cannot be undone.\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Du bist dabei, diese Elemente endgültig von deiner Website zu löschen.\n" +"Diese Aktion kann nicht rückgängig gemacht werden.\n" +"Wähle „Abbrechen“ zum Stoppen oder „OK“ zum Löschen." + +#: wp-includes/media.php:4222 +msgid "" +"You are about to permanently delete this item from your site.\n" +"This action cannot be undone.\n" +" 'Cancel' to stop, 'OK' to delete." +msgstr "" +"Du bist dabei, dieses Element endgültig von deiner Website zu löschen.\n" +"Diese Aktion kann nicht rückgängig gemacht werden.\n" +"Wähle „Abbrechen“ zum Stoppen oder „OK“ zum Löschen." + +#. translators: 1: Suggested width number, 2: Suggested height number. +#: wp-includes/media-template.php:296 wp-includes/media.php:4274 +msgid "Suggested image dimensions: %1$s by %2$s pixels." +msgstr "Vorgeschlagene Bildmaße: %1$s auf %2$s Pixel." + +#: wp-includes/script-loader.php:827 wp-includes/functions.php:2668 +#: wp-includes/js/dist/media-utils.js:1103 wp-admin/includes/file.php:857 +msgid "Sorry, this file type is not permitted for security reasons." +msgstr "Dieser Dateityp ist aus Sicherheitsgründen leider nicht erlaubt." + +#: wp-includes/comment.php:3443 +msgid "Sorry, comments are not allowed for this item." +msgstr "Kommentare sind für diesen Beitrag nicht erlaubt." + +#: wp-includes/class-wp-oembed-controller.php:149 +msgid "Sorry, you are not allowed to make proxied oEmbed requests." +msgstr "Du bist leider nicht berechtigt, oEmbed-Anfragen über Proxy zu machen." + +#: wp-includes/class-wp-oembed-controller.php:98 +msgid "Whether to perform an oEmbed discovery request for unsanctioned providers." +msgstr "Ob eine oEmbed-Discovery-Anfrage für nicht sanktionierte Anbieter durchgeführt werden soll." + +#: wp-includes/class-wp-oembed-controller.php:93 +msgid "The maximum height of the embed frame in pixels." +msgstr "Die maximale Höhe des eingebundenen Frames in Pixel." + +#: wp-includes/class-wp-oembed-controller.php:87 +msgid "The maximum width of the embed frame in pixels." +msgstr "Die maximale Breite des eingebundenen Frames in Pixel." + +#: wp-includes/class-wp-oembed-controller.php:78 +msgid "The oEmbed format to use." +msgstr "Das zu verwendende oEmbed-Format." + +#: wp-includes/class-wp-oembed-controller.php:44 +#: wp-includes/class-wp-oembed-controller.php:72 +msgid "The URL of the resource for which to fetch oEmbed data." +msgstr "Die URL der Ressource, für die oEmbed-Daten abgerufen werden sollen." + +#: wp-includes/class-wp-editor.php:1273 +msgctxt "Short for blue in RGB" +msgid "B" +msgstr "B" + +#: wp-includes/class-wp-editor.php:1272 +msgctxt "Short for green in RGB" +msgid "G" +msgstr "G" + +#: wp-includes/class-wp-editor.php:1271 +msgctxt "Short for red in RGB" +msgid "R" +msgstr "R" + +#: wp-includes/class-wp-editor.php:1230 +msgid "Insert/edit media" +msgstr "Medien einfügen/bearbeiten" + +#: wp-includes/class-wp-editor.php:1227 +msgid "Insert/edit code sample" +msgstr "Beispielcode einfügen/bearbeiten" + +#: wp-includes/class-wp-editor.php:1226 wp-admin/includes/privacy-tools.php:438 +#: wp-admin/includes/class-wp-privacy-policy-content.php:435 +msgid "Table of Contents" +msgstr "Inhaltsverzeichnis" + +#: wp-includes/class-wp-editor.php:1224 +msgid "Date/time" +msgstr "Datum/Zeit" + +#: wp-includes/class-wp-editor.php:1200 +msgctxt "Id for link anchor (TinyMCE)" +msgid "Id" +msgstr "Id" + +#: wp-includes/class-wp-editor.php:1199 +msgid "Id should start with a letter, followed only by letters, numbers, dashes, dots, colons or underscores." +msgstr "Die ID sollte mit einem Buchstaben beginnen, gefolgt von Buchstaben, Zahlen, Bindestrichen, Punkten, Doppelpunkten oder Unterstrichen." + +#: wp-includes/class-wp-customize-widgets.php:782 +msgid "You can navigate to other pages on your site while using the Customizer to view and edit the widgets displayed on those pages." +msgstr "Du kannst zu anderen Seiten deiner Website navigieren, während du den Customizer verwendest, um die auf diesen Seiten verfügbaren Widgets anzuzeigen und zu bearbeiten." + +#. translators: %s: The total number of widget areas registered. +#: wp-includes/class-wp-customize-widgets.php:758 +msgid "Your theme has %s widget area, but this particular page doesn’t display it." +msgid_plural "Your theme has %s widget areas, but this particular page doesn’t display them." +msgstr[0] "Dein Theme hat %s Widget-Bereich, aber diese bestimmte Seite zeigt ihn nicht an." +msgstr[1] "Dein Theme hat %s Widget-Bereiche, aber diese bestimmte Seite zeigt sie nicht an." + +#: wp-includes/class-wp-customize-widgets.php:749 +msgid "Your theme has 1 widget area, but this particular page doesn’t display it." +msgstr "Dein Theme hat einen Widget-Bereich, aber diese bestimmte Seite zeigt ihn nicht an." + +#. translators: %s: The number of other widget areas registered but not +#. rendered. +#: wp-includes/class-wp-customize-widgets.php:734 +msgid "Your theme has %s other widget area, but this particular page doesn’t display it." +msgid_plural "Your theme has %s other widget areas, but this particular page doesn’t display them." +msgstr[0] "Dein Theme hat %s weiteren Widget-Bereich, aber diese bestimmte Seite zeigt ihn nicht an." +msgstr[1] "Dein Theme hat %s weitere Widget-Bereiche, aber diese bestimmte Seite zeigt sie nicht an." + +#: wp-includes/class-wp-customize-widgets.php:725 +msgid "Your theme has 1 other widget area, but this particular page doesn’t display it." +msgstr "Dein Theme hat einen weiteren Widget-Bereich, aber diese bestimmte Seite zeigt ihn nicht an." + +#: wp-includes/option.php:2059 +msgid "This address is used for admin purposes, like new user notification." +msgstr "Diese Adresse wird für administrative Zwecke verwendet, wie Benachrichtigungen über neue Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:102 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:925 +msgid "Unique identifier for the term." +msgstr "Eindeutige Kennung für den Begriff." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:128 +msgid "Required to be true, as terms do not support trashing." +msgstr "Setzen auf true erforderlich, denn Begriffe können nicht in den Papierkorb gelegt werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:58 +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:341 +msgid "An alphanumeric identifier for the taxonomy." +msgstr "Eine alphanumerische Kennung für die Taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:122 +msgid "Required to be true, as revisions do not support trashing." +msgstr "Setzen auf true erforderlich, denn Revisionen können nicht in den Papierkorb gelegt werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:332 +msgid "REST base route for the post type." +msgstr "REST-Basisroute für den Inhaltstyp." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:58 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:311 +msgid "An alphanumeric identifier for the post type." +msgstr "Eine alphanumerische Kennung für den Inhaltstyp." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:299 +msgid "Human-readable labels for the post type for various contexts." +msgstr "Visuell lesbare Kennungen des Inhaltstyps für verschiedene Kontexte." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:287 +msgid "Whether or not the post type should have children." +msgstr "Ob der Inhaltstyp Kind-Elemente haben soll, oder nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:281 +msgid "A human-readable description of the post type." +msgstr "Eine visuell lesbare Beschreibung des Inhaltstyps." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:275 +msgid "All capabilities used by the post type." +msgstr "Alle Fähigkeiten, die der Inhaltstyp benutzt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:58 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:338 +msgid "An alphanumeric identifier for the status." +msgstr "Eine alphanumerische Kennung für den Status." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1577 +msgid "Limit response to comments published before a given ISO8601 compliant date." +msgstr "Antwort auf Kommentare einschränken, die vor einem gegebenen ISO8601-konformen Datum veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1548 +msgid "Limit response to comments published after a given ISO8601 compliant date." +msgstr "Antwort auf Kommentare einschränken, die nach einem gegebenen ISO8601-konformen Datum veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1460 +msgid "Avatar URLs for the user." +msgstr "Avatar-URLs für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1413 +msgid "Roles assigned to the user." +msgstr "Rollen, die dem Benutzer zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1390 +msgid "The nickname for the user." +msgstr "Der Spitzname für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1384 +msgid "Locale for the user." +msgstr "Sprachumgebung für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1377 +msgid "Author URL of the user." +msgstr "Autor-URL des Benutzers." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1372 +msgid "Description of the user." +msgstr "Beschreibung des Benutzers." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1366 +msgid "URL of the user." +msgstr "URL des Benutzers." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1351 +msgid "Last name for the user." +msgstr "Nachname für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1343 +msgid "First name for the user." +msgstr "Vorname für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1335 +msgid "Display name for the user." +msgstr "Anzeige-Name für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1326 +msgid "Login name for the user." +msgstr "Anmeldename für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:860 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:907 +msgid "The user cannot be deleted." +msgstr "Der Benutzer kann nicht gelöscht werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:567 +msgid "Error creating new user." +msgstr "Fehler beim Erstellen des neuen Benutzers." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:979 +msgid "The parent term ID." +msgstr "Die ID des Eltern-Begriffs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:949 +msgid "HTML title for the term." +msgstr "HTML-Titel für den Begriff." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:942 +msgid "URL of the term." +msgstr "URL des Begriffs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:687 +msgid "The term cannot be deleted." +msgstr "Der Begriff kann nicht gelöscht werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php:73 +msgid "Sorry, you are not allowed to view themes." +msgstr "Du bist leider nicht berechtigt, Themes anzuzeigen." + +#: wp-includes/class-wp-xmlrpc-server.php:2174 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:432 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:569 +msgid "Cannot set parent term, taxonomy is not hierarchical." +msgstr "Kann den Eltern-Begriff nicht setzen, da die Taxonomie nicht hierarchisch ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:324 +msgid "Term does not exist." +msgstr "Begriff existiert nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:353 +msgid "Types associated with the taxonomy." +msgstr "Typen, die der Taxonomie zugeordnet sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:335 +msgid "The title for the taxonomy." +msgstr "Der Titel für die Taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:305 +msgid "The title for the post type." +msgstr "Der Titel für den Inhaltstyp." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:149 +msgid "Cannot view post type." +msgstr "Kann den Inhaltstyp nicht anzeigen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:302 +msgid "The title for the status." +msgstr "Der Titel für den Status." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:154 +msgid "Cannot view status." +msgstr "Kann den Status nicht anzeigen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:144 +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:202 +msgid "Invalid status." +msgstr "Ungültiger Status." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:898 +msgid "URL to the original attachment file." +msgstr "URL der Originaldatei des Anhangs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:878 +msgid "The attachment MIME type." +msgstr "Der MIME-Typ des Anhangs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:870 +msgid "Attachment type." +msgstr "Anhangs-Typ." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:847 +msgid "The attachment description." +msgstr "Die Beschreibung des Anhangs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:824 +msgid "The attachment caption." +msgstr "Die Beschriftung des Anhangs." + +#: wp-includes/option.php:2136 +msgid "Default post category." +msgstr "Standard-Beitragskategorie." + +#: wp-includes/option.php:2026 +msgid "Site tagline." +msgstr "Website-Untertitel." + +#. translators: Theme author name. +#: wp-includes/customize/class-wp-customize-theme-control.php:88 +msgctxt "theme author" +msgid "By %s" +msgstr "Von %s" + +#. translators: New user notification email subject. 1: Network title, 2: New +#. user login. +#: wp-includes/ms-functions.php:1128 +msgctxt "New user notification email subject" +msgid "[%1$s] Activate %2$s" +msgstr "[%1$s] Aktiviere %2$s" + +#. translators: New site notification email subject. 1: Network title, 2: New +#. site URL. +#: wp-includes/ms-functions.php:1016 +msgctxt "New site notification email subject" +msgid "[%1$s] Activate %2$s" +msgstr "[%1$s] Aktiviere %2$s" + +#: wp-includes/blocks/rss.php:19 wp-includes/widgets.php:1503 +#: wp-includes/widgets.php:1626 +msgid "RSS Error:" +msgstr "RSS-Fehler:" + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:578 +msgid "Cannot create a comment with that type." +msgstr "Kann keinen Kommentar dieses Typs erstellen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:733 +msgid "Invalid slug." +msgstr "Ungültige Titelform." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:717 +#: wp-includes/rest-api.php:1757 wp-includes/user.php:3585 +#: wp-admin/network/site-new.php:96 +msgid "Invalid email address." +msgstr "Ungültige E-Mail-Adresse." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:597 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:853 +msgid "Invalid comment content." +msgstr "Ungültiger Kommentarinhalt." + +#: wp-includes/rest-api/class-wp-rest-server.php:341 +msgid "Invalid JSONP callback function." +msgstr "Ungültige JSONP-Callback-Funktion." + +#: wp-includes/post.php:4150 +msgid "Invalid page template." +msgstr "Ungültiges Seiten-Template." + +#: wp-includes/script-loader.php:1153 wp-includes/rest-api.php:1751 +#: wp-includes/post.php:3793 wp-admin/includes/post.php:188 +msgid "Invalid date." +msgstr "Ungültiges Datum." + +#: wp-includes/theme.php:1585 +msgid "Video is playing." +msgstr "Video wird abgespielt." + +#: wp-includes/theme.php:1584 +msgid "Video is paused." +msgstr "Video ist pausiert." + +#: wp-includes/theme.php:2175 +msgctxt "Theme starter content" +msgid "Archives" +msgstr "Archive" + +#: wp-includes/theme.php:2327 +msgctxt "Theme starter content" +msgid "This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts." +msgstr "Hier ist als Beispiel ein Abschnitt deiner Startseite. Ein Startseiten-Abschnitt kann jede Seite sein; ausgenommen die Startseite selbst, aber einschließlich der Seite, die deine neuen Blog-Beiträge zeigt." + +#: wp-includes/theme.php:2319 +msgctxt "Theme starter content" +msgid "News" +msgstr "Neuigkeiten" + +#: wp-includes/theme.php:2310 +msgctxt "Theme starter content" +msgid "This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form." +msgstr "Das ist eine Seite mit einigen klassischen Kontakt-Informationen, wie Adresse und Telefonnummer. Du könntest hier aber auch ein Plugin nutzen, um ein Kontakt-Formular einzufügen." + +#: wp-includes/theme.php:2302 +msgctxt "Theme starter content" +msgid "You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe." +msgstr "Möglicherweise bist du künstlerisch tätig und möchtest dich und deine Arbeiten hier vorstellen. Oder hast du vielleicht ein Business mit einer Mission, die es zu beschreiben gilt?" + +#: wp-includes/theme.php:2294 +msgctxt "Theme starter content" +msgid "Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time." +msgstr "Willkommen auf deiner Website! Das ist die Startseite, die die meisten deiner Besucher sehen werden, wenn sie deine Website zum ersten Mal aufrufen." + +#: wp-includes/theme.php:2205 +msgctxt "Theme starter content" +msgid "Recent Posts" +msgstr "Neueste Beiträge" + +#: wp-includes/theme.php:2199 +msgctxt "Theme starter content" +msgid "Recent Comments" +msgstr "Neueste Kommentare" + +#: wp-includes/theme.php:2193 +msgctxt "Theme starter content" +msgid "Meta" +msgstr "Meta" + +#: wp-includes/theme.php:2181 +msgctxt "Theme starter content" +msgid "Calendar" +msgstr "Kalender" + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:811 +msgid "Sorry, you are not allowed to change the comment type." +msgstr "Du bist leider nicht berechtigt, den Kommentar-Typ zu ändern." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1208 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1222 +#: wp-admin/includes/user.php:62 wp-admin/users.php:123 +#: wp-admin/network/site-users.php:151 +msgid "Sorry, you are not allowed to give users that role." +msgstr "Du bist leider nicht berechtigt, Benutzern diese Benutzerrolle zuzuweisen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:212 +msgid "Sorry, you are not allowed to order users by this parameter." +msgstr "Du bist leider nicht berechtigt, Benutzer nach diesem Parameter zu sortieren." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:196 +msgid "Sorry, you are not allowed to filter users by role." +msgstr "Du bist leider nicht berechtigt, Benutzer nach Benutzerrolle zu filtern." + +#: wp-includes/class-wp-xmlrpc-server.php:3679 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:934 +msgid "Sorry, you are not allowed to delete this comment." +msgstr "Du bist leider nicht berechtigt, diesen Kommentar zu löschen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:175 +msgid "Sorry, you are not allowed to view revisions of this post." +msgstr "Du bist leider nicht berechtigt, Revisionen dieses Beitrags anzuschauen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:525 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:533 +msgid "Sorry, you are not allowed to create a comment on this post." +msgstr "Du bist leider nicht berechtigt, einen Kommentar zu diesem Beitrag zu erstellen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:507 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:517 +msgid "Sorry, you are not allowed to create this comment without a post." +msgstr "Du bist leider nicht berechtigt, diesen Kommentar ohne einen Beitrag zu erstellen." + +#. translators: %s: Request parameter. +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:479 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:489 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:499 +msgid "Sorry, you are not allowed to edit '%s' for comments." +msgstr "Du bist leider nicht berechtigt, '%s' für Kommentare zu bearbeiten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:134 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:405 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:541 +msgid "Sorry, you are not allowed to read the post for this comment." +msgstr "Du bist leider nicht berechtigt, den Beitrag zu diesem Kommentar zu lesen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:397 +msgid "Sorry, you are not allowed to read this comment." +msgstr "Du bist leider nicht berechtigt, diesen Kommentar zu lesen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:140 +msgid "Sorry, you are not allowed to read comments without a post." +msgstr "Du bist leider nicht berechtigt, Kommentare ohne einen Beitrag zu lesen." + +#: wp-includes/theme.php:2284 +msgctxt "Theme starter content" +msgid "YouTube" +msgstr "YouTube" + +#: wp-includes/theme.php:2272 +msgctxt "Theme starter content" +msgid "Pinterest" +msgstr "Pinterest" + +#: wp-includes/theme.php:2268 +msgctxt "Theme starter content" +msgid "LinkedIn" +msgstr "LinkedIn" + +#: wp-includes/theme.php:2260 +msgctxt "Theme starter content" +msgid "GitHub" +msgstr "GitHub" + +#: wp-includes/theme.php:2256 +msgctxt "Theme starter content" +msgid "Foursquare" +msgstr "Foursquare" + +#: wp-includes/theme.php:2167 +msgctxt "Theme starter content" +msgid "This may be a good place to introduce yourself and your site or include some credits." +msgstr "Hier wäre ein guter Platz, um dich und deine Website vorzustellen oder weitere Informationen anzugeben." + +#: wp-includes/theme.php:2166 +msgctxt "Theme starter content" +msgid "About This Site" +msgstr "Über diese Website" + +#. translators: %s: Custom field key. +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:222 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:264 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:359 +msgid "Sorry, you are not allowed to edit the %s custom field." +msgstr "Du bist leider nicht berechtigt, das individuelle Feld %s zu bearbeiten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:561 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:732 +msgid "Sorry, you are not allowed to assign the provided terms." +msgstr "Du bist leider nicht berechtigt, die angegebenen Begriffe zuzuordnen." + +#: wp-includes/class-wp-xmlrpc-server.php:1340 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:545 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:724 +msgid "Sorry, you are not allowed to make posts sticky." +msgstr "Du bist leider nicht berechtigt, Beiträge oben zu halten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:104 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:144 +msgid "Reassign the deleted user's posts and links to this user ID." +msgstr "Die gelöschten Beiträge und Links des Benutzers dieser Benutzer-ID erneut zuweisen." + +#: wp-includes/script-loader.php:1127 +msgid "This theme doesn’t support video headers on this page. Navigate to the front page or another page that supports video headers." +msgstr "Dieses Theme unterstützt auf dieser Seite keine Video-Header. Gehe zur Startseite oder einer anderen Seite, die Video-Header unterstützt." + +#: wp-includes/customize/class-wp-customize-media-control.php:231 +msgid "Choose video" +msgstr "Video wählen" + +#: wp-includes/widgets/class-wp-widget-media-video.php:38 +#: wp-includes/customize/class-wp-customize-media-control.php:229 +msgid "No video selected" +msgstr "Kein Video ausgewählt" + +#: wp-includes/customize/class-wp-customize-media-control.php:226 +msgid "Change video" +msgstr "Video wechseln" + +#: wp-includes/customize/class-wp-customize-media-control.php:225 +#: wp-includes/customize/class-wp-customize-media-control.php:230 +msgid "Select video" +msgstr "Video auswählen" + +#: wp-includes/theme.php:2324 +msgctxt "Theme starter content" +msgid "A homepage section" +msgstr "Ein Startseiten-Abschnitt" + +#: wp-includes/theme.php:2315 +msgctxt "Theme starter content" +msgid "Blog" +msgstr "Blog" + +#: wp-includes/theme.php:2307 +msgctxt "Theme starter content" +msgid "Contact" +msgstr "Kontakt" + +#: wp-includes/theme.php:2299 +msgctxt "Theme starter content" +msgid "About" +msgstr "Über uns" + +#: wp-includes/theme.php:2218 wp-includes/theme.php:2291 +msgctxt "Theme starter content" +msgid "Home" +msgstr "Startseite" + +#: wp-includes/theme.php:2248 +msgctxt "Theme starter content" +msgid "Email" +msgstr "E-Mail" + +#: wp-includes/theme.php:2264 +msgctxt "Theme starter content" +msgid "Instagram" +msgstr "Instagram" + +#: wp-includes/theme.php:2276 +msgctxt "Theme starter content" +msgid "Twitter" +msgstr "Twitter" + +#: wp-includes/theme.php:2252 +msgctxt "Theme starter content" +msgid "Facebook" +msgstr "Facebook" + +#: wp-includes/theme.php:2280 +msgctxt "Theme starter content" +msgid "Yelp" +msgstr "Yelp" + +#: wp-includes/theme.php:2187 +msgctxt "Theme starter content" +msgid "Categories" +msgstr "Kategorien" + +#: wp-includes/theme.php:2211 +msgctxt "Theme starter content" +msgid "Search" +msgstr "Suche" + +#: wp-includes/theme.php:2156 +msgctxt "Theme starter content" +msgid "Saturday & Sunday: 11:00AM–3:00PM" +msgstr "Samstag und Sonntag: 11–15 Uhr" + +#: wp-includes/theme.php:2156 +msgctxt "Theme starter content" +msgid "Monday–Friday: 9:00AM–5:00PM" +msgstr "Montag bis Freitag: 10–18 Uhr" + +#: wp-includes/theme.php:2155 +msgctxt "Theme starter content" +msgid "Hours" +msgstr "Öffnungszeiten" + +#: wp-includes/theme.php:2154 +msgctxt "Theme starter content" +msgid "New York, NY 10001" +msgstr "20020 Jetztdabei" + +#: wp-includes/theme.php:2154 +msgctxt "Theme starter content" +msgid "123 Main Street" +msgstr "Traum Allee 213" + +#: wp-includes/theme.php:2153 +msgctxt "Theme starter content" +msgid "Address" +msgstr "Adresse" + +#: wp-includes/theme.php:2149 +msgctxt "Theme starter content" +msgid "Find Us" +msgstr "Hier findest du uns" + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1294 +msgid "Passwords cannot contain the \"\\\" character." +msgstr "Passwörter können kein „\\“-Zeichen enthalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1286 +msgid "Passwords cannot be empty." +msgstr "Passwörter können nicht leer sein." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:178 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:542 +msgid "Invalid user parameter(s)." +msgstr "Ungültige(r) Benutzer-Parameter." + +#: wp-includes/script-loader.php:1116 +msgctxt "label for hide controls button without length constraints" +msgid "Show Controls" +msgstr "Bedienelemente einblenden" + +#: wp-includes/script-loader.php:1115 wp-admin/customize.php:245 +msgctxt "label for hide controls button without length constraints" +msgid "Hide Controls" +msgstr "Bedienelemente ausblenden" + +#: wp-includes/media-template.php:396 +msgid "Document Preview" +msgstr "Dokument-Vorschau" + +#: wp-includes/class-wp-customize-manager.php:5288 +msgid "Header Media" +msgstr "Header-Medien" + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:362 +msgid "REST base route for the taxonomy." +msgstr "REST-Basisroute für die Taxonomie." + +#. translators: %s: Add New Page label. +#. translators: %s: Add New taxonomy label. +#: wp-includes/class-wp-customize-control.php:631 +#: wp-admin/includes/meta-boxes.php:636 +msgid "+ %s" +msgstr "+ %s" + +#: wp-includes/l10n.php:1578 +msgctxt "default site language" +msgid "Site Default" +msgstr "Website-Einstellung" + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:861 +msgid "HTML description for the object, transformed for display." +msgstr "HTML-Beschreibung für das Objekt, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:856 +msgid "Description for the object, as it exists in the database." +msgstr "Beschreibung für das Objekt, wie sie in der Datenbank vorliegt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:838 +msgid "HTML caption for the attachment, transformed for display." +msgstr "Für die Anzeige umgewandelte HTML-Beschriftung für den Anhang." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:833 +msgid "Caption for the attachment, as it exists in the database." +msgstr "Beschriftung für den Anhang, wie sie in der Datenbank vorliegt." + +#: wp-includes/class-wp-customize-manager.php:6065 +msgid "Please enter a valid YouTube URL." +msgstr "Bitte gib eine gültige YouTube-URL ein." + +#. translators: %s: force=true +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:880 +msgid "Users do not support trashing. Set '%s' to delete." +msgstr "Benutzer unterstützen die Papierkorbfunktion nicht. Setze '%s', um sie zu löschen." + +#. translators: %s: force=true +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:673 +msgid "Terms do not support trashing. Set '%s' to delete." +msgstr "Begriffe unterstützen die Papierkorbfunktion nicht. Setze '%s', um sie zu löschen." + +#. translators: %s: force=true +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:460 +msgid "Revisions do not support trashing. Set '%s' to delete." +msgstr "Revisionen unterstützen die Papierkorbfunktion nicht. Setze '%s', um sie zu löschen." + +#. translators: %s: force=true +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:925 +msgid "The post does not support trashing. Set '%s' to delete." +msgstr "Der Beitrag unterstützt die Papierkorbfunktion nicht. Setze '%s', um ihn zu löschen." + +#. translators: %s: force=true +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:987 +msgid "The comment does not support trashing. Set '%s' to delete." +msgstr "Der Kommentar unterstützt die Papierkorbfunktion nicht. Setze '%s', um ihn zu löschen." + +#: wp-includes/class-wp-customize-manager.php:5402 +msgid "Or, enter a YouTube URL:" +msgstr "Oder gib hier eine YouTube-URL ein:" + +#: wp-includes/rest-api/class-wp-rest-request.php:687 +msgid "Invalid JSON body passed." +msgstr "Ungültiger JSON body übergeben." + +#. translators: %s: Taxonomy name. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2738 +msgid "Limit result set to all items except those that have the specified term assigned in the %s taxonomy." +msgstr "Ergebnissatz auf alle Elemente begrenzen, außer denen, den der bestimmte Begriff in der %s-Taxonomie zugewiesen wurde." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2704 +msgid "Limit result set to posts assigned one or more statuses." +msgstr "Ergebnissatz auf Beiträge begrenzen, denen ein oder mehrere Status zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:651 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:866 +msgid "Comment field exceeds maximum length allowed." +msgstr "Kommentarfeld übersteigt die maximal erlaubte Länge." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-types-controller.php:323 +msgid "Taxonomies associated with post type." +msgstr "Taxonomien, die dem Inhaltstyp zugeordnet sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2694 +msgid "Limit result set to posts with one or more specific slugs." +msgstr "Ergebnissatz auf Beiträge mit einer oder mehreren bestimmten Titelformen begrenzen." + +#: wp-includes/class-wp-xmlrpc-server.php:3879 +msgid "Comment is required." +msgstr "Kommentar ist erforderlich." + +#: wp-includes/class-wp-customize-nav-menus.php:949 +msgid "Empty title." +msgstr "Leerer Titel." + +#: wp-trackback.php:130 +msgid "We already have a ping from that URL for this post." +msgstr "Für diesen Beitrag haben wir bereits einen Ping von dieser URL." + +#: wp-trackback.php:115 +msgid "Sorry, trackbacks are closed for this item." +msgstr "Trackbacks sind für diesen Beitrag geschlossen." + +#: wp-trackback.php:88 +msgid "I really need an ID for this to work." +msgstr "Damit das funktioniert brauche ich wirklich eine ID." + +#: wp-includes/block-patterns/three-buttons.php:10 +msgid "Contact us" +msgstr "Kontaktiere uns" + +#: wp-includes/class-wp-customize-manager.php:5627 +#: wp-admin/includes/file.php:38 +msgid "Homepage" +msgstr "Startseite" + +#: wp-includes/script-loader.php:777 +msgid "Item selected." +msgstr "Eintrag ausgewählt." + +#. translators: 1: Parameter, 2: Minimum number, 3: Maximum number. +#: wp-includes/rest-api.php:1811 +msgid "%1$s must be between %2$d (inclusive) and %3$d (inclusive)" +msgstr "%1$s muss zwischen %2$d (inklusiv) und %3$d (inklusiv) liegen" + +#. translators: 1: Parameter, 2: Minimum number, 3: Maximum number. +#: wp-includes/rest-api.php:1806 +msgid "%1$s must be between %2$d (exclusive) and %3$d (inclusive)" +msgstr "%1$s muss zwischen %2$d (exklusiv) und %3$d (inklusiv) liegen" + +#. translators: 1: Parameter, 2: Minimum number, 3: Maximum number. +#: wp-includes/rest-api.php:1801 +msgid "%1$s must be between %2$d (inclusive) and %3$d (exclusive)" +msgstr "%1$s muss zwischen %2$d (inklusiv) und %3$d (exklusiv) liegen" + +#. translators: 1: Parameter, 2: Minimum number, 3: Maximum number. +#: wp-includes/rest-api.php:1796 +msgid "%1$s must be between %2$d (exclusive) and %3$d (exclusive)" +msgstr "%1$s muss zwischen %2$d (exklusiv) und %3$d (exklusive) liegen" + +#. translators: %s: IP address. +#: wp-includes/rest-api.php:1763 +msgid "%s is not a valid IP address." +msgstr "%s ist keine gültige IP-Adresse." + +#. translators: 1: Parameter, 2: List of types. +#. translators: 1: Parameter, 2: Type name. +#: wp-includes/rest-api.php:1573 wp-includes/rest-api.php:1591 +#: wp-includes/rest-api.php:1624 wp-includes/rest-api.php:1670 +#: wp-includes/rest-api.php:1685 wp-includes/rest-api.php:1690 +#: wp-includes/rest-api.php:1695 wp-includes/rest-api.php:1701 +msgid "%1$s is not of type %2$s." +msgstr "%1$s ist nicht vom Typ %2$s." + +#. translators: 1: Parameter, 2: List of valid values. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1363 +#: wp-includes/rest-api.php:1679 +msgid "%1$s is not one of %2$s." +msgstr "%1$s ist nicht eins von %2$s." + +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:496 +msgid "Meta fields." +msgstr "Metafelder." + +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:233 +msgid "Could not delete meta value from database." +msgstr "Der Metawert in der Datenbank konnte nicht gelöscht werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1542 +msgid "Limit result set to users matching at least one specific role provided. Accepts csv list or single role." +msgstr "Ergebnissatz auf Benutzer begrenzen, die mindestens einer bestimmten Rolle entsprechen. Akzeptiert eine CSV-Liste oder einzelne Rolle." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1436 +msgid "Any extra capabilities assigned to the user." +msgstr "Jegliche zusätzlichen Fähigkeiten, die dem Benutzer zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1430 +msgid "All capabilities assigned to the user." +msgstr "Alle Fähigkeiten, die dem Benutzer zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1421 +msgid "Password for the user (never included)." +msgstr "Passwort für den Benutzer (nie enthalten)." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1406 +msgid "Registration date for the user." +msgstr "Registrierungsdatum für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1359 +msgid "The email address for the user." +msgstr "Die E-Mail-Adresse für den Benutzer." + +#. translators: %s: Role key. +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1190 +msgid "The role %s does not exist." +msgstr "Die Benutzerrolle %s existiert nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:889 +msgid "Invalid user ID for reassignment." +msgstr "Ungültige Benutzer-ID für eine erneute Zuweisung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:839 +msgid "Sorry, you are not allowed to delete this user." +msgstr "Du bist leider nicht berechtigt, diesen Benutzer zu löschen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:725 +msgid "Username isn't editable." +msgstr "Benutzername ist nicht editierbar." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:663 +msgid "Sorry, you are not allowed to edit roles of this user." +msgstr "Du bist leider nicht berechtigt, Benutzerrollen dieses Benutzers zu bearbeiten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:431 +msgid "Sorry, you are not allowed to delete this revision." +msgstr "Du bist leider nicht berechtigt, diese Revision zu löschen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:519 +msgid "Cannot create existing user." +msgstr "Kann einen bereits vorhandenen Benutzer nicht erstellen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:474 +msgid "You are not currently logged in." +msgstr "Du bist im Moment nicht angemeldet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1070 +msgid "Limit result set to terms assigned to a specific post." +msgstr "Ergebnissatz auf Begriffe begrenzen, die einem bestimmten Beitrag zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1064 +msgid "Limit result set to terms assigned to a specific parent." +msgstr "Ergebnissatz auf Begriffe begrenzen, die einem bestimmten Eltern-Objekt zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1057 +msgid "Whether to hide terms not assigned to any posts." +msgstr "Ob Begriffe verborgen werden, die keinen Beiträgen zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1041 +msgid "Sort collection by term attribute." +msgstr "Sortiere die Sammlung nach einem Attribut des Begriffs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:966 +msgid "Type attribution for the term." +msgstr "Typzuordnung für diesen Begriff." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:958 +msgid "An alphanumeric identifier for the term unique to its type." +msgstr "Eine alphanumerische Kennung für den Begriff, die eindeutig für ihren Typ ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:937 +msgid "HTML description of the term." +msgstr "HTML-Beschreibung des Begriffs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:931 +msgid "Number of published posts for the term." +msgstr "Anzahl der veröffentlichten Beiträge für den Begriff." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:74 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1320 +msgid "Unique identifier for the user." +msgstr "Eindeutige Kennung für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:100 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:140 +msgid "Required to be true, as users do not support trashing." +msgstr "Setzen auf true erforderlich, denn Benutzer können nicht in den Papierkorb gelegt werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:419 +msgid "Limit results to taxonomies associated with a specific post type." +msgstr "Ergebnisse auf Taxonomien begrenzen, die einem bestimmten Inhaltstyp zugeordnet sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:347 +msgid "Whether or not the term cloud should be displayed." +msgstr "Ob die Schlagwort-Wolke angezeigt werden soll, oder nicht." + +#. translators: %s: Custom field key. +#. translators: %s: Property name. +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:159 +#: wp-includes/rest-api/fields/class-wp-rest-meta-fields.php:178 +#: wp-includes/rest-api/endpoints/class-wp-rest-settings-controller.php:197 +msgid "The %s property has an invalid stored value, and cannot be updated to null." +msgstr "Die %s-Eigenschaft ist mit einem ungültigen Wert gespeichert, und kann nicht auf null aktualisiert werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:194 +msgid "Invalid revision ID." +msgstr "Ungültige Revisions-ID." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2805 +#: wp-includes/class-wp-customize-nav-menus.php:952 +msgid "Status is forbidden." +msgstr "Status ist unzulässig." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2749 +msgid "Limit result set to items that are sticky." +msgstr "Ergebnissatz auf Elemente begrenzen, die oben gehalten werden." + +#. translators: %s: Taxonomy name. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2728 +msgid "Limit result set to all items that have the specified term assigned in the %s taxonomy." +msgstr "Ergebnissatz auf alle Elemente begrenzen, die in der Taxonomie %s einen bestimmten Begriff zugewiesen bekommen haben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2684 +msgid "Limit result set to all items except those of a particular parent ID." +msgstr "Ergebnissatz auf alle Elemente begrenzen, außer denen mit einer bestimmten Eltern-ID." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2676 +msgid "Limit result set to items with particular parent IDs." +msgstr "Ergebnissatz auf alle Elemente bestimmter Eltern-IDs begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1601 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:785 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2639 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1506 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1025 +msgid "Offset the result set by a specific number of items." +msgstr "Verschiebe den Ergebnissatz um eine bestimmte Anzahl von Elementen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2633 +msgid "Limit result set to posts with a specific menu_order value." +msgstr "Ergebnissatz auf Beiträge begrenzen, die einem bestimmten menu_order-Wert haben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2598 +msgid "Ensure result set excludes posts assigned to specific authors." +msgstr "Stelle sicher, dass der Ergebnissatz Beiträge ausschließt, die bestimmten Autoren zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2590 +msgid "Limit result set to posts assigned to specific authors." +msgstr "Ergebnissatz auf Beiträge begrenzen, die bestimmten Autoren zugewiesen sind." + +#. translators: %s: Taxonomy name. +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2395 +msgid "The terms assigned to the object in the %s taxonomy." +msgstr "Die Begriffe, die dem Objekt in der Taxonomie %s zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2365 +msgid "The theme file to use to display the object." +msgstr "Die Theme-Datei, die zur Anzeige des Objekts benutzt wird." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2120 +msgid "A password to protect access to the content and excerpt." +msgstr "Ein Passwort, um vor Zugriff auf Inhalt und Textauszug zu schützen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2358 +msgid "Whether or not the object should be treated as sticky." +msgstr "Ob das Objekt als oben gehalten behandelt werden soll, oder nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2342 +msgid "The format for the object." +msgstr "Das Format des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2331 +msgid "The order of the object in relation to other object of its type." +msgstr "Die Reihenfolge des Objekts im Verhältnis zu anderen Objekten seines Typs." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2322 +msgid "Whether or not the object can be pinged." +msgstr "Ob das Objekt gepingt werden kann, oder nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2316 +msgid "Whether or not comments are open on the object." +msgstr "Ob Kommentare für das Objekt geöffnet sind, oder nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2308 +msgid "The ID of the featured media for the object." +msgstr "Die ID des hervorgehobenen Mediums für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2297 +msgid "Whether the excerpt is protected with a password." +msgstr "Ob der Textauszug durch ein Passwort geschützt ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2291 +msgid "HTML excerpt for the object, transformed for display." +msgstr "HTML-Textauszug für das Objekt, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2286 +msgid "Excerpt for the object, as it exists in the database." +msgstr "Textauszug des Objekts, wie es in der Datenbank vorliegt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2277 +msgid "The excerpt for the object." +msgstr "Der Textauszug für dieses Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:678 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2269 +msgid "The ID for the author of the object." +msgstr "Die ID für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2258 +msgid "Whether the content is protected with a password." +msgstr "Ob der Inhalt durch ein Passwort geschützt ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2221 +msgid "HTML title for the object, transformed for display." +msgstr "HTML-Titel für das Objekt, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2216 +msgid "Title for the object, as it exists in the database." +msgstr "Titel für das Objekt, wie er in der Datenbank vorliegt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2207 +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:253 +msgid "The title for the object." +msgstr "Der Titel für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2114 +msgid "Type of Post for the object." +msgstr "Beitrags-Typ für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2108 +msgid "A named status for the object." +msgstr "Ein benannter Status für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:722 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2100 +msgid "An alphanumeric identifier for the object unique to its type." +msgstr "Eine alphanumerische Kennung für die Ressource, die eindeutig für ihren Typ ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:711 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2093 +msgid "The date the object was last modified, as GMT." +msgstr "Das Datum in GMT, an dem das Objekt zuletzt geändert wurde." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:705 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2086 +msgid "The date the object was last modified, in the site's timezone." +msgstr "Das Datum des letzten Änderung des Objekts, in der Zeitzone der Website." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2065 +msgid "GUID for the object, transformed for display." +msgstr "GUID für das Objekt, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:695 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2059 +msgid "GUID for the object, as it exists in the database." +msgstr "GUID für das Objekt, wie er in der Datenbank vorliegt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2053 +msgid "The globally unique identifier for the object." +msgstr "Die global eindeutige Kennung für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1463 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:689 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2047 +msgid "The date the object was published, as GMT." +msgstr "Das Datum in GMT, an dem das Objekt veröffentlicht wurde." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1457 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:683 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2041 +msgid "The date the object was published, in the site's timezone." +msgstr "Das Datum der Veröffentlichung des Objekts, in der Zeitzone der Website." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1317 +msgid "Invalid featured media ID." +msgstr "Ungültige ID des hervorgehobenen Mediums." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:143 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1210 +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:259 +msgid "Invalid post parent ID." +msgstr "Ungültige Eltern-ID des Beitrags." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1194 +msgid "A password protected post can not be set to sticky." +msgstr "Ein passwortgeschützter Beitrag kann nicht oben gehaltenen werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1183 +msgid "A sticky post can not be password protected." +msgstr "Ein oben gehaltener Beitrag kann nicht passwortgeschützt sein." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:1175 +msgid "A post can not be sticky and have a password." +msgstr "Ein Beitrag kann nicht oben gehalten werden und ein Passwort haben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:934 +msgid "The post has already been deleted." +msgstr "Der Beitrag wurde bereits gelöscht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:150 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:387 +#: wp-admin/edit-comments.php:14 +msgid "Sorry, you are not allowed to edit comments." +msgstr "Du bist leider nicht berechtigt, Kommentare zu bearbeiten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-plugins-controller.php:226 +msgid "Sorry, you are not allowed to manage this plugin." +msgstr "Du bist leider nicht berechtigt, dieses Plugin zu verwalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:527 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:581 +msgid "Cannot create existing post." +msgstr "Kann den bestehenden Beitrag nicht erstellen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:499 +msgid "Sorry, you are not allowed to create new users." +msgstr "Du bist leider nicht berechtigt, neue Benutzer anzulegen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:441 +msgid "Incorrect post password." +msgstr "Falsches Beitrags-Passwort." + +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:228 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:165 +msgid "You need to define a search term to order by relevance." +msgstr "Du musst einen Suchbegriff definieren, um nach Relevanz sortieren zu können." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1674 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:85 +msgid "The password for the post if it is password protected." +msgstr "Das Passwort für den Beitrag, falls dieser passwortgeschützt ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:329 +msgid "Human-readable labels for the taxonomy for various contexts." +msgstr "Visuell lesbare Kennungen der Taxonomie für verschiedene Kontexte." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:323 +msgid "Whether or not the taxonomy should have children." +msgstr "Ob die Taxonomie Kind-Elemente haben soll, oder nicht." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:317 +msgid "A human-readable description of the taxonomy." +msgstr "Eine visuell lesbare Beschreibung der Taxonomie." + +#: wp-includes/rest-api/endpoints/class-wp-rest-taxonomies-controller.php:311 +msgid "All capabilities used by the taxonomy." +msgstr "Alle Fähigkeiten, die die Taxonomie benutzt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:95 +msgid "Sorry, you are not allowed to manage post statuses." +msgstr "Du bist leider nicht berechtigt, Beitragsstatus zu verwalten." + +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1398 +msgid "An alphanumeric identifier for the user." +msgstr "Eine alphanumerische Kennung für den Benutzer." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:332 +msgid "Whether to include posts in the edit listing for their post type." +msgstr "Ob Beiträge in der Bearbeitungsliste für ihre Inhaltstypen eingeschlossen werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:326 +msgid "Whether posts with this status should be publicly-queryable." +msgstr "Ob Beiträge mit diesem Status öffentlich abfragbar sein sollen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:320 +msgid "Whether posts of this status should be shown in the front end of the site." +msgstr "Ob Beiträge dieses Status im Frontend der Website angezeigt werden sollen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:314 +msgid "Whether posts with this status should be protected." +msgstr "Ob Beiträge mit diesem Status passwortgeschützt sein sollen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-post-statuses-controller.php:308 +msgid "Whether posts with this status should be private." +msgstr "Ob Beiträge mit diesem Status privat sein sollen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:381 +msgid "Scope under which the request is made; determines fields present in response." +msgstr "Geltungsbereich der Anfrage; ermittelt in der Antwort vorhandene Felder." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:361 +msgid "Limit results to those matching a string." +msgstr "Ergebnisse auf alle begrenzen, die mit einer Zeichenkette übereinstimmen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:352 +msgid "Maximum number of items to be returned in result set." +msgstr "Maximale Anzahl an Elementen, die im Ergebnissatz zurückgegeben werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:344 +msgid "Current page of the collection." +msgstr "Aktuelle Seite der Sammlung." + +#. translators: %s: Method name. +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:69 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:86 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:103 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:120 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:137 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:154 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:171 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:188 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:205 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:222 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:239 +#: wp-includes/rest-api/endpoints/class-wp-rest-controller.php:257 +msgid "Method '%s' not implemented. Must be overridden in subclass." +msgstr "Methode '%s' nicht implementiert. Muss in Unterklasse überschrieben werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1667 +msgid "Limit result set to comments assigned a specific type. Requires authorization." +msgstr "Ergebnissatz auf Kommentare begrenzen, denen ein bestimmter Typ zugewiesen ist. Erfordert eine Autorisierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1659 +msgid "Limit result set to comments assigned a specific status. Requires authorization." +msgstr "Ergebnissatz auf Kommentare begrenzen, denen ein bestimmter Status zugewiesen ist. Erfordert eine Autorisierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1650 +msgid "Limit result set to comments assigned to specific post IDs." +msgstr "Ergebnissatz auf Kommentare begrenzen, die bestimmten Beitrags-IDs zugewiesen sind." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1641 +msgid "Ensure result set excludes specific parent IDs." +msgstr "Stelle sicher, dass der Ergebnissatz bestimmte Eltern-IDs ausschließt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1632 +msgid "Limit result set to comments of specific parent IDs." +msgstr "Ergebnissatz auf Kommentare bestimmter Eltern-IDs begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1616 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:797 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2651 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1519 +msgid "Sort collection by object attribute." +msgstr "Sortiere die Sammlung nach einem Attribut des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1606 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:790 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2644 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1512 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1031 +msgid "Order sort attribute ascending or descending." +msgstr "Attribut für aufsteigende oder absteigende Sortierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1592 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:776 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2623 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1497 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1015 +msgid "Limit result set to specific IDs." +msgstr "Ergebnissatz auf bestimmte IDs begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1583 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:767 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2614 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1488 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:1006 +msgid "Ensure result set excludes specific IDs." +msgstr "Stelle sicher, dass der Ergebnissatz bestimmte IDs ausschließt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2608 +msgid "Limit response to posts published before a given ISO8601 compliant date." +msgstr "Antwort auf Beiträge einschränken, die vor einem gegebenen ISO8601-konformen Datum veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1571 +msgid "Limit result set to that from a specific author email. Requires authorization." +msgstr "Ergebnissatz begrenzen, auf den einer speziellen E-Mail-Adresse eines Autoren. Erfordert eine Autorisierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1562 +msgid "Ensure result set excludes comments assigned to specific user IDs. Requires authorization." +msgstr "Stelle sicher, dass der Ergebnissatz Kommentare ausschließt, die einer bestimmten Benutzer-ID zugewiesen sind. Erfordert eine Autorisierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1554 +msgid "Limit result set to comments assigned to specific user IDs. Requires authorization." +msgstr "Ergebnissatz auf Kommentare begrenzen, denen bestimmte Benutzer-IDs zugewiesen sind. Erfordert eine Autorisierung." + +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2583 +msgid "Limit response to posts published after a given ISO8601 compliant date." +msgstr "Antwort auf Beiträge einschränken, die nach einem gegebenen ISO8601-konformen Datum veröffentlicht wurden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1520 +msgid "Avatar URLs for the object author." +msgstr "Avatar-URLs für den Objekt-Autor." + +#. translators: %d: Avatar image size in pixels. +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1512 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:1452 +msgid "Avatar URL with image size of %d pixels." +msgstr "Avatar-URL mit einer Bildgröße von %d Pixel." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1496 +msgid "Type of Comment for the object." +msgstr "Kommentar-Typ für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1488 +msgid "State of the object." +msgstr "Zustand des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1482 +msgid "The ID of the associated post object." +msgstr "Die ID des zugeordneten Beitragsobjekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1476 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:78 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:98 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:717 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2146 +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:89 +#: wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php:115 +msgid "The ID for the parent of the object." +msgstr "Die Eltern-ID des Objektes." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1469 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2079 +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:259 +msgid "URL to the object." +msgstr "URL zum Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1449 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2246 +msgid "HTML content for the object, transformed for display." +msgstr "HTML-Inhalt für das Objekt, transformiert für die Anzeige." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1444 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2241 +msgid "Content for the object, as it exists in the database." +msgstr "Inhalt für das Objekt, wie er in der Datenbank vorliegt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1435 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2232 +msgid "The content for the object." +msgstr "Der Inhalt des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1427 +msgid "User agent for the object author." +msgstr "User agent für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1421 +msgid "URL for the object author." +msgstr "URL für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1413 +msgid "Display name for the object author." +msgstr "Anzeige-Name für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1407 +msgid "IP address for the object author." +msgstr "IP-Adresse für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1397 +msgid "Email address for the object author." +msgstr "E-Mail-Adresse für den Autor des Objekts." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1392 +msgid "The ID of the user object, if author was a user." +msgstr "Die ID des Objekts des Benutzers, falls der Autor ein Benutzer war." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:74 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1386 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:102 +#: wp-includes/rest-api/endpoints/class-wp-rest-revisions-controller.php:700 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:95 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:2073 +#: wp-includes/rest-api/endpoints/class-wp-rest-search-controller.php:247 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:37 +msgid "Unique identifier for the object." +msgstr "Eindeutige Kennung für das Objekt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1309 +msgid "Invalid comment author ID." +msgstr "Ungültige Kommentar-Autor-ID." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:1008 +msgid "The comment cannot be deleted." +msgstr "Der Kommentar kann nicht gelöscht werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:995 +msgid "The comment has already been trashed." +msgstr "Der Kommentar wurde bereits in den Papierkorb verschoben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:876 +msgid "Updating comment failed." +msgstr "Aktualisierung des Kommentars fehlgeschlagen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:841 +msgid "Updating comment status failed." +msgstr "Aktualisierung des Kommentar-Status fehlgeschlagen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:704 +msgid "Creating comment failed." +msgstr "Kommentar erstellen fehlgeschlagen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:627 +msgid "Creating a comment requires valid author name and email values." +msgstr "Das Erstellen eines Kommentars erfordert einen gültigen Autorennamen und E-Mail-Angaben." + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:569 +msgid "Cannot create existing comment." +msgstr "Ein bestehender Kommentar kann nicht erstellt werden." + +#: wp-includes/class-wp-xmlrpc-server.php:3852 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:446 +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:468 +#: wp-includes/comment.php:3495 +msgid "Sorry, you must be logged in to comment." +msgstr "Du musst angemeldet sein, um zu kommentieren." + +#. translators: %s: List of forbidden parameters. +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:177 +msgid "Query parameter not permitted: %s" +msgstr "Abfrage-Parameter nicht erlaubt: %s" + +#: wp-includes/rest-api/endpoints/class-wp-rest-comments-controller.php:104 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:119 +msgid "Whether to bypass Trash and force deletion." +msgstr "Ob der Papierkorb umgangen werden soll und das Löschen erzwungen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1124 +msgid "Limit result set to attachments of a particular MIME type." +msgstr "Ergebnissatz auf Anhänge eines bestimmten MIME-Typs begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1117 +msgid "Limit result set to attachments of a particular media type." +msgstr "Ergebnissatz auf Anhänge eines bestimmten Medientyps begrenzen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:992 +msgid "Could not open file handle." +msgstr "Konnte Datei-Handle nicht öffnen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:972 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1158 +msgid "Content hash did not match expected." +msgstr "Der Inhalts-Hashwert war nicht wie erwartet." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:959 +msgid "Invalid Content-Disposition supplied. Content-Disposition needs to be formatted as `attachment; filename=\"image.png\"` or similar." +msgstr "Ungültige Content-Disposition bereitgestellt. Die Content-Disposition muss mit `attachment; filename=\"image.png\"` oder ähnlichem formatiert werden." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:949 +msgid "No Content-Disposition supplied." +msgstr "Keine Content-Disposition bereitgestellt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:941 +msgid "No Content-Type supplied." +msgstr "Kein Inhaltstyp bereitgestellt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:933 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:1144 +msgid "No data supplied." +msgstr "Keine Daten bereitgestellt." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:892 +msgid "The ID for the associated post of the attachment." +msgstr "Die ID des Beitrags, der dem Anhang zugeordnet ist." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:885 +msgid "Details about the media file, specific to its type." +msgstr "Details zur Mediendatei, konkret zu ihrem Typ." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:815 +msgid "Alternative text to display when attachment is not displayed." +msgstr "Alternativer Text, der anzeigt wird, wenn der Anhang nicht angezeigt wird." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:145 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:317 +msgid "Invalid parent type." +msgstr "Ungültiger Eltern-Typ." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:125 +msgid "Sorry, you are not allowed to upload media to this post." +msgstr "Du bist leider nicht berechtigt, Medien zu diesem Beitrag hochzuladen." + +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:116 +#: wp-includes/rest-api/endpoints/class-wp-rest-attachments-controller.php:399 +msgid "Sorry, you are not allowed to upload media on this site." +msgstr "Du bist leider nicht berechtigt, Medien auf diese Website hochzuladen." + +#. translators: %s: rest_authentication_errors +#: wp-includes/rest-api/class-wp-rest-server.php:317 +msgid "The REST API can no longer be completely disabled, the %s filter can be used to restrict access to the API, instead." +msgstr "Die REST-API kann nicht mehr länger komplett deaktiviert werden; stattdessen kann aber der Filter %s genutzt werden, um den Zugriff zur API einzuschränken." + +#: wp-includes/post.php:1711 wp-admin/edit-form-advanced.php:417 +msgid "Page Attributes" +msgstr "Seiten-Attribute" + +#: wp-includes/post.php:1711 +msgid "Post Attributes" +msgstr "Beitrags-Attribute" + +#: wp-includes/post.php:1704 +msgid "View Pages" +msgstr "Seiten ansehen" + +#: wp-includes/post.php:1704 +msgid "View Posts" +msgstr "Beiträge ansehen" + +#: wp-includes/post.php:190 +msgid "No changesets found in Trash." +msgstr "Keine Änderungs-Sets im Papierkorb gefunden." + +#: wp-includes/post.php:189 +msgid "No changesets found." +msgstr "Keine Änderungs-Sets gefunden." + +#: wp-includes/post.php:188 +msgid "Search Changesets" +msgstr "Änderungs-Sets suchen" + +#: wp-includes/post.php:187 +msgid "All Changesets" +msgstr "Alle Änderungs-Sets" + +#: wp-includes/post.php:186 +msgid "View Changeset" +msgstr "Änderungs-Set anzeigen" + +#: wp-includes/post.php:185 +msgid "Edit Changeset" +msgstr "Änderungs-Set bearbeiten" + +#: wp-includes/post.php:184 +msgid "New Changeset" +msgstr "Neues Änderungs-Set" + +#: wp-includes/post.php:183 +msgid "Add New Changeset" +msgstr "Neues Änderungs-Set hinzufügen" + +#: wp-includes/post.php:182 +msgctxt "Customize Changeset" +msgid "Add New" +msgstr "Neu hinzufügen" + +#: wp-includes/post.php:181 +msgctxt "add new on admin bar" +msgid "Changeset" +msgstr "Änderungs-Set" + +#: wp-includes/post.php:180 +msgctxt "admin menu" +msgid "Changesets" +msgstr "Änderungs-Sets" + +#: wp-includes/post.php:179 +msgctxt "post type singular name" +msgid "Changeset" +msgstr "Änderungs-Set" + +#: wp-includes/post.php:178 +msgctxt "post type general name" +msgid "Changesets" +msgstr "Änderungs-Sets" + +#: wp-includes/post.php:146 wp-includes/post.php:147 +msgid "Custom CSS" +msgstr "Individuelles CSS" + +#: wp-includes/post.php:79 +msgid "Attachment Attributes" +msgstr "Anhangs-Attribute" + +#. translators: Post revision title. 1: Author avatar, 2: Author name, 3: Time +#. ago, 4: Date. +#: wp-includes/post-template.php:1882 +msgid "%1$s %2$s, %3$s ago (%4$s)" +msgstr "%1$s %2$s vor %3$s (%4$s)" + +#. translators: %s: misc +#. translators: %s: privacy +#: wp-includes/option.php:2271 wp-includes/option.php:2284 +#: wp-includes/option.php:2344 wp-includes/option.php:2357 +#: wp-admin/includes/template.php:1563 wp-admin/includes/template.php:1576 +#: wp-admin/includes/template.php:1634 wp-admin/includes/template.php:1647 +msgid "The \"%s\" options group has been removed. Use another settings group." +msgstr "Die Optionsgruppe „%s“ wurde entfernt. Verwende eine andere Einstellungsgruppe." + +#: wp-includes/option.php:2171 +msgid "Allow link notifications from other blogs (pingbacks and trackbacks) on new articles." +msgstr "Link-Benachrichtigungen von anderen Blogs (Pingbacks und Trackbacks) zu neuen Beiträgen erlauben." + +#: wp-includes/option.php:2156 +msgid "Blog pages show at most." +msgstr "Maximal angezeigte Beiträge." + +#: wp-includes/option.php:2146 +msgid "Default post format." +msgstr "Standard-Beitragsformat." + +#: wp-includes/option.php:2125 +msgid "Convert emoticons like :-) and :-P to graphics on display." +msgstr "Emoticons wie :-) und :-P als Grafiken anzeigen." + +#: wp-includes/option.php:2114 +msgid "WordPress locale code." +msgstr "WordPress-Ländercode." + +#: wp-includes/option.php:2102 +msgid "A day number of the week that the week should start on." +msgstr "Die Zahl eines Wochentages, mit dem die Woche beginnen sollte." + +#: wp-includes/option.php:2092 +msgid "A time format for all time strings." +msgstr "Ein Zeitformat für alle zeitbasierten Zeichenfolgen." + +#: wp-includes/option.php:2082 +msgid "A date format for all date strings." +msgstr "Ein Zeitformat für alle datumsbasierten Zeichenfolgen." + +#: wp-includes/option.php:2072 +msgid "A city in the same timezone as you." +msgstr "Eine Stadt in deiner Zeitzone." + +#: wp-includes/option.php:2014 +msgid "Site title." +msgstr "Website-Titel." + +#: wp-includes/media.php:4234 +msgid "Search media items..." +msgstr "Medien suchen …" + +#: wp-includes/link-template.php:2733 +msgctxt "next set of posts" +msgid "Next" +msgstr "Nächste" + +#: wp-includes/link-template.php:2732 +msgctxt "previous set of posts" +msgid "Previous" +msgstr "Vorherige" + +#: wp-login.php:873 wp-login.php:1411 wp-includes/general-template.php:510 +msgid "Username or Email Address" +msgstr "Benutzername oder E-Mail-Adresse" + +#. translators: %s: "Search WordPress.org themes" button text. +#: wp-includes/customize/class-wp-customize-themes-section.php:102 +msgid "No themes found. Try a different search, or %s." +msgstr "Keine Themes gefunden. Versuche es bitte mit einem anderen Suchbegriff oder %s." + +#. translators: %s: Themes panel title in the Customizer. +#: wp-includes/customize/class-wp-customize-themes-panel.php:76 +msgid "You are browsing %s" +msgstr "Du durchsuchst %s" + +#: wp-includes/customize/class-wp-customize-themes-section.php:133 +msgid "Filter themes" +msgstr "Themes filtern" + +#: wp-includes/customize/class-wp-customize-themes-panel.php:49 +msgid "Change theme" +msgstr "Theme wechseln" + +#: wp-includes/customize/class-wp-customize-theme-control.php:103 +msgid "Update now" +msgstr "Jetzt aktualisieren" + +#. translators: %s: "Update now" button. +#: wp-includes/customize/class-wp-customize-theme-control.php:102 +msgid "New version available. %s" +msgstr "Neue Version verfügbar. %s" + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:67 +msgid "Install and preview theme: %s" +msgstr "Installation und Vorschau des Theme: %s" + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:65 +msgid "Live preview theme: %s" +msgstr "Live-Vorschau des Themes: %s" + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:63 +msgid "Customize theme: %s" +msgstr "Theme anpassen: %s" + +#. translators: %s: Theme name. +#: wp-includes/customize/class-wp-customize-theme-control.php:61 +msgid "Details for theme: %s" +msgstr "Details zu Theme: %s" + +#: wp-includes/customize/class-wp-customize-selective-refresh.php:180 +msgid "Click to edit this element." +msgstr "Klick, zum Bearbeiten dieses Elements." + +#: wp-includes/customize/class-wp-customize-selective-refresh.php:179 +msgid "Click to edit the site title." +msgstr "Klick, zum Bearbeiten des Website-Titels." + +#: wp-includes/customize/class-wp-customize-selective-refresh.php:178 +msgid "Click to edit this widget." +msgstr "Klick, zum Bearbeiten des Widgets." + +#: wp-includes/customize/class-wp-customize-selective-refresh.php:177 +msgid "Click to edit this menu." +msgstr "Klick, zum Bearbeiten des Menüs." + +#: wp-includes/customize/class-wp-customize-custom-css-setting.php:163 +msgid "Markup is not allowed in CSS." +msgstr "Markup ist in CSS nicht erlaubt." + +#: wp-includes/class-wp-xmlrpc-server.php:3797 +msgid "Sorry, the comment could not be updated." +msgstr "Der Kommentar konnte leider nicht bearbeitet werden." + +#: wp-includes/class-wp-xmlrpc-server.php:2731 +msgid "Invalid role." +msgstr "Ungültige Benutzerrolle." + +#: wp-includes/class-wp-xmlrpc-server.php:2351 +msgid "Sorry, you are not allowed to assign this term." +msgstr "Du bist leider nicht berechtigt, diesen Begriff zuzuordnen." + +#: wp-includes/class-wp-xmlrpc-server.php:2271 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:644 +msgid "Sorry, you are not allowed to delete this term." +msgstr "Du bist leider nicht berechtigt, diesen Begriff zu löschen." + +#: wp-includes/class-wp-xmlrpc-server.php:2161 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:362 +#: wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php:543 +msgid "Sorry, you are not allowed to edit this term." +msgstr "Du bist leider nicht berechtigt, diesen Begriff zu bearbeiten." + +#: wp-includes/class-wp-xmlrpc-server.php:2088 +msgid "Sorry, the term could not be created." +msgstr "Der Begriff konnte leider nicht erstellt werden." + +#: wp-includes/class-wp-customize-widgets.php:790 +#: wp-includes/class-wp-customize-widgets.php:846 +msgid "No widgets found." +msgstr "Keine Widgets gefunden." + +#. translators: %d: The number of widgets found. +#: wp-includes/class-wp-customize-widgets.php:789 +msgid "Number of widgets found: %d" +msgstr "Anzahl gefundener Widgets: %d" + +#. translators: 1: Post type name, 2: Error message. +#: wp-includes/class-wp-customize-nav-menus.php:1043 +msgid "%1$s could not be created: %2$s" +msgstr "%1$s konnte nicht erstellt werden: %2$s" + +#: wp-includes/class-wp-customize-nav-menus.php:1038 +msgid "Post" +msgstr "Beitrag" + +#. translators: 1: .mp4, 2: .mov +#: wp-includes/class-wp-customize-manager.php:6040 +msgid "Only %1$s or %2$s files may be used for header video. Please convert your video file and try again, or, upload your video to YouTube and link it with the option below." +msgstr "Nur %1$s- oder %2$s-Dateien können für das Header-Video genutzt werden. Konvertiere bitte deine Video-Datei und versuche es erneut, oder lade dein Video auf YouTube hoch und verlinke es mit der unteren Option." + +#: wp-includes/class-wp-customize-manager.php:6032 +msgid "This video file is too large to use as a header video. Try a shorter video or optimize the compression settings and re-upload a file that is less than 8MB. Or, upload your video to YouTube and link it with the option below." +msgstr "Die Video-Datei ist zu groß, um sie als Header-Video zu verwenden. Versuche es mit einem kürzeren Video oder optimiere die Kompressionseinstellungen und lade eine neue Datei hoch, die weniger als 8 MB groß ist. Oder lade dein Video bei YouTube hoch und verlinke es mit der nachfolgenden Option." + +#: wp-includes/class-wp-customize-manager.php:5991 +msgid "Unrecognized background setting." +msgstr "Nicht erkannte Hintergrund-Einstellung." + +#: wp-includes/class-wp-customize-manager.php:5982 +#: wp-includes/class-wp-customize-manager.php:5986 +msgid "Invalid value for background size." +msgstr "Ungültiger Wert für Größe des Hintergrunds." + +#: wp-includes/class-wp-customize-manager.php:5978 +msgid "Invalid value for background position Y." +msgstr "Ungültiger Wert für Y-Position des Hintergrunds." + +#: wp-includes/class-wp-customize-manager.php:5974 +msgid "Invalid value for background position X." +msgstr "Ungültiger Wert für X-Position des Hintergrunds." + +#: wp-includes/class-wp-customize-manager.php:5970 +msgid "Invalid value for background attachment." +msgstr "Ungültiger Wert für das Verhalten des Hintergrunds." + +#: wp-includes/class-wp-customize-manager.php:5966 +msgid "Invalid value for background repeat." +msgstr "Ungültiger Wert für Wiederholung des Hintergrunds." + +#: wp-includes/class-wp-customize-manager.php:5658 +msgid "Learn more about CSS" +msgstr "Mehr über CSS erfahren (engl.)" + +#: wp-includes/class-wp-customize-manager.php:5694 +msgid "Additional CSS" +msgstr "Zusätzliches CSS" + +#: wp-includes/class-wp-customize-manager.php:5564 +#: wp-admin/includes/class-custom-background.php:449 +msgid "Scroll with Page" +msgstr "Mit Seite mitscrollen" + +#: wp-includes/class-wp-customize-manager.php:5546 +#: wp-admin/includes/class-custom-background.php:441 +msgid "Repeat Background Image" +msgstr "Hintergrundbild wiederholen" + +#: wp-includes/class-wp-customize-manager.php:5523 +#: wp-admin/includes/class-custom-background.php:427 +#: wp-admin/includes/class-custom-background.php:428 +msgid "Image Size" +msgstr "Bildgröße" + +#: wp-includes/customize/class-wp-customize-background-position-control.php:93 +#: wp-includes/class-wp-customize-manager.php:5501 +#: wp-admin/includes/class-custom-background.php:408 +#: wp-admin/includes/class-custom-background.php:409 +msgid "Image Position" +msgstr "Bildposition" + +#: wp-includes/class-wp-customize-manager.php:5473 +msgctxt "Custom Preset" +msgid "Custom" +msgstr "Individuell" + +#: wp-includes/class-wp-customize-manager.php:5472 +msgctxt "Repeat Image" +msgid "Repeat" +msgstr "Wiederholen" + +#: wp-includes/class-wp-customize-manager.php:5471 +#: wp-includes/class-wp-customize-manager.php:5528 +#: wp-admin/includes/class-custom-background.php:431 +msgid "Fit to Screen" +msgstr "Bildschirmpassend" + +#: wp-includes/class-wp-customize-manager.php:5469 +msgctxt "Default Preset" +msgid "Default" +msgstr "Standard" + +#: wp-includes/class-wp-customize-manager.php:5465 +msgctxt "Background Preset" +msgid "Preset" +msgstr "Voreinstellung" + +#: wp-includes/class-wp-customize-manager.php:5388 +msgid "Header Video" +msgstr "Header-Video" + +#. translators: 1: .mp4, 2: Header height in pixels. +#: wp-includes/class-wp-customize-manager.php:5310 +msgid "Upload your video in %1$s format and minimize its file size for best results. Your theme recommends a height of %2$s pixels." +msgstr "Lade dein Video im %1$s-Format hoch und minimiere die Größe, um das beste Ergebnis zu erhalten. Dein Theme empfiehlt eine Höhe von %2$s Pixel." + +#. translators: 1: .mp4, 2: Header width in pixels. +#: wp-includes/class-wp-customize-manager.php:5303 +msgid "Upload your video in %1$s format and minimize its file size for best results. Your theme recommends a width of %2$s pixels." +msgstr "Lade dein Video im %1$s-Format hoch und minimiere die Größe, um das beste Ergebnis zu erhalten. Dein Theme empfiehlt eine Breite von %2$s Pixel." + +#. translators: 1: .mp4, 2: Header size in pixels. +#: wp-includes/class-wp-customize-manager.php:5296 +msgid "Upload your video in %1$s format and minimize its file size for best results. Your theme recommends dimensions of %2$s pixels." +msgstr "Lade dein Video im %1$s-Format hoch und minimiere die Größe, um das beste Ergebnis zu erhalten. Dein Theme empfiehlt eine Größe von %2$s Pixel." + +#: wp-includes/class-wp-customize-manager.php:5289 +msgid "If you add a video, the image will be used as a fallback while the video loads." +msgstr "Falls du ein Video hinzufügst, wird das Bild während des Ladens des Videos als Platzhalter benutzt." + +#: wp-includes/customize/class-wp-customize-themes-section.php:127 +#: wp-includes/customize/class-wp-customize-themes-section.php:128 +#: wp-includes/customize/class-wp-customize-themes-section.php:142 +#: wp-includes/customize/class-wp-customize-themes-section.php:143 +msgid "Search themes…" +msgstr "Suche Themes …" + +#. translators: %s: Theme name. +#: wp-includes/class-wp-customize-manager.php:4905 +msgid "Showing details for theme: %s" +msgstr "Zeige Details für Theme: %s" + +#. translators: %d: Number of themes being displayed, which cannot currently +#. consider singular vs. plural forms. +#: wp-includes/class-wp-customize-manager.php:4903 +msgid "Displaying %d themes" +msgstr "Zeige %d Themes an" + +#. translators: %d: Number of theme search results, which cannot currently +#. consider singular vs. plural forms. +#: wp-includes/class-wp-customize-manager.php:4901 +msgid "%d themes found" +msgstr "%d Themes gefunden" + +#: wp-includes/class-wp-customize-manager.php:4899 +#: wp-admin/network/themes.php:157 +msgid "Are you sure you want to delete this theme?" +msgstr "Bist du sicher, dass du dieses Theme löschen willst?" + +#: wp-includes/class-wp-customize-manager.php:2350 +msgid "Unauthorized to modify setting due to capability." +msgstr "Aufgrund der Benutzerrechte nicht autorisiert, die Einstellung zu verändern." + +#: wp-includes/class-wp-customize-manager.php:2345 +msgid "Setting does not exist or is unrecognized." +msgstr "Einstellung existiert nicht oder wird nicht erkannt." + +#: wp-includes/class-wp-customize-manager.php:2135 +msgid "This form is not live-previewable." +msgstr "Dieses Formular lässt sich nicht in einer Live-Vorschau ansehen." + +#: wp-includes/class-wp-customize-manager.php:2134 +msgid "This link is not live-previewable." +msgstr "Dieser Link lässt sich nicht in einer Live-Vorschau ansehen." + +#: wp-includes/class-wp-customize-manager.php:551 +msgid "Non-existent changeset UUID." +msgstr "Nicht vorhandene Änderungs-Set-UUID." + +#: wp-includes/class-wp-customize-manager.php:524 +msgid "Invalid changeset UUID" +msgstr "Ungültige Änderungs-Set-UUID." + +#: wp-includes/class-wp-customize-control.php:636 +msgid "New page title…" +msgstr "Titel der neuen Seite …" + +#: wp-includes/class-wp-customize-control.php:635 +msgid "New page title" +msgstr "Titel der neuen Seite" + +#: wp-includes/feed.php:588 wp-admin/link-parse-opml.php:77 +#: wp-admin/link-parse-opml.php:78 +msgid "PHP's XML extension is not available. Please contact your hosting provider to enable PHP's XML extension." +msgstr "Die XML-Erweiterung für PHP ist nicht verfügbar. Nimm Kontakt zum Support deines Webhostings auf und bitte darum, dass die XML-Erweiterung für PHP aktiviert wird." + +#. translators: %s: Current user's display name. +#: wp-includes/admin-bar.php:244 +msgid "Howdy, %s" +msgstr "Willkommen, %s" + +#: wp-includes/customize/class-wp-customize-nav-menu-location-control.php:86 +#: wp-admin/nav-menus.php:780 +msgid "Edit selected menu" +msgstr "Ausgewähltes Menü bearbeiten" + +#: wp-includes/class-wp-editor.php:1408 +#: wp-includes/js/dist/format-library.js:1408 +msgid "Warning: the link has been inserted but may have errors. Please test it." +msgstr "Warnung: Der Link wurde eingefügt, könnte aber fehlerhaft sein. Bitte teste ihn." + +#: wp-includes/js/dist/block-editor.js:25280 +#: wp-includes/js/dist/block-editor.js:25421 +#: wp-includes/js/dist/block-editor.js:25426 +#: wp-admin/includes/class-wp-plugin-install-list-table.php:102 +#: wp-admin/includes/class-wp-theme-install-list-table.php:61 +#: wp-admin/includes/file.php:32 wp-admin/js/updates.js:2493 +msgid "Search Results" +msgstr "Suchergebnisse" + +#: wp-includes/class-wp-editor.php:1361 +msgid "Rich Text Area. Press Control-Option-H for help." +msgstr "Rich-Text-Bereich. Drücke Control + Option + H für Hilfe." + +#: wp-includes/script-loader.php:915 +msgid "Use Left/Right Arrow keys to advance one second, Up/Down arrows to advance ten seconds." +msgstr "Benutze die Pfeiltasten Links/Rechts, um 1 Sekunde vorzuspringen, und die Pfeiltasten Hoch/Runter, um 10 Sekunden vorzuspringen." + +#: wp-includes/script-loader.php:917 +msgid "Use Up/Down Arrow keys to increase or decrease volume." +msgstr "Pfeiltasten Hoch/Runter benutzen, um die Lautstärke zu regeln." + +#: wp-includes/script-loader.php:920 +msgid "Volume Slider" +msgstr "Lautstärkeregler" + +#: wp-includes/script-loader.php:922 +msgid "Audio Player" +msgstr "Audio-Player" + +#: wp-includes/script-loader.php:921 +msgid "Video Player" +msgstr "Video-Player" + +#: wp-includes/script-loader.php:914 +msgid "Time Slider" +msgstr "Zeit-Schieberegler" + +#: wp-includes/script-loader.php:913 wp-includes/theme.php:1582 +msgid "Pause" +msgstr "Pause" + +#: wp-includes/script-loader.php:912 wp-includes/theme.php:1583 +msgid "Play" +msgstr "Abspielen" + +#: wp-includes/taxonomy.php:2201 wp-includes/taxonomy.php:2968 +msgid "A name is required for this term." +msgstr "Für diesen Begriff ist ein Name erforderlich." + +#: wp-includes/class-wp-tax-query.php:645 +msgid "Inexistent terms." +msgstr "Nicht vorhandene Begriffe." + +#: wp-includes/class-wp-xmlrpc-server.php:4835 +msgid "Sorry, you are not allowed to access user data on this site." +msgstr "Du bist leider nicht berechtigt, auf Benutzerdaten dieser Website zuzugreifen." + +#: wp-includes/class-wp-xmlrpc-server.php:2968 +#: wp-includes/class-wp-xmlrpc-server.php:3190 wp-admin/includes/post.php:478 +msgid "Sorry, you are not allowed to edit pages." +msgstr "Du bist leider nicht berechtigt, Seiten zu bearbeiten." + +#: wp-includes/class-wp-xmlrpc-server.php:2793 +#: wp-includes/class-wp-xmlrpc-server.php:2843 +msgid "Sorry, you are not allowed to edit your profile." +msgstr "Du bist leider nicht berechtigt, dein Profil zu bearbeiten." + +#: wp-includes/class-wp-xmlrpc-server.php:2650 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:680 +#: wp-admin/user-edit.php:93 wp-admin/user-edit.php:125 +#: wp-admin/user-edit.php:181 wp-admin/users.php:106 wp-admin/users.php:132 +msgid "Sorry, you are not allowed to edit this user." +msgstr "Du bist leider nicht berechtigt, diesen Benutzer zu bearbeiten." + +#: wp-includes/class-wp-theme.php:961 +msgid "Seasonal" +msgstr "Jahreszeitlich" + +#: wp-includes/class-wp-theme.php:960 +msgid "Photoblogging" +msgstr "Foto-Blog" + +#: wp-includes/class-wp-theme.php:958 +msgid "Responsive Layout" +msgstr "Responsives Layout" + +#: wp-includes/class-wp-theme.php:957 +msgid "Fluid Layout" +msgstr "Fließendes Layout" + +#: wp-includes/class-wp-theme.php:956 +msgid "Fixed Layout" +msgstr "Festes Layout" + +#: wp-includes/class-wp-theme.php:954 +msgid "Dark" +msgstr "Dunkel" + +#: wp-includes/class-wp-theme.php:951 +msgid "Tan" +msgstr "Hellbraun" + +#: wp-includes/class-wp-xmlrpc-server.php:2925 +#: wp-includes/class-wp-xmlrpc-server.php:3141 wp-admin/includes/post.php:265 +#: wp-admin/includes/ajax-actions.php:1994 +msgid "Sorry, you are not allowed to edit this page." +msgstr "Du bist leider nicht berechtigt, diese Seite zu bearbeiten." + +#: wp-includes/class-wp-xmlrpc-server.php:3075 +msgid "Sorry, you are not allowed to delete this page." +msgstr "Du bist leider nicht berechtigt, diese Seite zu löschen." + +#: wp-includes/class-wp-xmlrpc-server.php:1780 +#: wp-includes/class-wp-xmlrpc-server.php:5196 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:853 +#: wp-includes/rest-api/endpoints/class-wp-rest-posts-controller.php:901 +msgid "Sorry, you are not allowed to delete this post." +msgstr "Du bist leider nicht berechtigt, diesen Beitrag zu löschen." + +#. translators: %s: Site title. +#: wp-login.php:288 +msgctxt "site" +msgid "← Back to %s" +msgstr "← Zurück zu %s" + +#: wp-includes/wp-db.php:1958 wp-includes/wp-db.php:1964 +msgid "Unable to retrieve the error message from MySQL" +msgstr "Kann die Fehlermeldung von MySQL nicht abrufen" + +#: wp-includes/widgets/class-wp-nav-menu-widget.php:195 +#: wp-includes/customize/class-wp-customize-nav-menu-location-control.php:86 +msgid "Edit Menu" +msgstr "Menü bearbeiten" + +#: wp-includes/script-loader.php:1673 wp-admin/includes/dashboard.php:964 +msgid "Today" +msgstr "Heute" + +#: wp-includes/class-wp-text-diff-renderer-table.php:127 +msgid "Deleted:" +msgstr "Gelöscht:" + +#: wp-login.php:997 wp-admin/install.php:171 wp-admin/user-new.php:566 +#: wp-admin/js/user-profile.js:42 +msgid "Confirm use of weak password" +msgstr "Bestätige die Verwendung eines schwachen Passworts." + +#: wp-includes/script-loader.php:1035 +msgctxt "password strength" +msgid "Password strength unknown" +msgstr "Passwort-Stärke unbekannt" + +#: wp-includes/script-loader.php:666 +#: wp-includes/rest-api/class-wp-rest-server.php:1023 wp-admin/js/tags.js:58 +msgid "Sorry, you are not allowed to do that." +msgstr "Du bist leider nicht berechtigt, diese Aktion durchzuführen." + +#: wp-includes/revision.php:610 +msgid "Sorry, you are not allowed to preview drafts." +msgstr "Du bist leider nicht berechtigt, Entwürfe anzusehen." + +#. translators: Password change notification email subject. %s: Site title. +#: wp-includes/pluggable.php:1924 wp-includes/user.php:2040 +msgid "[%s] Password Changed" +msgstr "[%s] Passwort geändert" + +#. translators: %s: User name. +#: wp-includes/pluggable.php:1916 +msgid "Password changed for user: %s" +msgstr "Passwort geändert für Benutzer: %s" + +#: wp-includes/media-template.php:1437 +msgid "Image crop area preview. Requires mouse interaction." +msgstr "Vorschau des Bereichs „Bilder zuschneiden“. Erfordert Maus-Interaktion." + +#. translators: %s: Documentation URL. +#: wp-includes/formatting.php:4856 +msgid "A structure tag is required when using custom permalinks. Learn more" +msgstr "Um individuelle Permalinks benutzen zu können, ist ein Struktur-Schlagwort erforderlich. Erfahre mehr (engl.)" + +#: wp-includes/class-wp-xmlrpc-server.php:4288 +#: wp-includes/class-wp-xmlrpc-server.php:4341 +#: wp-includes/class-wp-xmlrpc-server.php:6318 +#: wp-admin/includes/ajax-actions.php:2430 +#: wp-admin/includes/ajax-actions.php:2496 wp-admin/async-upload.php:38 +#: wp-admin/upload.php:13 wp-admin/media-new.php:16 +#: wp-admin/media-upload.php:20 +msgid "Sorry, you are not allowed to upload files." +msgstr "Du bist leider nicht berechtigt, Dateien hochzuladen." + +#: wp-includes/class-wp-xmlrpc-server.php:3353 +msgid "Sorry, you are not allowed to add a category." +msgstr "Du bist leider nicht berechtigt, eine Kategorie hinzuzufügen." + +#: wp-includes/class-wp-xmlrpc-server.php:2713 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:204 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:426 +#: wp-includes/rest-api/endpoints/class-wp-rest-users-controller.php:432 +#: wp-admin/users.php:16 +msgid "Sorry, you are not allowed to list users." +msgstr "Du bist leider nicht berechtigt, Benutzer aufzulisten." + +#: wp-includes/script-loader.php:1154 +#: wp-includes/class-wp-customize-setting.php:592 +#: wp-includes/class-wp-customize-manager.php:2373 +msgid "Invalid value." +msgstr "Ungültiger Wert." + +#: wp-includes/script-loader.php:1112 +#: wp-includes/class-wp-customize-manager.php:515 wp-admin/customize.php:18 +msgid "Sorry, you are not allowed to customize this site." +msgstr "Du bist leider nicht berechtigt, diese Website anzupassen." + +#. translators: 1: