diff --git a/.github/workflows/translation.yml b/.github/workflows/translation.yml new file mode 100644 index 000000000..73e1d1eb9 --- /dev/null +++ b/.github/workflows/translation.yml @@ -0,0 +1,51 @@ +name: Translation + +on: + pull_request: + push: + branches: + - main + - develop + +env: + COMPOSE_USER: runner + +jobs: + check-translations: + runs-on: ubuntu-latest + strategy: + matrix: + task: + - translation:contrib-translations:export + - translation:config-translations:export + - translation:module-translations:export + - translation:theme-translations:export + steps: + - uses: actions/checkout@v4 + # https://github.com/actions/checkout/issues/881 + # https://github.com/actions/checkout/issues/504 + # https://github.com/actions/checkout?tab=readme-ov-file#checkout-pull-request-head-commit-instead-of-merge-commit + with: + ref: ${{ github.event.pull_request.head.sha }} + - uses: arduino/setup-task@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Install site + run: | + docker network create frontend + task site-install --yes + + - name: Export translations (${{ matrix.task }}) + run: | + task ${{ matrix.task }} + + # https://github.com/mxschmitt/action-tmate?tab=readme-ov-file#manually-triggered-debug + # Enable tmate debugging if debug logging is enabled (cf. + # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/accessing-contextual-information-about-workflow-runs#runner-context) + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + if: 1 == runner.debug + + - run: | + task translation:translations:diff diff --git a/.gitignore b/.gitignore index 1a6656742..6bc8450a4 100755 --- a/.gitignore +++ b/.gitignore @@ -45,3 +45,5 @@ private-files /playwright/.cache/ config/sync/**/webform.webform.* + +web/*/custom/*/translations/*.*.mo diff --git a/CHANGELOG.md b/CHANGELOG.md index fdda7e5f5..efb8f6b69 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +* [PR-468](https://github.com/itk-dev/hoeringsportal/pull/468) + Added module and theme translations * [PR-428](https://github.com/itk-dev/hoeringsportal/pull/428) Upgraded to PHP 8.4 * [PR-494](https://github.com/itk-dev/hoeringsportal/pull/494) diff --git a/Taskfile.yml b/Taskfile.yml index 255cedf6a..f31364219 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -3,6 +3,54 @@ version: '3' # https://taskfile.dev/usage/#env-files dotenv: ['.env.local', '.env'] +includes: + translation: + taskfile: ./task/Taskfile.translation.yml + vars: + TRANSLATION_MODULES: + # Run `ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this list + - aarhus_hero + + # Only used for development. + # - hoeringsportal_base_fixtures + + - hoeringsportal_citizen_proposal + - hoeringsportal_citizen_proposal_archiving + - hoeringsportal_config_settings + - hoeringsportal_content_access + - hoeringsportal_content_blocks + - hoeringsportal_data + - hoeringsportal_deskpro + - hoeringsportal_forms + - hoeringsportal_hearing + - hoeringsportal_openid_connect + - hoeringsportal_project_timeline + - hoeringsportal_public_meeting + - hoeringsportal_quicklinks + - hoeringsportal_test_delta_sync_fixtures + + - itk_admin + - itk_admin_links + + # - itk_media_entity + # - migrate_subject_data + + TRANSLATION_THEMES: + # Run `ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this [] + - hoeringsportal + + # - hoeringsportal_admin + + TRANSLATION_LANGUAGES: + - da + + # During testing and development, you can override TRANSLATION_MODULES and TRANSLATION_THEMES to not process all modules and themes, e.g. + # + # TRANSLATION_MODULES: + # - hoeringsportal_citizen_proposal + # + # TRANSLATION_THEMES: [] + vars: # https://taskfile.dev/reference/templating/ BASE_URL: '{{.TASK_BASE_URL | default .COMPOSE_SERVER_DOMAIN | default .COMPOSE_DOMAIN | default "https://hoeringsportal.local.itkdev.dk"}}' @@ -26,10 +74,10 @@ tasks: - task compose -- pull - task compose-up - task composer-install + - task assets-build - task drush -- --yes site:install --existing-config - - task: translations:import + - task: translation:import - task drush -- --yes cache:rebuild - - task assets-build - task site-open - task site-open-admin silent: true @@ -41,7 +89,7 @@ tasks: - task composer-install - task assets-build - task drush -- deploy - - task: translations:import + - task: translation:import - task drush -- --yes cache:rebuild silent: true @@ -52,12 +100,13 @@ tasks: site-open: cmds: - - if command -v open 2>&1 >/dev/null; then open "$(task site-url)"; else echo "$(task site-url)"; fi + # `open` is defined in GitHub Actions (ubuntu-latest), but cannot actually be run without error. Therefore we add `|| true` to prevent errors. + - if command -v open 2>&1 >/dev/null; then open "$(task site-url)" || true; else echo "$(task site-url)"; fi silent: true site-open-admin: cmds: - - if command -v open 2>&1 >/dev/null; then open "{{.URL}}"; else echo "{{.URL}}"; fi + - if command -v open 2>&1 >/dev/null; then open "{{.URL}}" || true; else echo "{{.URL}}"; fi vars: URL: sh: task drush -- user:login --no-browser @@ -241,20 +290,3 @@ tasks: - task drush -- --yes pm:uninstall content_fixtures - task compose-up silent: true - - translations:import: - cmds: - - task compose -- exec phpfpm bash -c '(cd web && ../vendor/bin/drush locale:import --type=customized --override=all da ../translations/custom-translations.da.po)' - - task drush -- php:eval "var_export(\Drupal::state()->get('locale.translation.formulae', []))" - - 'task drush -- php:eval "var_export(array_map(static fn (\$count) => (new \Drupal\Core\StringTranslation\PluralTranslatableMarkup(\$count, ''1 item'', ''@count items'', options: [''langcode'' => ''da'']))->render(), range(0, 5)));"' - - 'task drush -- php:eval "var_export(array_map(static fn (\$count) => (new \Drupal\Core\StringTranslation\PluralTranslatableMarkup(\$count, ''1 item'', ''@count items'', options: [''langcode'' => ''en'']))->render(), range(0, 5)));"' - silent: true - - translations:export: - cmds: - - task compose -- exec phpfpm bash -c '(cd web && ../vendor/bin/drush locale:export da --types=customized > ../translations/custom-translations.da.po)' - # Fix plurals spec in PO file - # https://drupalsun.com/eelke/2020/08/17/tale-mistranslated-plurals - # https://www.drupal.org/project/drupal/issues/3496223 - - 'task compose -- exec phpfpm sed -i "s/Plural-Forms: nplurals=2; plural=(n > 1);/Plural-Forms: nplurals=2; plural=(n != 1);/" translations/custom-translations.da.po' - silent: true diff --git a/composer.json b/composer.json index 3a79ba53f..ab093c18f 100755 --- a/composer.json +++ b/composer.json @@ -25,6 +25,7 @@ "drupal/color_field": "^3.0", "drupal/config_ignore": "^3.2", "drupal/config_import_locale": "^2.0", + "drupal/config_translation_po": "dev-3439416-added-drush-command", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "^10.0", "drupal/core-project-message": "^10.0", @@ -84,6 +85,7 @@ "drupal/content_fixtures": "dev-3498162-not-compatible-with", "drupal/core-dev": "^10.0", "drupal/masquerade": "^2.0", + "drupal/potx": "^1.1", "drupal/webprofiler": "^10.3", "ergebnis/composer-normalize": "^2.44", "mglaman/phpstan-drupal": "^1.1", @@ -102,7 +104,10 @@ }, "drupal": { "type": "composer", - "url": "https://packages.drupal.org/8" + "url": "https://packages.drupal.org/8", + "exclude": [ + "drupal/config_translation_po" + ] }, "asset-packagist": { "type": "composer", @@ -188,6 +193,10 @@ "reference": "hotfix/change-psr-log-dependency" } } + }, + "drupal/config_translation_po": { + "type": "git", + "url": "https://git.drupalcode.org/issue/config_translation_po-3439416.git" } }, "minimum-stability": "dev", diff --git a/composer.lock b/composer.lock index 2cdf3d2e0..5d28ac2d0 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "011c619e270a8c6ec460201a588ce374", + "content-hash": "fc20525da9052632a9aed5a22432d744", "packages": [ { "name": "asm89/stack-cors", @@ -2249,6 +2249,32 @@ "source": "https://git.drupalcode.org/project/config_import_locale" } }, + { + "name": "drupal/config_translation_po", + "version": "dev-3439416-added-drush-command", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/issue/config_translation_po-3439416.git", + "reference": "327e06a6c8485642b62a4f73c0681971fca60fb8" + }, + "require-dev": { + "drupal/coder": "^8.3" + }, + "type": "drupal-module", + "license": [ + "GPL-2.0-or-later" + ], + "description": "Configuration Translations to po file", + "homepage": "https://www.drupal.org/project/config_translation_po", + "keywords": [ + "Drupal" + ], + "support": { + "issues": "https://www.drupal.org/project/issues/config_translation_po", + "source": "https://git.drupalcode.org/project/config_translation_po" + }, + "time": "2025-03-31T10:26:37+00:00" + }, { "name": "drupal/core", "version": "10.4.6", @@ -5758,16 +5784,16 @@ }, { "name": "drush/drush", - "version": "13.5.1", + "version": "13.6.0", "source": { "type": "git", "url": "https://github.com/drush-ops/drush.git", - "reference": "16076b24532eb27aaf9e2b8bca1e05a74871c713" + "reference": "570a05dce7aea9770f17306808804290764127ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/drush-ops/drush/zipball/16076b24532eb27aaf9e2b8bca1e05a74871c713", - "reference": "16076b24532eb27aaf9e2b8bca1e05a74871c713", + "url": "https://api.github.com/repos/drush-ops/drush/zipball/570a05dce7aea9770f17306808804290764127ad", + "reference": "570a05dce7aea9770f17306808804290764127ad", "shasum": "" }, "require": { @@ -5894,7 +5920,7 @@ "issues": "https://github.com/drush-ops/drush/issues", "security": "https://github.com/drush-ops/drush/security/advisories", "slack": "https://drupal.slack.com/messages/C62H9CWQM", - "source": "https://github.com/drush-ops/drush/tree/13.5.1" + "source": "https://github.com/drush-ops/drush/tree/13.6.0" }, "funding": [ { @@ -5902,7 +5928,7 @@ "type": "github" } ], - "time": "2025-04-04T11:38:40+00:00" + "time": "2025-04-22T12:14:13+00:00" }, { "name": "egulias/email-validator", @@ -15155,6 +15181,63 @@ "irc": "irc://irc.freenode.org/drupal-contribute" } }, + { + "name": "drupal/potx", + "version": "1.1.0", + "source": { + "type": "git", + "url": "https://git.drupalcode.org/project/potx.git", + "reference": "8.x-1.1" + }, + "dist": { + "type": "zip", + "url": "https://ftp.drupal.org/files/projects/potx-8.x-1.1.zip", + "reference": "8.x-1.1", + "shasum": "59657c40cb0427edd6644b301441625cc5a57e35" + }, + "require": { + "drupal/core": "^8 || ^9 || ^10 || ^11" + }, + "type": "drupal-module", + "extra": { + "drupal": { + "version": "8.x-1.1", + "datestamp": "1720516288", + "security-coverage": { + "status": "covered", + "message": "Covered by Drupal's security advisory policy" + } + }, + "drush": { + "services": { + "drush.services.yml": "^9" + } + } + }, + "notification-url": "https://packages.drupal.org/8/downloads", + "license": [ + "GPL" + ], + "authors": [ + { + "name": "Gábor Hojtsy", + "homepage": "https://www.drupal.org/user/4166" + }, + { + "name": "herom", + "homepage": "https://www.drupal.org/user/1866898" + }, + { + "name": "penyaskito", + "homepage": "https://www.drupal.org/user/959536" + } + ], + "description": "Translation template extractor", + "homepage": "https://www.drupal.org/project/potx", + "support": { + "source": "https://git.drupalcode.org/project/potx" + } + }, { "name": "drupal/tracer", "version": "1.0.4", @@ -20497,6 +20580,7 @@ "minimum-stability": "dev", "stability-flags": { "chx/drupal-issue-fork": 20, + "drupal/config_translation_po": 20, "drupal/content_fixtures": 20, "drupal/email_registration": 5, "drupal/entityqueue": 15, diff --git a/config/sync/core.extension.yml b/config/sync/core.extension.yml index 0a31476df..69f32184e 100644 --- a/config/sync/core.extension.yml +++ b/config/sync/core.extension.yml @@ -19,6 +19,8 @@ module: config: 0 config_ignore: 0 config_import_locale: 0 + config_translation: 0 + config_translation_po: 0 crop: 0 csv_serialization: 0 ctools: 0 diff --git a/config/sync/language/da/block.block.hoeringsportal_branding.yml b/config/sync/language/da/block.block.hoeringsportal_branding.yml new file mode 100644 index 000000000..58bb8978e --- /dev/null +++ b/config/sync/language/da/block.block.hoeringsportal_branding.yml @@ -0,0 +1,2 @@ +settings: + label: 'Aarhus kommune' diff --git a/config/sync/language/da/block.block.hoeringsportal_messages.yml b/config/sync/language/da/block.block.hoeringsportal_messages.yml new file mode 100644 index 000000000..2a18c9702 --- /dev/null +++ b/config/sync/language/da/block.block.hoeringsportal_messages.yml @@ -0,0 +1,2 @@ +settings: + label: 'Status messages' diff --git a/config/sync/language/da/core.entity_view_mode.block.token.yml b/config/sync/language/da/core.entity_view_mode.block.token.yml new file mode 100644 index 000000000..b6d03962d --- /dev/null +++ b/config/sync/language/da/core.entity_view_mode.block.token.yml @@ -0,0 +1 @@ +label: Token diff --git a/config/sync/language/da/core.entity_view_mode.entity_subqueue.token.yml b/config/sync/language/da/core.entity_view_mode.entity_subqueue.token.yml new file mode 100644 index 000000000..b6d03962d --- /dev/null +++ b/config/sync/language/da/core.entity_view_mode.entity_subqueue.token.yml @@ -0,0 +1 @@ +label: Token diff --git a/config/sync/language/da/core.entity_view_mode.file.token.yml b/config/sync/language/da/core.entity_view_mode.file.token.yml new file mode 100644 index 000000000..b6d03962d --- /dev/null +++ b/config/sync/language/da/core.entity_view_mode.file.token.yml @@ -0,0 +1 @@ +label: Token diff --git a/config/sync/language/da/core.entity_view_mode.user.token.yml b/config/sync/language/da/core.entity_view_mode.user.token.yml new file mode 100644 index 000000000..b6d03962d --- /dev/null +++ b/config/sync/language/da/core.entity_view_mode.user.token.yml @@ -0,0 +1 @@ +label: Token diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.update.status_notify.yml b/config/sync/language/da/symfony_mailer.mailer_policy.update.status_notify.yml new file mode 100644 index 000000000..d50b1ecc7 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.update.status_notify.yml @@ -0,0 +1,18 @@ +configuration: + email_body: + content: + value: |- +

You need to take action to secure your server {{ site_name }}.

+ + +

See the available updates page for more information. + {% if update_manager %} + You can automatically install your updates using the Update manager. + {% endif %} + You can change your settings for what update notifications you receive.

+ email_subject: + value: 'New release(s) available for {{ site_name }}' diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.cancel_confirm.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.cancel_confirm.yml new file mode 100644 index 000000000..32aa783a0 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.cancel_confirm.yml @@ -0,0 +1,10 @@ +configuration: + email_subject: + value: 'Account cancellation request for [user:display-name] at [site:name]' + email_body: + content: + value: |- +

[user:display-name],

+

A request has been made to cancel your account at [site:name]. + You may now use this link to cancel your account.

+

Note: The cancellation of your account is not reversible. This link expires in one day and nothing will happen if it is not used.

\ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.password_reset.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.password_reset.yml new file mode 100644 index 000000000..81e1f03cb --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.password_reset.yml @@ -0,0 +1,10 @@ +configuration: + email_subject: + value: 'Replacement login information for [user:display-name] at [site:name]' + email_body: + content: + value: |- +

[user:display-name],

+

A request has been made to reset the password for your account at [site:name]. + You may now use this link to log in. + This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.

\ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.register_admin_created.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_admin_created.yml new file mode 100644 index 000000000..277d7fed1 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_admin_created.yml @@ -0,0 +1,15 @@ +configuration: + email_subject: + value: 'An administrator created an account for you at [site:name]' + email_body: + content: + value: |- +

[user:display-name],

+

A site administrator at [site:name] has created an account for you. + You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

+ +

After setting your password, you will be able to log in in the future using:

+ \ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.register_no_approval_required.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_no_approval_required.yml new file mode 100644 index 000000000..09254101e --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_no_approval_required.yml @@ -0,0 +1,15 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name]' + email_body: + content: + value: |- +

[user:display-name],

+

Thank you for registering at [site:name]. + You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

+ +

After setting your password, you will be able to log in in the future using:

+ \ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval.yml new file mode 100644 index 000000000..cab9bc12c --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval.yml @@ -0,0 +1,10 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name] (pending admin approval)' + email_body: + content: + value: |- +

[user:display-name],

+

Thank you for registering at [site:name]. + Your application for an account is currently pending approval. + Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.

\ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval_admin.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval_admin.yml new file mode 100644 index 000000000..b75a78333 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval_admin.yml @@ -0,0 +1,8 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name] (pending admin approval)' + email_body: + content: + value: |- +

[user:display-name] has applied for an account at [site:name]. + You may now use this link to approve the request.

\ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.status_activated.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_activated.yml new file mode 100644 index 000000000..9ff41ac6f --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_activated.yml @@ -0,0 +1,15 @@ +configuration: + email_subject: + value: 'Your account details for [user:display-name] at [site:name] ([site:url])' + email_body: + content: + value: |- +

[user:display-name],

+

Your account at [site:name] has been activated. + You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

+ +

After setting your password, you will be able to log in in the future using:

+ \ No newline at end of file diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.status_blocked.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_blocked.yml new file mode 100644 index 000000000..415b066e2 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_blocked.yml @@ -0,0 +1,10 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name] (blocked)' + email_body: + content: + value: |- +

[user:display-name],

+

Your account on [site:name] has been blocked.

+ email_skip_sending: + message: 'Notification disabled in settings' diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user.status_canceled.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_canceled.yml new file mode 100644 index 000000000..a0aa04a29 --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user.status_canceled.yml @@ -0,0 +1,10 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name] (canceled)' + email_body: + content: + value: |- +

[user:display-name],

+

Your account on [site:name] has been canceled.

+ email_skip_sending: + message: 'Notification disabled in settings' diff --git a/config/sync/language/da/symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass.yml b/config/sync/language/da/symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass.yml new file mode 100644 index 000000000..1a59a3e4a --- /dev/null +++ b/config/sync/language/da/symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass.yml @@ -0,0 +1,13 @@ +configuration: + email_subject: + value: 'Account details for [user:display-name] at [site:name]' + email_body: + content: + value: |- +

[user:display-name],

+

Thank you for registering at [site:name]. + You may now use this link to log in. It can be used only once and you will be able to log in in the future using:

+ \ No newline at end of file diff --git a/config/translations/config.da.po b/config/translations/config.da.po new file mode 100644 index 000000000..cd871473b --- /dev/null +++ b/config/translations/config.da.po @@ -0,0 +1,7636 @@ +# da translation of Deltag Aarhus – Aarhus kommune +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 16:25+0200\n" +"PO-Revision-Date: 2025-04-23 16:25+0200\n" +"Last-Translator: NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\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" + +msgctxt "core.entity_form_display.node.hearing.default:content:field_hearing_ticket_add:settings:placeholder_title" +msgid " " +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:sid:label" +msgid "#" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sid:label" +msgid "#" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sid:label" +msgid "#" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sid:label" +msgid "#" +msgstr "" + +msgctxt "field.storage.node.field_teaser_color:settings:format" +msgid "#HEXHEX" +msgstr "" + +msgctxt "field.storage.taxonomy_term.field_timeline_item_color:settings:format" +msgid "#HEXHEX" +msgstr "" + +msgctxt "webform.webform_options.employment_status:options" +msgid "" +"'Full Time': 'Full Time'\n" +"'Part Time': 'Part Time'\n" +"'Military': 'Military'\n" +"Unemployed: Unemployed\n" +"Retired: Retired\n" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:fields:nid:alter:text" +msgid "(Indholds ID: {{ nid }})" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:filter:field_project_category_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:filter:field_project_category_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle\n" +"Afsluttet|Afsluttede\n" +"I gang|Aktive" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle\n" +"Afsluttet|Afsluttede\n" +"I gang|Aktive" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle\n" +"Afsluttet|Afstemning afsluttet\n" +"I gang|Afstemning aktiv\n" +"Kommende|" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\n" +"- Enhver -|Alle\n" +"Afsluttet|Afstemning afsluttet\n" +"I gang|Afstemning aktiv\n" +"Kommende|" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:filter:field_type_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle typer\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:filter:field_type_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle typer\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:filter:field_type_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle typer\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:filter:field_type_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle typer\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vis alle områder" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vis alle områder" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vis alle områder" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vis alle områder" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vælg område" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\n" +"- Enhver -|Vælg område" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Enhver -|Alle\n" +"Afsluttet|Afsluttede\n" +"Kommende|Aktive" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Enhver -|Alle\n" +"Afsluttet|Afsluttede\n" +"Kommende|Aktive" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette" +msgid "1" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette_only" +msgid "1" +msgstr "" + +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette" +msgid "1" +msgstr "" + +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette_only" +msgid "1" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:uid:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" +msgid "1@count" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:count:format_plural_string" +msgid "1 place@count places" +msgstr "" + +msgctxt "webform.webform_options.likert_ten_scale:options" +msgid "" +"1: 1\n" +"2: 2\n" +"3: 3\n" +"4: 4\n" +"5: 5\n" +"6: 6\n" +"7: 7\n" +"8: 8\n" +"9: 9\n" +"10: 10\n" +msgstr "" + +msgctxt "webform.webform_options.likert_would_you:options" +msgid "" +"1: Definitely Not\n" +"2: Probably Not\n" +"3: Not Sure\n" +"4: Probably\n" +"5: Definitely\n" +msgstr "" + +msgctxt "webform.webform_options.likert_comparison:options" +msgid "" +"1: Much Worse\n" +"2: Somewhat Worse\n" +"3: About the Same\n" +"4: Somewhat Better\n" +"5: Much Better\n" +msgstr "" + +msgctxt "webform.webform_options.likert_importance:options" +msgid "" +"1: Not at all Important\n" +"2: Somewhat Important\n" +"3: Neutral\n" +"4: Important\n" +"5: Very Important\n" +msgstr "" + +msgctxt "webform.webform_options.likert_quality:options" +msgid "" +"1: Poor\n" +"2: Fair\n" +"3: Good\n" +"4: Very good\n" +"5: Excellent\n" +msgstr "" + +msgctxt "webform.webform_options.likert_agreement:options" +msgid "" +"1: Strongly Disagree\n" +"2: Disagree\n" +"3: Neutral\n" +"4: Agree\n" +"5: Strongly Agree\n" +msgstr "" + +msgctxt "webform.webform_options.likert_satisfaction:options" +msgid "" +"1: Very Unsatisfied\n" +"2: Unsatisfied\n" +"3: Neutral\n" +"4: Satisfied\n" +"5: Very Satisfied\n" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:1:title" +msgid "300 Multiple Choices" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:2:title" +msgid "301 Moved Permanently" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:3:title" +msgid "302 Found" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:4:title" +msgid "303 See Other" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:5:title" +msgid "304 Not Modified" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:6:title" +msgid "305 Use Proxy" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:7:title" +msgid "307 Temporary Redirect" +msgstr "" + +msgctxt "webform.settings:settings:default_preview_prev_button_label" +msgid "< Previous" +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_prev_button_label" +msgid "< Previous" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_body:content:value" +msgid "" +"

You have mail

\n" +"

This is a test email from [site:name].

\n" +"

Have a great {{ day }}!

\n" +"

\n" +" Drupal Symfony Mailer\n" +"

" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:page_1:display_options:empty:area_text_custom:content" +msgid "

Dette borgerforslag har endnu ingen støtter.

" +msgstr "" + +msgctxt "webform.settings:mail:default_body_html" +msgid "" +"

Submitted on [webform_submission:created]

\n" +"

Submitted by: [webform_submission:user]

\n" +"

Submitted values are:

\n" +"[webform_submission:values]\n" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_body:content:value" +msgid "" +"

You need to take action to secure your server {{ site_name }}.

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

See the available updates page for more information.\n" +"{% if update_manager %}\n" +" You can automatically install your updates using the Update manager.\n" +"{% endif %}\n" +"You can change your settings for what update notifications you receive.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval_admin:configuration:email_body:content:value" +msgid "" +"

[user:display-name] has applied for an account at [site:name].\n" +"You may now use this link to approve the request.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.cancel_confirm:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

A request has been made to cancel your account at [site:name].\n" +"You may now use this link to cancel your account.

\n" +"

Note: The cancellation of your account is not reversible. This link expires in one day and nothing will happen if it is not used.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

A request has been made to reset the password for your account at [site:name].\n" +"You may now use this link to log in.\n" +"This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_admin_created:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

A site administrator at [site:name] has created an account for you.\n" +"You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

\n" +"\n" +"

After setting your password, you will be able to log in in the future using:

\n" +"" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_no_approval_required:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Thank you for registering at [site:name].\n" +"You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

\n" +"\n" +"

After setting your password, you will be able to log in in the future using:

\n" +"" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Thank you for registering at [site:name].\n" +"You may now use this link to log in. It can be used only once and you will be able to log in in the future using:

\n" +"" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Thank you for registering at [site:name].\n" +"Your application for an account is currently pending approval.\n" +"Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_activated:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Your account at [site:name] has been activated.\n" +"You may now use this link to log in. It can be used only once and will lead you to a page where you can set your password.

\n" +"\n" +"

After setting your password, you will be able to log in in the future using:

\n" +"" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Your account on [site:name] has been blocked.

" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_body:content:value" +msgid "" +"

[user:display-name],

\n" +"

Your account on [site:name] has been canceled.

" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "" + +msgctxt "media.type.document:description" +msgid "A document to be stored in the media library" +msgstr "" + +msgctxt "field.field.paragraph.links_on_a_background_image.field_links_list:description" +msgid "A list of links. Possibility of showing an icon and/or a decorative arrow." +msgstr "" + +msgctxt "webform.settings:settings:default_draft_loaded_message" +msgid "A partially-completed form was found. Please complete the remaining portions." +msgstr "" + +msgctxt "webform.webform_options.province_codes:options" +msgid "" +"AB: Alberta\n" +"BC: 'British Columbia'\n" +"MB: Manitoba\n" +"NB: 'New Brunswick'\n" +"NL: 'Newfoundland and Labrador'\n" +"NS: 'Nova Scotia'\n" +"NT: 'Northwest Territories'\n" +"NU: Nunavut\n" +"'ON': Ontario\n" +"PE: 'Prince Edward Island'\n" +"QC: Quebec\n" +"SK: Saskatchewan\n" +"YT: Yukon\n" +msgstr "" + +msgctxt "webform.webform_options.state_province_codes:options" +msgid "" +"AL: Alabama\n" +"AK: Alaska\n" +"AS: 'American Samoa'\n" +"AZ: Arizona\n" +"AR: Arkansas\n" +"AE: 'Armed Forces (Canada, Europe, Africa, or Middle East)'\n" +"AA: 'Armed Forces Americas'\n" +"AP: 'Armed Forces Pacific'\n" +"CA: California\n" +"CO: Colorado\n" +"CT: Connecticut\n" +"DE: Delaware\n" +"DC: 'District of Columbia'\n" +"FM: 'Federated States of Micronesia'\n" +"FL: Florida\n" +"GA: Georgia\n" +"GU: Guam\n" +"HI: Hawaii\n" +"ID: Idaho\n" +"IL: Illinois\n" +"IN: Indiana\n" +"IA: Iowa\n" +"KS: Kansas\n" +"KY: Kentucky\n" +"LA: Louisiana\n" +"ME: Maine\n" +"MH: 'Marshall Islands'\n" +"MD: Maryland\n" +"MA: Massachusetts\n" +"MI: Michigan\n" +"MN: Minnesota\n" +"MS: Mississippi\n" +"MO: Missouri\n" +"MT: Montana\n" +"NE: Nebraska\n" +"NV: Nevada\n" +"NH: 'New Hampshire'\n" +"NJ: 'New Jersey'\n" +"NM: 'New Mexico'\n" +"NY: 'New York'\n" +"NC: 'North Carolina'\n" +"ND: 'North Dakota'\n" +"MP: 'Northern Mariana Islands'\n" +"OH: Ohio\n" +"OK: Oklahoma\n" +"OR: Oregon\n" +"PW: Palau\n" +"PA: Pennsylvania\n" +"PR: 'Puerto Rico'\n" +"RI: 'Rhode Island'\n" +"SC: 'South Carolina'\n" +"SD: 'South Dakota'\n" +"TN: Tennessee\n" +"TX: Texas\n" +"UT: Utah\n" +"VT: Vermont\n" +"VI: 'Virgin Islands'\n" +"VA: Virginia\n" +"WA: Washington\n" +"WV: 'West Virginia'\n" +"WI: Wisconsin\n" +"WY: Wyoming\n" +"AB: Alberta\n" +"BC: 'British Columbia'\n" +"MB: Manitoba\n" +"NB: 'New Brunswick'\n" +"NL: 'Newfoundland and Labrador'\n" +"NS: 'Nova Scotia'\n" +"NT: 'Northwest Territories'\n" +"NU: Nunavut\n" +"'ON': Ontario\n" +"PE: 'Prince Edward Island'\n" +"QC: Quebec\n" +"SK: Saskatchewan\n" +"YT: Yukon\n" +msgstr "" + +msgctxt "webform.webform_options.state_codes:options" +msgid "" +"AL: Alabama\n" +"AK: Alaska\n" +"AZ: Arizona\n" +"AR: Arkansas\n" +"CA: California\n" +"CO: Colorado\n" +"CT: Connecticut\n" +"DE: Delaware\n" +"DC: 'District of Columbia'\n" +"FL: Florida\n" +"GA: Georgia\n" +"GU: Guam\n" +"HI: Hawaii\n" +"ID: Idaho\n" +"IL: Illinois\n" +"IN: Indiana\n" +"IA: Iowa\n" +"KS: Kansas\n" +"KY: Kentucky\n" +"LA: Louisiana\n" +"ME: Maine\n" +"MD: Maryland\n" +"MA: Massachusetts\n" +"MI: Michigan\n" +"MN: Minnesota\n" +"MS: Mississippi\n" +"MO: Missouri\n" +"MT: Montana\n" +"NE: Nebraska\n" +"NV: Nevada\n" +"NH: 'New Hampshire'\n" +"NJ: 'New Jersey'\n" +"NM: 'New Mexico'\n" +"NY: 'New York'\n" +"NC: 'North Carolina'\n" +"ND: 'North Dakota'\n" +"OH: Ohio\n" +"OK: Oklahoma\n" +"OR: Oregon\n" +"PA: Pennsylvania\n" +"RI: 'Rhode Island'\n" +"SC: 'South Carolina'\n" +"SD: 'South Dakota'\n" +"TN: Tennessee\n" +"TX: Texas\n" +"UT: Utah\n" +"VT: Vermont\n" +"VA: Virginia\n" +"WA: Washington\n" +"WV: 'West Virginia'\n" +"WI: Wisconsin\n" +"WY: Wyoming\n" +msgstr "" + +msgctxt "block.block.aarhushero:settings:label" +msgid "Aarhus hero" +msgstr "" + +msgctxt "block.block.hoeringsportal_branding:settings:label" +msgid "Aarhus kommune" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_abstract:label" +msgid "Abstract" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:label" +msgid "Abstract" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.cancel_confirm:configuration:email_subject:value" +msgid "Account cancellation request for [user:display-name] at [site:name]" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_no_approval_required:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name]" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name]" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (pending admin approval)" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval_admin:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (pending admin approval)" +msgstr "" + +msgctxt "webform.webform_options.industry:options" +msgid "" +"Accounting/Finance: Accounting/Finance\n" +"Advertising/Public Relations: Advertising/Public Relations\n" +"Aerospace/Aviation: Aerospace/Aviation\n" +"Arts/Entertainment/Publishing: Arts/Entertainment/Publishing\n" +"Automotive: Automotive\n" +"Banking/Mortgage: Banking/Mortgage\n" +"Business Development: Business Development\n" +"Business Opportunity: Business Opportunity\n" +"Clerical/Administrative: Clerical/Administrative\n" +"Construction/Facilities: Construction/Facilities\n" +"Consumer Goods: Consumer Goods\n" +"Customer Service: Customer Service\n" +"Education/Training: Education/Training\n" +"Energy/Utilities: Energy/Utilities\n" +"Engineering: Engineering\n" +"Government/Military: Government/Military\n" +"Healthcare: Healthcare\n" +"Hospitality/Travel: Hospitality/Travel\n" +"Human Resources: Human Resources\n" +"Installation/Maintenance: Installation/Maintenance\n" +"Insurance: Insurance\n" +"Internet: Internet\n" +"Law Enforcement/Security: Law Enforcement/Security\n" +"Legal: Legal\n" +"Management/Executive: Management/Executive\n" +"Manufacturing/Operations: Manufacturing/Operations\n" +"Marketing: Marketing\n" +"Non-Profit/Volunteer: Non-Profit/Volunteer\n" +"Pharmaceutical/Biotech: Pharmaceutical/Biotech\n" +"Professional Services: Professional Services\n" +"Real Estate: Real Estate\n" +"Restaurant/Food Service: Restaurant/Food Service\n" +"Retail: Retail\n" +"Sales: Sales\n" +"Science/Research: Science/Research\n" +"Skilled Labor: Skilled Labor\n" +"Technology: Technology\n" +"Telecommunications: Telecommunications\n" +"Transportation/Logistics: Transportation/Logistics\n" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Active" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Active" +msgstr "" + +msgctxt "system.action.user_add_role_action.administrator:label" +msgid "Add the Administrator role to the selected user(s)" +msgstr "" + +msgctxt "system.action.user_add_role_action.citizen_proposal_editor:label" +msgid "Add the Citizen proposal editor role to the selected user(s)" +msgstr "" + +msgctxt "system.action.user_add_role_action.project_editor:label" +msgid "Add the Project editor role to the selected user(s)" +msgstr "" + +msgctxt "system.action.user_add_role_action.hearing_editor:label" +msgid "Add the hearing editor role to the selected user(s)" +msgstr "" + +msgctxt "system.action.user_add_role_action.public_meeting_editor:label" +msgid "Add the public meeting editor role to the selected user(s)" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_address:label" +msgid "Address" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:display_description" +msgid "Administer submissions." +msgstr "" + +msgctxt "block.block.stark_admin:settings:label" +msgid "Administration" +msgstr "" + +msgctxt "system.menu.admin:label" +msgid "Administration" +msgstr "" + +msgctxt "user.role.administrator:label" +msgid "Administrator" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:label" +msgid "Advanced queue jobs" +msgstr "" + +msgctxt "core.base_field_override.node.hearing.promote:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "core.base_field_override.node.landing_page.promote:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "core.base_field_override.node.project.promote:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "core.base_field_override.node.static_page.promote:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:off_label" +msgid "Afbrudt" +msgstr "" + +msgctxt "field.field.node.hearing.field_deskpro_department_id:label" +msgid "Afdeling" +msgstr "" + +msgctxt "taxonomy.vocabulary.department:name" +msgid "Afdeling" +msgstr "" + +msgctxt "taxonomy.vocabulary.department:description" +msgid "Afdeling (Magistrat) for brugere og indhold" +msgstr "" + +msgctxt "system.action.node_unpublish_action:label" +msgid "Afpubliceer indhold" +msgstr "" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:2:label" +msgid "Afsluttet" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:2:title" +msgid "Afsluttet" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_vote_end:label" +msgid "Afstemning afslutningsdato" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_vote_start:label" +msgid "Afstemning start" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" +msgid "Afstemning start" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" +msgid "Afstemning start" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Afstemning start Desc|Nyeste\n" +"Afstemning start Asc|Ældste" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Afstemning start Desc|Nyeste\n" +"Afstemning start Asc|Ældste" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Aktiv" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Aktiv" +msgstr "" + +msgctxt "webform.webform_options.state_province_names:options" +msgid "" +"Alabama: Alabama\n" +"Alaska: Alaska\n" +"'American Samoa': 'American Samoa'\n" +"Arizona: Arizona\n" +"Arkansas: Arkansas\n" +"'Armed Forces (Canada, Europe, Africa, or Middle East)': 'Armed Forces (Canada, Europe, Africa, or Middle East)'\n" +"'Armed Forces Americas': 'Armed Forces Americas'\n" +"'Armed Forces Pacific': 'Armed Forces Pacific'\n" +"California: California\n" +"Colorado: Colorado\n" +"Connecticut: Connecticut\n" +"Delaware: Delaware\n" +"'District of Columbia': 'District of Columbia'\n" +"'Federated States of Micronesia': 'Federated States of Micronesia'\n" +"Florida: Florida\n" +"Georgia: Georgia\n" +"Guam: Guam\n" +"Hawaii: Hawaii\n" +"Idaho: Idaho\n" +"Illinois: Illinois\n" +"Indiana: Indiana\n" +"Iowa: Iowa\n" +"Kansas: Kansas\n" +"Kentucky: Kentucky\n" +"Louisiana: Louisiana\n" +"Maine: Maine\n" +"'Marshall Islands': 'Marshall Islands'\n" +"Maryland: Maryland\n" +"Massachusetts: Massachusetts\n" +"Michigan: Michigan\n" +"Minnesota: Minnesota\n" +"Mississippi: Mississippi\n" +"Missouri: Missouri\n" +"Montana: Montana\n" +"Nebraska: Nebraska\n" +"Nevada: Nevada\n" +"'New Hampshire': 'New Hampshire'\n" +"'New Jersey': 'New Jersey'\n" +"'New Mexico': 'New Mexico'\n" +"'New York': 'New York'\n" +"'North Carolina': 'North Carolina'\n" +"'North Dakota': 'North Dakota'\n" +"'Northern Mariana Islands': 'Northern Mariana Islands'\n" +"Ohio: Ohio\n" +"Oklahoma: Oklahoma\n" +"Oregon: Oregon\n" +"Palau: Palau\n" +"Pennsylvania: Pennsylvania\n" +"'Puerto Rico': 'Puerto Rico'\n" +"'Rhode Island': 'Rhode Island'\n" +"'South Carolina': 'South Carolina'\n" +"'South Dakota': 'South Dakota'\n" +"Tennessee: Tennessee\n" +"Texas: Texas\n" +"Utah: Utah\n" +"Vermont: Vermont\n" +"'Virgin Islands': 'Virgin Islands'\n" +"Virginia: Virginia\n" +"Washington: Washington\n" +"'West Virginia': 'West Virginia'\n" +"Wisconsin: Wisconsin\n" +"Wyoming: Wyoming\n" +"Alberta: Alberta\n" +"'British Columbia': 'British Columbia'\n" +"Manitoba: Manitoba\n" +"'New Brunswick': 'New Brunswick'\n" +"'Newfoundland and Labrador': 'Newfoundland and Labrador'\n" +"'Nova Scotia': 'Nova Scotia'\n" +"'Northwest Territories': 'Northwest Territories'\n" +"Nunavut: Nunavut\n" +"Ontario: Ontario\n" +"'Prince Edward Island': 'Prince Edward Island'\n" +"Quebec: Quebec\n" +"Saskatchewan: Saskatchewan\n" +"Yukon: Yukon\n" +msgstr "" + +msgctxt "webform.webform_options.state_names:options" +msgid "" +"Alabama: Alabama\n" +"Alaska: Alaska\n" +"Arizona: Arizona\n" +"Arkansas: Arkansas\n" +"California: California\n" +"Colorado: Colorado\n" +"Connecticut: Connecticut\n" +"Delaware: Delaware\n" +"'District of Columbia': 'District of Columbia'\n" +"Florida: Florida\n" +"Georgia: Georgia\n" +"Hawaii: Hawaii\n" +"Idaho: Idaho\n" +"Illinois: Illinois\n" +"Indiana: Indiana\n" +"Iowa: Iowa\n" +"Kansas: Kansas\n" +"Kentucky: Kentucky\n" +"Louisiana: Louisiana\n" +"Maine: Maine\n" +"Maryland: Maryland\n" +"Massachusetts: Massachusetts\n" +"Michigan: Michigan\n" +"Minnesota: Minnesota\n" +"Mississippi: Mississippi\n" +"Missouri: Missouri\n" +"Montana: Montana\n" +"Nebraska: Nebraska\n" +"Nevada: Nevada\n" +"'New Hampshire': 'New Hampshire'\n" +"'New Jersey': 'New Jersey'\n" +"'New Mexico': 'New Mexico'\n" +"'New York': 'New York'\n" +"'North Carolina': 'North Carolina'\n" +"'North Dakota': 'North Dakota'\n" +"Ohio: Ohio\n" +"Oklahoma: Oklahoma\n" +"Oregon: Oregon\n" +"Pennsylvania: Pennsylvania\n" +"'Rhode Island': 'Rhode Island'\n" +"'South Carolina': 'South Carolina'\n" +"'South Dakota': 'South Dakota'\n" +"Tennessee: Tennessee\n" +"Texas: Texas\n" +"Utah: Utah\n" +"Vermont: Vermont\n" +"Virginia: Virginia\n" +"Washington: Washington\n" +"'West Virginia': 'West Virginia'\n" +"Wisconsin: Wisconsin\n" +"Wyoming: Wyoming\n" +msgstr "" + +msgctxt "webform.webform_options.province_names:options" +msgid "" +"Alberta: Alberta\n" +"'British Columbia': 'British Columbia'\n" +"Manitoba: Manitoba\n" +"'New Brunswick': 'New Brunswick'\n" +"'Newfoundland and Labrador': 'Newfoundland and Labrador'\n" +"'Nova Scotia': 'Nova Scotia'\n" +"'Northwest Territories': 'Northwest Territories'\n" +"Nunavut: Nunavut\n" +"Ontario: Ontario\n" +"'Prince Edward Island': 'Prince Edward Island'\n" +"Quebec: Quebec\n" +"Saskatchewan: Saskatchewan\n" +"Yukon: Yukon\n" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:arguments:node_id:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:arguments:delta:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:arguments:in_draft:exception:title" +msgid "All" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:exception:title" +msgid "Alle" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:exception:title" +msgid "Alle" +msgstr "" + +msgctxt "views.view.all_meetings:label" +msgid "Alle begivenheder" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:label" +msgid "Alle borgerforslag" +msgstr "" + +msgctxt "views.view.all_hearings:label" +msgid "Alle høringer" +msgstr "" + +msgctxt "views.view.all_projects:label" +msgid "Alle projekter" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:label" +msgid "Allow email" +msgstr "" + +msgctxt "views.view.glossary:description" +msgid "Alt indhold efter forbogstav." +msgstr "" + +msgctxt "views.view.archive:description" +msgid "Alt indhold, efter måned." +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.register_admin_created:configuration:email_subject:value" +msgid "An administrator created an account for you at [site:name]" +msgstr "" + +msgctxt "media.type.image:description" +msgid "An image to be stored in the media library" +msgstr "" + +msgctxt "user.mail:cancel_confirm:subject" +msgid "Anmodning om opsigelse af konto for [user:display-name] på [site:name]" +msgstr "" + +msgctxt "user.settings:anonymous" +msgid "Anonym" +msgstr "" + +msgctxt "user.role.anonymous:label" +msgid "Anonym bruger" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "" + +msgctxt "crop.type.medium_squared:description" +msgid "Anvendt til visning af materialer" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "system.action.webform_archive_action:label" +msgid "Archive webform" +msgstr "" + +msgctxt "views.view.archive:label" +msgid "Arkiv" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:label" +msgid "Aside block" +msgstr "" + +msgctxt "block_content.type.aside_contact_info:label" +msgid "Aside contact info" +msgstr "" + +msgctxt "block_content.type.aside_link_box:label" +msgid "Aside link box" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:authname:label" +msgid "Authentication Name" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:filters:authname:expose:label" +msgid "Authentication name" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:uid:label" +msgid "Author" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_uuid:label" +msgid "Author UUID" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:description" +msgid "Author accepts receiving emails." +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:label" +msgid "Author email display" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:available:label" +msgid "Available date" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:available:expose:label" +msgid "Available date" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Avancerede indstillinger" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Avancerede indstillinger" +msgstr "" + +msgctxt "webform.settings:settings:default_confirmation_back_label" +msgid "Back to form" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:label" +msgid "Background image" +msgstr "" + +msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:label" +msgid "Background image" +msgstr "" + +msgctxt "node.type.public_meeting:name" +msgid "Begivenhed" +msgstr "" + +msgctxt "user.role.public_meeting_editor:label" +msgid "Begivenhedsredaktør" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_selection:description" +msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_remarks:label" +msgid "Bemærkninger" +msgstr "" + +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:1:label" +msgid "Benyt ikke tilmeldingssystem" +msgstr "" + +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:0:label" +msgid "Benyt tilmeldingssystem" +msgstr "" + +msgctxt "field.field.node.hearing.field_description:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "field.field.node.project.field_description:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_description:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_description:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_description:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:fields:info:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" +msgid "Beskrivelse" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_description:description" +msgid "Beskrivelse af borgemødet." +msgstr "" + +msgctxt "field.field.node.hearing.field_description:description" +msgid "Beskrivelse af høringen." +msgstr "" + +msgctxt "views.view.glossary:display:attachment_1:display_title" +msgid "Bilag" +msgstr "" + +msgctxt "field.field.node.landing_page.field_media_image_single:label" +msgid "Billede" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_media_image_single:label" +msgid "Billede" +msgstr "" + +msgctxt "field.field.node.static_page.field_media_image_single:label" +msgid "Billede" +msgstr "" + +msgctxt "field.field.paragraph.content_block.field_paragraph_image:label" +msgid "Billede" +msgstr "" + +msgctxt "field.field.paragraph.image.field_paragraph_image:label" +msgid "Billede" +msgstr "" + +msgctxt "media.type.image:label" +msgid "Billede" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.image:label" +msgid "Billede" +msgstr "" + +msgctxt "field.field.node.static_page.field_media_image_single:description" +msgid "Billede til visning i header" +msgstr "" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" +msgid "Billedegalleri" +msgstr "" + +msgctxt "field.field.node.hearing.field_media_image:label" +msgid "Billeder" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:block_1:display_title" +msgid "Block" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:block_1:display_title" +msgid "Block" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:block_1:display_title" +msgid "Block" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" +msgstr "" + +msgctxt "views.view.archive:display:block_1:display_title" +msgid "Blok" +msgstr "" + +msgctxt "views.view.content_recent:display:block_1:display_title" +msgid "Blok" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Blokeret" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Blokeret" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:fields:type:label" +msgid "Bloktype" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" +msgid "Bloktype" +msgstr "" + +msgctxt "system.action.user_block_user_action:label" +msgid "Blokér de(n) valgte bruger(e)" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:label" +msgid "Body" +msgstr "" + +msgctxt "node.type.citizen_proposal:name" +msgid "Borgerforslag" +msgstr "" + +msgctxt "user.role.citizen_proposal_editor:label" +msgid "Borgerforslagsredaktør" +msgstr "" + +msgctxt "block.block.breadcrumbs:settings:label" +msgid "Breadcrumbs" +msgstr "" + +msgctxt "block.block.claro_breadcrumbs:settings:label" +msgid "Breadcrumbs" +msgstr "" + +msgctxt "field.field.media.image.field_itk_media_width:label" +msgid "Bredde" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:fields:count:label" +msgid "Brug antal" +msgstr "" + +msgctxt "field.field.node.hearing.field_map_display:description" +msgid "Brug værktøjet Geojson: http://geojson.io/#map=13/56.1464/10.1739 og kopiér den genererede json kode ind i dette felt." +msgstr "" + +msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" +msgid "Bruger" +msgstr "" + +msgctxt "system.menu.tools:description" +msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:title" +msgid "Brugerdefineret blokbibliotek" +msgstr "" + +msgctxt "views.view.block_content:display:page_1:display_options:menu:title" +msgid "Brugerdefineret blokbibliotek" +msgstr "" + +msgctxt "views.view.block_content:label" +msgid "Brugerdefineret blokbibliotek" +msgstr "" + +msgctxt "core.entity_view_mode.user.full:label" +msgid "Brugerkonto" +msgstr "" + +msgctxt "system.menu.account:label" +msgid "Brugerkontomenu" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:name:label" +msgid "Brugernavn" +msgstr "" + +msgctxt "node.type.static_page:description" +msgid "" +"Bruges til indhold der sjældent ændres.\n" +"Eksempler: Cookie politik, \"Om\" side, FAQ" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:count:label" +msgid "Brugt i" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_button:label" +msgid "Button" +msgstr "" + +msgctxt "field.field.paragraph.link.field_button_variant:label" +msgid "Button variant" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_cancellation:label" +msgid "Cancellation" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:label" +msgid "Cancelled" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_cancelled_date:label" +msgid "Cancelled date" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_cancelled_text:label" +msgid "Cancelled text" +msgstr "" + +msgctxt "image.style.carousel_300x168:label" +msgid "Carousel 576x322" +msgstr "" + +msgctxt "webform.webform_options.ethnicity:options" +msgid "" +"Caucasian: Caucasian\n" +"'Latino/Hispanic': 'Latino/Hispanic'\n" +"'Middle Eastern': 'Middle Eastern'\n" +"African: African\n" +"Caribbean: Caribbean\n" +"'South Asian': 'South Asian'\n" +"'East Asian': 'East Asian'\n" +"Mixed: Mixed\n" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:description" +msgid "Check denne boks hvis du ønsker at skjule tilmelding i frontend" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:description" +msgid "Check this box if the meeting is cancelled" +msgstr "" + +msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:description" +msgid "Choose the image to display in the background" +msgstr "" + +msgctxt "core.entity_view_mode.node.citizen_proposal_add:label" +msgid "Citizen proposal add" +msgstr "" + +msgctxt "core.entity_view_mode.node.citizen_proposal_approval:label" +msgid "Citizen proposal approval" +msgstr "" + +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" +msgid "Citizen proposal archiving" +msgstr "" + +msgctxt "filter.format.citizen_proposal_content:name" +msgid "Citizen proposal content" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:title" +msgid "Citizen proposal support" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:label" +msgid "Citizen proposal support" +msgstr "" + +msgctxt "field.field.taxonomy_term.department.field_claim_value:label" +msgid "Claim value" +msgstr "" + +msgctxt "system.action.webform_close_action:label" +msgid "Close webform" +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_color:label" +msgid "Color" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.links_on_a_background_image:description" +msgid "Commonly used in the top of a page, to show a collection of links." +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_confirmation_label" +msgid "Complete" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:completed:label" +msgid "Completed" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:completed:label" +msgid "Completed" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:completed:label" +msgid "Completed" +msgstr "" + +msgctxt "field.field.paragraph.teaser_row.field_content:label" +msgid "Content" +msgstr "" + +msgctxt "core.entity_view_mode.media.content_display:label" +msgid "Content display" +msgstr "" + +msgctxt "responsive_image.styles.content_image:label" +msgid "Content image" +msgstr "" + +msgctxt "core.entity_form_display.block_content.aside_link_box.default:content:field_title:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_short_description:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:title:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.node.project_page.default:content:title:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_abstract:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_lead:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.text_aside_blocks_2_column.default:content:field_abstract:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "core.entity_form_display.taxonomy_term.department.default:content:field_claim_value:third_party_settings:maxlength:maxlength_js_label" +msgid "Content limited to @limit characters, remaining: @remaining" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_promotion:label" +msgid "Content promotion" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_content_sections:label" +msgid "Content sections" +msgstr "" + +msgctxt "field.field.node.project_page.field_content_sections:label" +msgid "Content sections" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_content_state:label" +msgid "Content state" +msgstr "" + +msgctxt "field.field.node.hearing.field_content_state:label" +msgid "Content state" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_content_state:label" +msgid "Content state" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:label" +msgid "Content state (field_content_state)" +msgstr "" + +msgctxt "webform.webform_options.country_codes:label" +msgid "Country codes" +msgstr "" + +msgctxt "webform.webform_options.country_names:label" +msgid "Country names" +msgstr "" + +msgctxt "views.view.block_content:display:page_1:display_options:menu:description" +msgid "Create and edit block content." +msgstr "" + +msgctxt "image.style.crop_thumbnail:label" +msgid "Crop thumbnail" +msgstr "" + +msgctxt "core.date_format.medium:pattern" +msgid "D, d/m/Y - H:i" +msgstr "" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:0:label" +msgid "Danger" +msgstr "" + +msgctxt "language.entity.da:label" +msgid "Danish" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_title" +msgid "Data export (CSV)" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_title" +msgid "Data export (CSV)" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_title" +msgid "Data export (CSV)" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_title" +msgid "Data export (XLSX)" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_title" +msgid "Data export (XLSX)" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_title" +msgid "Data export (XLSX)" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:timestamp:label" +msgid "Date" +msgstr "" + +msgctxt "webform.webform_options.days:category" +msgid "Date and time" +msgstr "" + +msgctxt "webform.webform_options.months:category" +msgid "Date and time" +msgstr "" + +msgctxt "webform.webform_options.time_zones:category" +msgid "Date and time" +msgstr "" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_date:label" +msgid "Dato" +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_date:label" +msgid "Dato" +msgstr "" + +msgctxt "field.field.node.hearing.field_delete_date:label" +msgid "Dato for sletning af høringssvar" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:label" +msgid "Dato og tid" +msgstr "" + +msgctxt "webform.webform_options.days:label" +msgid "Days" +msgstr "" + +msgctxt "taxonomy.vocabulary.hearing_type:description" +msgid "De forskellige høringstyper der kan vælges imellem når en høring oprettes" +msgstr "" + +msgctxt "field.field.paragraph.link.field_decorative_arrow:label" +msgid "Decorative arrow" +msgstr "" + +msgctxt "advancedqueue.advancedqueue_queue.default:label" +msgid "Default" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_title" +msgid "Default" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_title" +msgid "Default" +msgstr "" + +msgctxt "views.view.media:display:default:display_title" +msgid "Default" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_title" +msgid "Default" +msgstr "" + +msgctxt "views.view.webform_submissions:description" +msgid "Default webform submissions views." +msgstr "" + +msgctxt "webform.settings:settings:default_delete_button_label" +msgid "Delete" +msgstr "" + +msgctxt "system.action.media_delete_action:label" +msgid "Delete media" +msgstr "" + +msgctxt "system.action.redirect_delete_action:label" +msgid "Delete redirect" +msgstr "" + +msgctxt "system.action.webform_submission_delete_action:label" +msgid "Delete submission" +msgstr "" + +msgctxt "system.action.webform_delete_action:label" +msgid "Delete webform" +msgstr "" + +msgctxt "system.site:name" +msgid "Deltag Aarhus – Aarhus kommune" +msgstr "" + +msgctxt "webform.webform_options.education:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.employment_status:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.ethnicity:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.gender:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.industry:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.marital_status:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.phone_types:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.relationship:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.sex:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.sex_icao:category" +msgid "Demographic" +msgstr "" + +msgctxt "webform.webform_options.titles:category" +msgid "Demographic" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_department:label" +msgid "Department" +msgstr "" + +msgctxt "field.field.node.hearing.field_department:label" +msgid "Department" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_department:label" +msgid "Department" +msgstr "" + +msgctxt "field.field.user.user.field_department:label" +msgid "Department" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:field_department:label" +msgid "Department" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:field_department:label" +msgid "Department" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:field_department:label" +msgid "Department" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" +msgid "Department" +msgstr "" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:description" +msgid "Der bør max uploade 5 billeder til galleriet. Hvis du har flere billede bør du tilføje dem til et eksternt galleri og linke dertil i feltet herunder." +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:empty:area_text_custom:content" +msgid "Der er i øjeblikket 0 brugere online." +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" +msgid "Der er i øjeblikket @total brugere online." +msgstr "" + +msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" + +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_deskpro:label" +msgid "Deskpro" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_deskpro:label" +msgid "Deskpro" +msgstr "" + +msgctxt "views.view.video_display:description" +msgid "Display a video attached to a node" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_default:display_options:display_description" +msgid "Display submissions." +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:header:result:content" +msgid "Displaying @start–@end of @total" +msgstr "" + +msgctxt "media.type.document:label" +msgid "Document" +msgstr "" + +msgctxt "field.field.node.hearing.field_media_document:label" +msgid "Dokumenter" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_media_document:label" +msgid "Dokumenter" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:uid:label" +msgid "Drupal User ID" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:name:label" +msgid "Drupal User Name" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:filters:uid:expose:label" +msgid "Drupal user" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_email:label" +msgid "E-mail" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:user_email:label" +msgid "E-mail" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_email:label" +msgid "E-mail" +msgstr "" + +msgctxt "webform.webform_options.education:label" +msgid "Education" +msgstr "" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_external_link:label" +msgid "Eksternt link" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_email:label" +msgid "Email" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_email:label" +msgid "Email" +msgstr "" + +msgctxt "filter.format.email_html:name" +msgid "Email HTML" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_email_address:label" +msgid "Email address" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_title" +msgid "Embed: Administer" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_default:display_title" +msgid "Embed: Default" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_title" +msgid "Embed: Manage" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_title" +msgid "Embed: Review" +msgstr "" + +msgctxt "field.field.node.hearing.field_tags:label" +msgid "Emneord" +msgstr "" + +msgctxt "taxonomy.vocabulary.tags:name" +msgid "Emneord" +msgstr "" + +msgctxt "webform.webform_options.employment_status:label" +msgid "Employment status" +msgstr "" + +msgctxt "user.mail:register_admin_created:subject" +msgid "En administrator har oprettet en konto til dig på [site:name]" +msgstr "" + +msgctxt "node.type.public_meeting:description" +msgid "En begivenhed" +msgstr "" + +msgctxt "field.field.node.project.field_description:description" +msgid "En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun i backend som eventuel hjælp til redaktørerne." +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:description" +msgid "En bruger bliver opfattet som online i dette tidsrum efter hun sidst har set en side." +msgstr "" + +msgctxt "node.type.hearing:description" +msgid "En høring knyttes til et eksisterende projekt. Alle høringer har en reference til Deskpro, så data kan hentes ind." +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_block:description" +msgid "En indholdsblok til visning af kort text med mulighed for at tilknytte et billede." +msgstr "" + +msgctxt "views.view.all_meetings:description" +msgid "En liste af alle begivenheder" +msgstr "" + +msgctxt "views.view.latest_public_meetings:description" +msgid "En liste af alle begivenheder" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:description" +msgid "En liste af alle høringer" +msgstr "" + +msgctxt "views.view.all_hearings:description" +msgid "En liste af alle høringer" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:description" +msgid "En liste af alle høringer" +msgstr "" + +msgctxt "views.view.latest_hearings:description" +msgid "En liste af alle høringer" +msgstr "" + +msgctxt "views.view.all_projects:description" +msgid "En liste af alle projekter" +msgstr "" + +msgctxt "views.view.latest_projects:description" +msgid "En liste af alle projekter" +msgstr "" + +msgctxt "taxonomy.vocabulary.tags:description" +msgid "En liste af emneord der kan bruges til at tagge indhold" +msgstr "" + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:display_description" +msgid "En liste af indloggede brugere." +msgstr "" + +msgctxt "views.view.who_s_new:display:block_1:display_options:display_description" +msgid "En liste af nye brugere" +msgstr "" + +msgctxt "node.type.project:description" +msgid "En projekttidslinje der samler relaterede borgermøder og initiativer i en kronologi. Det er muligt at tilføje ekstra tidslinje punkter." +msgstr "" + +msgctxt "paragraphs.paragraphs_type.teaser_row:description" +msgid "En række teasers der linker til andet indhold" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.introduction:description" +msgid "En simpel introduktionstekst med mulighed for header og link" +msgstr "" + +msgctxt "taxonomy.vocabulary.media_library:description" +msgid "En taksonomi der kan bruges til at strukturere mediebiblioteket" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_email_address:description" +msgid "Enter the contact email address." +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:fields:entity_label:label" +msgid "Entity" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:entity_reference_1:display_title" +msgid "Entity Reference" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_title" +msgid "Entity browser" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:fields:type:label" +msgid "Entity-type" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.image:description" +msgid "Et billede til visning i fuld bredde" +msgstr "" + +msgctxt "node.type.citizen_proposal:description" +msgid "Et borgerforslag" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.text:description" +msgid "Et tekstfelt med en wysiwyg editor" +msgstr "" + +msgctxt "webform.webform_options.ethnicity:label" +msgid "Ethnicity" +msgstr "" + +msgctxt "views.view.authmap:display:page:display_options:menu:title" +msgid "External" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:title" +msgid "External authentication links" +msgstr "" + +msgctxt "views.view.authmap:label" +msgid "External authentication links" +msgstr "" + +msgctxt "webform.webform_options.size:options" +msgid "" +"Extra Small: Extra Small\n" +"Small: Small\n" +"Medium: Medium\n" +"Large: Large\n" +"Extra Large: Extra Large\n" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "" + +msgctxt "block.block.stark_local_tasks:settings:label" +msgid "Faner" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:feed_1:display_title" +msgid "Feed" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:fid:label" +msgid "Fid" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" +msgid "File browser" +msgstr "" + +msgctxt "field.field.media.document.field_itk_media_file_upload:label" +msgid "File upload" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:title" +msgid "File usage" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_title" +msgid "File usage" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:title" +msgid "Filer" +msgstr "" + +msgctxt "views.view.files:display:page_1:display_options:menu:title" +msgid "Filer" +msgstr "" + +msgctxt "views.view.files:label" +msgid "Filer" +msgstr "" + +msgctxt "field.field.paragraph.files.field_files:label" +msgid "Files" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.files:label" +msgid "Files" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" +msgid "Filnavn" +msgstr "" + +msgctxt "views.view.files:display:page_1:display_title" +msgid "Filoversigt" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "filter.format.filtered_html:name" +msgid "Filtered html" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filtrér" +msgstr "" + +msgctxt "views.view.block_content:description" +msgid "Find og håndtér brugerdefinerede blokke." +msgstr "" + +msgctxt "views.view.files:description" +msgid "Find og håndtér filer." +msgstr "" + +msgctxt "views.view.content:display:page_1:display_options:tab_options:description" +msgid "Find og håndtér indhold" +msgstr "" + +msgctxt "views.view.content:description" +msgid "Find og håndtér indhold." +msgstr "" + +msgctxt "views.view.user_admin_people:description" +msgid "Find og håndtér personer som bruger dit site." +msgstr "" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:description" +msgid "Find og håndtér personer som bruger dit site." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_first_meeting_time:label" +msgid "First meeting time" +msgstr "" + +msgctxt "system.action.user_unblock_user_action:label" +msgid "Fjern blokering af de(n) valgte bruger(e)" +msgstr "" + +msgctxt "system.action.node_unpromote_action:label" +msgid "Fjern indhold fra forsiden" +msgstr "" + +msgctxt "system.action.node_make_unsticky_action:label" +msgid "Fjern klæbrighed" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:name:label" +msgid "Forfatter" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:name:label" +msgid "Forfatter" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:name:label" +msgid "Forfatter" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:fields:name:label" +msgid "Forfatter" +msgstr "" + +msgctxt "core.base_field_override.node.hearing.promote:label" +msgid "Forfremmet til forside" +msgstr "" + +msgctxt "core.base_field_override.node.landing_page.promote:label" +msgid "Forfremmet til forside" +msgstr "" + +msgctxt "core.base_field_override.node.project.promote:label" +msgid "Forfremmet til forside" +msgstr "" + +msgctxt "core.base_field_override.node.static_page.promote:label" +msgid "Forfremmet til forside" +msgstr "" + +msgctxt "views.view.form_list_active_projects:label" +msgid "Form list - Active projects" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_proposal:label" +msgid "Forslaget" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:fields:redirect_source__path:label" +msgid "Fra" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_source__path:expose:label" +msgid "Fra" +msgstr "" + +msgctxt "core.entity_view_mode.block_content.full:label" +msgid "Fuld" +msgstr "" + +msgctxt "core.entity_view_mode.node.full:label" +msgid "Fuldt indhold" +msgstr "" + +msgctxt "core.entity_view_mode.media.full:label" +msgid "Full content" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:operations:label" +msgid "Funktioner" +msgstr "" + +msgctxt "system.action.node_save_action:label" +msgid "Gem indhold" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "" + +msgctxt "webform.webform_options.gender:label" +msgid "Gender" +msgstr "" + +msgctxt "webform.webform_options.size:category" +msgid "General" +msgstr "" + +msgctxt "webform.webform_options.yes_no:category" +msgid "General" +msgstr "" + +msgctxt "core.entity_view_mode.paragraph.preview:label" +msgid "Gennemse" +msgstr "" + +msgctxt "webform.settings:settings:default_preview_label" +msgid "Gennemse" +msgstr "" + +msgctxt "webform.settings:settings:default_preview_next_button_label" +msgid "Gennemse" +msgstr "" + +msgctxt "webform.webform_options.country_codes:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.country_names:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.province_codes:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.province_names:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.state_codes:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.state_names:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.state_province_codes:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.state_province_names:category" +msgid "Geographic" +msgstr "" + +msgctxt "core.entity_form_display.node.citizen_proposal.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" +msgstr "" + +msgctxt "field.field.node.hearing.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" +msgstr "" + +msgctxt "user.role.authenticated:label" +msgid "Godkendt bruger" +msgstr "" + +msgctxt "system.action.node_make_sticky_action:label" +msgid "Gør indhold klæbrigt" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_time:pattern" +msgid "H:i" +msgstr "" + +msgctxt "core.date_format.html_date:label" +msgid "HTML Date" +msgstr "" + +msgctxt "core.date_format.html_datetime:label" +msgid "HTML Datetime" +msgstr "" + +msgctxt "core.date_format.html_month:label" +msgid "HTML Month" +msgstr "" + +msgctxt "core.date_format.html_time:label" +msgid "HTML Time" +msgstr "" + +msgctxt "core.date_format.html_week:label" +msgid "HTML Week" +msgstr "" + +msgctxt "core.date_format.html_year:label" +msgid "HTML Year" +msgstr "" + +msgctxt "core.date_format.html_yearless_date:label" +msgid "HTML Yearless date" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:node_bulk_form:action_title" +msgid "Handling" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:node_bulk_form:action_title" +msgid "Handling" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" + +msgctxt "filter.format.hearing_description:name" +msgid "Hearing description" +msgstr "" + +msgctxt "core.entity_view_mode.node.hearing_ticket_add:label" +msgid "Hearing ticket add" +msgstr "" + +msgctxt "core.entity_view_mode.node.hearing_ticket_view:label" +msgid "Hearing ticket view" +msgstr "" + +msgctxt "pathauto.pattern.hearings:label" +msgid "Hearings" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:title" +msgid "Hearings related to project" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:label" +msgid "Hearings related to project" +msgstr "" + +msgctxt "field.field.node.hearing.field_hearing_ticket_add:description" +msgid "Her kan du linke til tilføjelse af høringssvar i et eksternt høringssvarsystem" +msgstr "" + +msgctxt "field.field.node.hearing.field_hearing_ticket_list:description" +msgid "Her kan du linke til visning af høringssvar i et eksternt høringssvarsystem" +msgstr "" + +msgctxt "image.style.hero:label" +msgid "Hero (1440w) - Crop" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:label" +msgid "Heyloyalty feed" +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_toggle_hide_label" +msgid "Hide all" +msgstr "" + +msgctxt "webform.webform_options.education:options" +msgid "" +"High School: High School\n" +"Associate Degree: Associate Degree\n" +"Graduate or Professional Degree: Graduate or Professional Degree\n" +"Some College: Some College\n" +msgstr "" + +msgctxt "webform.webform_options.phone_types:options" +msgid "" +"Home: Home\n" +"Office: Office\n" +"Cell: Cell\n" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:title" +msgid "Hvem er online" +msgstr "" + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" +msgid "Hvem er online" +msgstr "" + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" +msgid "Hvem er online" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Hvilken status?" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Hvor i kommunen?" +msgstr "" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" +msgid "Håndtér brugerkonti, roller og tilladelser." +msgstr "" + +msgctxt "field.field.media.image.field_itk_media_height:label" +msgid "Højde" +msgstr "" + +msgctxt "node.type.hearing:name" +msgid "Høring" +msgstr "" + +msgctxt "field.field.node.hearing.field_content_state:description" +msgid "Høringens status." +msgstr "" + +msgctxt "core.date_format.hoeringsportal_day_only:label" +msgid "Høringsportalen – dag" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_month_short:label" +msgid "Høringsportalen – måned kort" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_date:label" +msgid "Høringsportalen – dato" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_date_long:label" +msgid "Høringsportalen – dato (lang)" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_datetime:label" +msgid "Høringsportalen – dato og tid" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_time:label" +msgid "Høringsportalen – tid" +msgstr "" + +msgctxt "user.role.hearing_editor:label" +msgid "Høringsredaktør" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:label" +msgid "Høringssvar" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_hearing_ticket_system:label" +msgid "Høringssvarsystem" +msgstr "" + +msgctxt "taxonomy.vocabulary.hearing_type:name" +msgid "Høringstype" +msgstr "" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:1:label" +msgid "I gang" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "" + +msgctxt "block.block.itkadminlinks:settings:label" +msgid "ITK Admin links" +msgstr "" + +msgctxt "views.view.itk_media:label" +msgid "ITK Media" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:label" +msgid "ITK document browser" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:label" +msgid "ITK icon browser" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:label" +msgid "ITK image browser" +msgstr "" + +msgctxt "views.view.itk_media_browser:label" +msgid "ITK media browser" +msgstr "" + +msgctxt "field.field.paragraph.link.field_icon:label" +msgid "Icon" +msgstr "" + +msgctxt "media.type.icon:label" +msgid "Icon" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:nothing:admin_label" +msgid "Icon" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_title" +msgid "Icon browser" +msgstr "" + +msgctxt "language.entity.und:label" +msgid "Ikke angivet" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Ikke udgivet" +msgstr "" + +msgctxt "core.entity_form_mode.media.image:label" +msgid "Image" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_image:label" +msgid "Image" +msgstr "" + +msgctxt "field.field.media.icon.field_itk_media_image_upload:label" +msgid "Image" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_title" +msgid "Image browser" +msgstr "" + +msgctxt "field.field.media.image.field_itk_media_image_upload:label" +msgid "Image upload" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_section:label" +msgid "Indhold" +msgstr "" + +msgctxt "field.field.paragraph.content_block.field_content_block_text:label" +msgid "Indhold" +msgstr "" + +msgctxt "field.field.paragraph.info_box.field_content_block_text:label" +msgid "Indhold" +msgstr "" + +msgctxt "field.field.paragraph.text.field_content_block_text:label" +msgid "Indhold" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:title" +msgid "Indhold" +msgstr "" + +msgctxt "views.view.content:display:page_1:display_options:menu:title" +msgid "Indhold" +msgstr "" + +msgctxt "views.view.content:display:page_1:display_options:tab_options:title" +msgid "Indhold" +msgstr "" + +msgctxt "views.view.content:label" +msgid "Indhold" +msgstr "" + +msgctxt "views.view.taxonomy_term:description" +msgid "Indhold som er knyttet til en bestemt term." +msgstr "" + +msgctxt "field.field.node.landing_page.field_section:label" +msgid "Indholds region" +msgstr "" + +msgctxt "field.field.node.static_page.field_section:label" +msgid "Indholds region" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_block:label" +msgid "Indholdsblok" +msgstr "" + +msgctxt "field.field.paragraph.content_list.field_content_list:label" +msgid "Indholdsliste" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_list:label" +msgid "Indholdsliste" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:type:expose:label" +msgid "Indholdstype" +msgstr "" + +msgctxt "crop.type.content_display:label" +msgid "Indholdsvisning" +msgstr "" + +msgctxt "webform.settings:settings:default_form_required_label" +msgid "Indicates required field" +msgstr "" + +msgctxt "field.field.node.hearing.field_getorganized_case_id:description" +msgid "Indtast GetOrganized-sags-ID for høringen." +msgstr "" + +msgctxt "field.field.node.hearing.field_edoc_casefile_id:description" +msgid "Indtast eDoc-sagsnr. for høringen." +msgstr "" + +msgctxt "webform.webform_options.industry:label" +msgid "Industry" +msgstr "" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:2:label" +msgid "Info" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.info_box:label" +msgid "Infoboks" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" +msgid "Information om brug af filen {{ arguments.fid }}" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:empty:area_text_custom:content" +msgid "Ingen personer til rådighed." +msgstr "" + +msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" +msgid "Ingen tilgængelige filer." +msgstr "" + +msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:label" +msgid "Initiativ billede galleri" +msgstr "" + +msgctxt "pathauto.pattern.initiative:label" +msgid "Initiative" +msgstr "" + +msgctxt "field.field.paragraph.introduction.field_intro_body:label" +msgid "Introduktion" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.introduction:label" +msgid "Introduktion" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "" + +msgctxt "webform.webform_options.months:options" +msgid "" +"January: January\n" +"February: February\n" +"March: March\n" +"April: April\n" +"May: May\n" +"June: June\n" +"July: July\n" +"August: August\n" +"September: September\n" +"October: October\n" +"November: November\n" +"December: December\n" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:job_id:label" +msgid "Job ID" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:type:label" +msgid "Job type" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" +msgid "Job type" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:title" +msgid "Jobs" +msgstr "" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:0:label" +msgid "Kommende" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:1:title" +msgid "Kommende" +msgstr "" + +msgctxt "core.entity_view_mode.user.compact:label" +msgid "Kompakt" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" +msgstr "" + +msgctxt "field.field.node.hearing.field_contact:label" +msgid "Kontakt" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_contact:label" +msgid "Kontakt" +msgstr "" + +msgctxt "user.mail:register_pending_approval:subject" +msgid "Kontoinformation for [user:display-name] på [site:name] (afventer godkendelse af administrator)" +msgstr "" + +msgctxt "user.mail:register_pending_approval_admin:subject" +msgid "Kontoinformation for [user:display-name] på [site:name] (afventer godkendelse af administrator)" +msgstr "" + +msgctxt "user.mail:register_no_approval_required:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgstr "" + +msgctxt "user.mail:status_blocked:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgstr "" + +msgctxt "user.mail:status_activated:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" +msgstr "" + +msgctxt "user.mail:status_canceled:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" +msgstr "" + +msgctxt "node.type.page_map:name" +msgid "Kort" +msgstr "" + +msgctxt "field.field.node.hearing.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsvisningen" +msgstr "" + +msgctxt "field.field.node.landing_page.field_teaser:description" +msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "" + +msgctxt "field.field.node.static_page.field_teaser:description" +msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "" + +msgctxt "field.field.node.hearing.field_map:label" +msgid "Kortvisning" +msgstr "" + +msgctxt "field.field.node.hearing.field_map_display:label" +msgid "Kortvisning" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_map:label" +msgid "Kortvisning" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:langcode:expose:label" +msgid "Language" +msgstr "" + +msgctxt "webform.webform_options.languages:category" +msgid "Language" +msgstr "" + +msgctxt "webform.webform_options.translations:category" +msgid "Language" +msgstr "" + +msgctxt "webform.webform_options.languages:label" +msgid "Languages" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:label" +msgid "Last access" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:label" +msgid "Last access" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_lead:label" +msgid "Lead" +msgstr "" + +msgctxt "webform.webform_options.likert_agreement:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_comparison:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_importance:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_quality:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_satisfaction:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_ten_scale:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_would_you:category" +msgid "Likert" +msgstr "" + +msgctxt "webform.webform_options.likert_agreement:label" +msgid "Likert: Agreement" +msgstr "" + +msgctxt "webform.webform_options.likert_comparison:label" +msgid "Likert: Comparison" +msgstr "" + +msgctxt "webform.webform_options.likert_importance:label" +msgid "Likert: Importance" +msgstr "" + +msgctxt "webform.webform_options.likert_quality:label" +msgid "Likert: Quality" +msgstr "" + +msgctxt "webform.webform_options.likert_satisfaction:label" +msgid "Likert: Satisfaction" +msgstr "" + +msgctxt "webform.webform_options.likert_ten_scale:label" +msgid "Likert: Ten Scale" +msgstr "" + +msgctxt "webform.webform_options.likert_would_you:label" +msgid "Likert: Would You" +msgstr "" + +msgctxt "system.menu.secondary-navigation:description" +msgid "Lille menu til højre i header" +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.introduction.field_intro_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.link.field_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.text.field_external_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_link:label" +msgid "Link" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.link:label" +msgid "Link" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.link:description" +msgid "Link with possibility of showing an icon and/or a decorative arrow." +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:title" +msgid "Links for {{ arguments.provider_field }}" +msgstr "" + +msgctxt "field.field.paragraph.links_on_a_background_image.field_links_list:label" +msgid "Links list" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.links_on_a_background_image:label" +msgid "Links on a background image" +msgstr "" + +msgctxt "system.menu.account:description" +msgid "Links relateret til den aktive brugerkonto" +msgstr "" + +msgctxt "system.menu.admin:description" +msgid "Links til administrative opgaver" +msgstr "" + +msgctxt "system.menu.footer:description" +msgid "Links til informationen om sitet" +msgstr "" + +msgctxt "system.menu.main:description" +msgid "Links til sitets sektioner" +msgstr "" + +msgctxt "core.entity_view_mode.node.list_display:label" +msgid "List display" +msgstr "" + +msgctxt "views.view.redirect:description" +msgid "List of redirects" +msgstr "" + +msgctxt "field.field.paragraph.content_list.field_list_title:label" +msgid "Liste titel" +msgstr "" + +msgctxt "system.action.webform_submission_make_lock_action:label" +msgid "Lock submission" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:locked:label" +msgid "Locked" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:locked:label" +msgid "Locked" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:locked:label" +msgid "Locked" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "" + +msgctxt "field.field.node.hearing.field_lokalplaner:label" +msgid "Lokalplaner" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_month_short:pattern" +msgid "M" +msgstr "" + +msgctxt "webform.webform_options.sex_icao:options" +msgid "" +"M: Male\n" +"F: Female\n" +"X: Unspecified\n" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:filemime:label" +msgid "MIME type" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" +msgid "MIME type" +msgstr "" + +msgctxt "block.block.claro_content:settings:label" +msgid "Main page content" +msgstr "" + +msgctxt "block.block.mainpagecontent:settings:label" +msgid "Main page content" +msgstr "" + +msgctxt "webform.webform_options.sex:options" +msgid "" +"Male: Male\n" +"Female: Female\n" +msgstr "" + +msgctxt "webform.webform_options.gender:options" +msgid "" +"Man: Man\n" +"Woman: Woman\n" +"Non-binary: Non-binary\n" +"Agender/Genderless: Agender/Genderless\n" +"Androgyne/Androgynous: Androgyne/Androgynous\n" +"Aporagender: Aporagender\n" +"Bigender: Bigender\n" +"Demi-agender: Demi-agender\n" +"Demi-boy: Demi-boy\n" +"Demi-fluid: Demi-fluid\n" +"Demi-girl: Demi-girl\n" +"Demi-gender: Demi-gender\n" +"Demi-non-binary: Demi-non-binary\n" +"Genderqueer: Genderqueer\n" +"Genderflux: Genderflux\n" +"Genderfluid: Genderfluid\n" +"Gender-indifferent: Gender-indifferent\n" +"Gender-neutral: Gender-neutral\n" +"Graygender: Graygender\n" +"Intergender: Intergender\n" +"Maverique: Maverique\n" +"Maxigender: Maxigender\n" +"Multigender/Polygender: Multigender/Polygender\n" +"Neutrois: Neutrois\n" +"Pangender/Omnigender: Pangender/Omnigender\n" +"Trigender: Trigender\n" +"Two-spirit: Two-spirit\n" +"'Prefer Not to Answer': 'Prefer Not to Answer'\n" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:display_description" +msgid "Manage submissions." +msgstr "" + +msgctxt "field.field.node.page_map.field_map_configuration:label" +msgid "Map configuration" +msgstr "" + +msgctxt "field.field.node.page_map.field_map_configuration:description" +msgid "" +"Map configuration as JSON or YAML or a path (relative to the site's files folder) of a file containing JSON or YAML.\n" +"The value can also be a URL pointing to a JSON map configuration." +msgstr "" + +msgctxt "field.field.node.page_map.field_map_type:label" +msgid "Map type" +msgstr "" + +msgctxt "webform.webform_options.marital_status:label" +msgid "Marital status" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:user_bulk_form:label" +msgid "Masseopdatering" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.archive:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.content:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.files:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "core.entity_view_mode.media.material_display:label" +msgid "Material display" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:title" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:display:media_page_list:display_options:menu:title" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:display:media_page_list:display_title" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:label" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:name:label" +msgid "Media name" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:name:expose:label" +msgid "Media name" +msgstr "" + +msgctxt "taxonomy.vocabulary.media_library:name" +msgid "Medie bibliotek" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:name:label" +msgid "Medie navn" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:filters:name:expose:label" +msgid "Medie navn" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:filters:bundle:expose:label" +msgid "Medie type" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:title" +msgid "Medier" +msgstr "" + +msgctxt "views.view.itk_media:display:media_page_list:display_options:menu:title" +msgid "Medier" +msgstr "" + +msgctxt "views.view.itk_media:display:media_page_list:display_title" +msgid "Medier" +msgstr "" + +msgctxt "crop.type.medium_squared:label" +msgid "Medium kvadratisk" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" +msgid "Medlem i" +msgstr "" + +msgctxt "image.style.medium:label" +msgid "Mellem (220×220)" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:label" +msgid "Member for" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:label" +msgid "Member for" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:use_more_text" +msgid "Mere" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:label" +msgid "Message" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:alter:text" +msgid "Message: {{ message }}" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Midlertidig" +msgstr "" + +msgctxt "field.field.media.document.field_itk_media_mime_type:label" +msgid "Mime type" +msgstr "" + +msgctxt "field.field.media.image.field_itk_media_mime_type:label" +msgid "Mime type" +msgstr "" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:0:label" +msgid "Mint" +msgstr "" + +msgctxt "webform.webform_options.titles:options" +msgid "" +"Miss: Miss\n" +"Ms: Ms\n" +"Mr: Mr\n" +"Mrs: Mrs\n" +"Dr: Dr\n" +msgstr "" + +msgctxt "webform.webform_options.months:label" +msgid "Months" +msgstr "" + +msgctxt "webform.settings:element:default_more_title" +msgid "More" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:description" +msgid "" +"Mulighed for visning af billeder galleri og link til ekstern billedeservice.\n" +"For at få den bedste visuelle effekt bør der vises minimum et billede og gerne flere." +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:title" +msgid "Månedsarkiv" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Mærkat" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Mærkat" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_last_meeting_time:label" +msgid "Mødedato" +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:narrow:title" +msgid "Narrow" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_name:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_name:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:user_name:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_name:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:filename:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:name_1:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:name_1:label" +msgid "Navn" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" +msgid "Navn eller e-mail indeholder" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:title" +msgid "Nearest hearings" +msgstr "" + +msgctxt "views.view.nearest_hearings:label" +msgid "Nearest hearings" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_subject:value" +msgid "New release(s) available for {{ site_name }}" +msgstr "" + +msgctxt "webform.settings:settings:default_confirmation_message" +msgid "New submission added to [webform:title]." +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_next_button_label" +msgid "Next >" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" +msgid "Next ›" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." +msgstr "" + +msgctxt "views.view.media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" +msgid "No jobs found" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:empty:area_text_custom:content" +msgid "No links (from Authentication name to Drupal user) found." +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:empty:area:admin_label" +msgid "No log messages available." +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:empty:area:content" +msgid "No log messages available." +msgstr "" + +msgctxt "webform.settings:settings:default_limit_total_message" +msgid "No more submissions are permitted." +msgstr "" + +msgctxt "webform.settings:settings:default_limit_user_message" +msgid "No more submissions are permitted." +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:empty:display_link:label" +msgid "No results" +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:noResultLabel" +msgid "No results found containing the word [search-phrase]." +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:noResultLabel" +msgid "No results found for [search-phrase]. Click to perform full search." +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:empty:area_text_custom:content" +msgid "No submissions available." +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:noResultLabel" +msgid "No users found for [search-phrase]. Click to perform full search." +msgstr "" + +msgctxt "core.entity_view_mode.media.node_form_display:label" +msgid "Node form display" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:nodes_autocompletion_callback:display_title" +msgid "Nodes Autocompletion Callback" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:label" +msgid "Nodes Autocompletion Callbacks" +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:normal:title" +msgid "Normal" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil søgning" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:alter:text" +msgid "Number of retries: {{ num_retries }}" +msgstr "" + +msgctxt "user.mail:password_reset:subject" +msgid "Ny login-information for [user:display-name] på [site:name]" +msgstr "" + +msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" +msgid "Nye brugere" +msgstr "" + +msgctxt "views.view.who_s_new:display:block_1:display_title" +msgid "Nye brugere" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:title" +msgid "Nye brugere" +msgstr "" + +msgctxt "views.view.who_s_new:label" +msgid "Nye brugere" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:off_label" +msgid "Off" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "field.field.node.hearing.field_area:label" +msgid "Område" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_area:label" +msgid "Område" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_area:label" +msgid "Område" +msgstr "" + +msgctxt "taxonomy.vocabulary.area:name" +msgid "Område" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" +msgstr "" + +msgctxt "taxonomy.vocabulary.area:description" +msgid "Området vises i teaservisningen og kan bruges som filter på oversigter" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "system.action.pathauto_update_alias_node:label" +msgid "Opdatér alternativ URL" +msgstr "" + +msgctxt "system.action.pathauto_update_alias_user:label" +msgid "Opdatér alternativ URL" +msgstr "" + +msgctxt "system.action.webform_open_action:label" +msgid "Open webform" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:operations:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:link:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:operations:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "" + +msgctxt "core.entity_form_mode.user.register:label" +msgid "Opret konto" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:fields:created:label" +msgid "Oprettet" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:created:label" +msgid "Oprettet" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:created:label" +msgid "Oprettet" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:created:label" +msgid "Oprettet" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:created:label" +msgid "Oprettet" +msgstr "" + +msgctxt "system.action.user_cancel_user_action:label" +msgid "Opsig de valgte brugerkonti" +msgstr "" + +msgctxt "views.view.taxonomy_term:label" +msgid "Ord i ordforråd" +msgstr "" + +msgctxt "views.view.glossary:display:page_1:display_options:menu:title" +msgid "Ordliste" +msgstr "" + +msgctxt "views.view.glossary:label" +msgid "Ordliste" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:language:expose:label" +msgid "Originalt sprog" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:label" +msgid "Overblik" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:label" +msgid "Overblik" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:label" +msgid "Overblik" +msgstr "" + +msgctxt "node.type.landing_page:name" +msgid "Oversigtsside" +msgstr "" + +msgctxt "node.type.landing_page:description" +msgid "" +"Oversigtsside til opsamling af alt indhold indenfor en kategori.\n" +"Eksempler: Forside, Projekter, Høringer." +msgstr "" + +msgctxt "field.field.paragraph.info_box.field_paragraph_title:label" +msgid "Overskrift" +msgstr "" + +msgctxt "pathauto.pattern.overview_page:label" +msgid "Overview page" +msgstr "" + +msgctxt "views.view.authmap:display:page:display_title" +msgid "Page" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:page_1:display_title" +msgid "Page" +msgstr "" + +msgctxt "views.view.search_db:display:page_1:display_title" +msgid "Page" +msgstr "" + +msgctxt "views.view.video_display:display:page_1:display_title" +msgid "Page" +msgstr "" + +msgctxt "views.view.watchdog:display:page:display_title" +msgid "Page" +msgstr "" + +msgctxt "block.block.claro_page_title:settings:label" +msgid "Page title" +msgstr "" + +msgctxt "block.block.pagetitle:settings:label" +msgid "Page title" +msgstr "" + +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title" +msgid "Paragraph" +msgstr "" + +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title_plural" +msgid "Paragraphs" +msgstr "" + +msgctxt "webform.webform_options.relationship:options" +msgid "" +"Parent: Parent\n" +"'Significant Other': 'Significant Other'\n" +"Sibling: Sibling\n" +"Child: Child\n" +"Friend: Friend\n" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:payload:label" +msgid "Payload" +msgstr "" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:1:label" +msgid "Peach" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Permanent" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:title" +msgid "Personer" +msgstr "" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" +msgid "Personer" +msgstr "" + +msgctxt "views.view.user_admin_people:label" +msgid "Personer" +msgstr "" + +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:0:label" +msgid "Petroleum" +msgstr "" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:4:label" +msgid "Petroleum" +msgstr "" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:3:label" +msgid "Petroleum light" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_author_phone:label" +msgid "Phone" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:label" +msgid "Phone number" +msgstr "" + +msgctxt "webform.webform_options.phone_types:label" +msgid "Phone type" +msgstr "" + +msgctxt "webform.settings:file:file_private_redirect_message" +msgid "Please login to access the uploaded file." +msgstr "" + +msgctxt "webform.settings:settings:default_form_access_denied_message" +msgid "Please login to access this form." +msgstr "" + +msgctxt "webform.settings:settings:default_submission_access_denied_message" +msgid "Please login to access this submission." +msgstr "" + +msgctxt "webform.settings:settings:default_preview_message" +msgid "Please review your submission. Your submission is not complete until you press the \"Submit\" button!" +msgstr "" + +msgctxt "captcha.settings:description" +msgid "Please type the text you see in the captcha image to prove you are human" +msgstr "" + +msgctxt "field.field.taxonomy_term.area.field_area_id:label" +msgid "Postnummer" +msgstr "" + +msgctxt "block.block.claro_local_actions:settings:label" +msgid "Primary admin actions" +msgstr "" + +msgctxt "block.block.primaryadminactions:settings:label" +msgid "Primary admin actions" +msgstr "" + +msgctxt "block.block.claro_primary_local_tasks:settings:label" +msgid "Primary tabs" +msgstr "" + +msgctxt "block.block.tabs:settings:label" +msgid "Primary tabs" +msgstr "" + +msgctxt "block.block.primaernavigation:settings:label" +msgid "Primær navigation" +msgstr "" + +msgctxt "system.menu.main:label" +msgid "Primær navigation" +msgstr "" + +msgctxt "block.block.stark_local_actions:settings:label" +msgid "Primære adminsitratorhandlinger" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:label" +msgid "Processed date" +msgstr "" + +msgctxt "node.type.project_main_page:name" +msgid "Project" +msgstr "" + +msgctxt "pathauto.pattern.project:label" +msgid "Project" +msgstr "" + +msgctxt "core.entity_form_display.node.project_main_page.default:third_party_settings:field_group:group_project_area:label" +msgid "Project area" +msgstr "" + +msgctxt "taxonomy.vocabulary.project_categories:name" +msgid "Project categories" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_project_category:label" +msgid "Project category" +msgstr "" + +msgctxt "field.field.node.project_page.field_project_category:label" +msgid "Project category" +msgstr "" + +msgctxt "core.entity_view_mode.media.project_gallery_display:label" +msgid "Project gallery display" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_project_image:label" +msgid "Project image" +msgstr "" + +msgctxt "node.type.project_page:name" +msgid "Project page" +msgstr "" + +msgctxt "field.field.node.project.field_project_start:label" +msgid "Projekt start" +msgstr "" + +msgctxt "field.field.node.project.field_project_finish:label" +msgid "Projektafslutning" +msgstr "" + +msgctxt "user.role.project_editor:label" +msgid "Projektredaktør" +msgstr "" + +msgctxt "field.field.node.hearing.field_project_reference:label" +msgid "Projekttidslinje" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_project_reference:label" +msgid "Projekttidslinje" +msgstr "" + +msgctxt "node.type.project:name" +msgid "Projekttidslinje" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:label" +msgid "Promoted to front page" +msgstr "" + +msgctxt "webform.webform_options.province_codes:label" +msgid "Province codes" +msgstr "" + +msgctxt "webform.webform_options.province_names:label" +msgid "Province names" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:label" +msgid "Publiceringsstatus" +msgstr "" + +msgctxt "system.action.media_publish_action:label" +msgid "Publish media" +msgstr "" + +msgctxt "core.base_field_override.node.citizen_proposal.status:label" +msgid "Published" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Published" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Published" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" +msgid "Published status" +msgstr "" + +msgctxt "field.field.taxonomy_term.timeline_item_types.field_timeline_item_color:label" +msgid "Punktfarve" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:rest_export_1:display_title" +msgid "REST export" +msgstr "" + +msgctxt "views.view.watchdog:description" +msgid "Recent log messages" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:title" +msgid "Recent log messages" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:title" +msgid "Redirect" +msgstr "" + +msgctxt "views.view.redirect:label" +msgid "Redirect" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:fields:module:label" +msgid "Registrerer modul" +msgstr "" + +msgctxt "webform.webform_options.relationship:label" +msgid "Relationship" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:sorts:search_api_relevance:expose:label" +msgid "Relevance" +msgstr "" + +msgctxt "system.action.user_remove_role_action.administrator:label" +msgid "Remove the Administrator role from the selected user(s)" +msgstr "" + +msgctxt "system.action.user_remove_role_action.citizen_proposal_editor:label" +msgid "Remove the Citizen proposal editor role from the selected user(s)" +msgstr "" + +msgctxt "system.action.user_remove_role_action.project_editor:label" +msgid "Remove the Project editor role from the selected user(s)" +msgstr "" + +msgctxt "system.action.user_remove_role_action.hearing_editor:label" +msgid "Remove the hearing editor role from the selected user(s)" +msgstr "" + +msgctxt "system.action.user_remove_role_action.public_meeting_editor:label" +msgid "Remove the public meeting editor role from the selected user(s)" +msgstr "" + +msgctxt "filter.format.plain_text:name" +msgid "Ren tekst" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_subject:value" +msgid "Replacement login information for [user:display-name] at [site:name]" +msgstr "" + +msgctxt "core.date_format.fallback:label" +msgid "Reservedatoformat" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "webform.settings:settings:default_reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "image.style.responsive_large_default:label" +msgid "Responsive large default" +msgstr "" + +msgctxt "image.style.responsive_large_default_x2:label" +msgid "Responsive large default (x2)" +msgstr "" + +msgctxt "image.style.responsive_medium_default:label" +msgid "Responsive medium default" +msgstr "" + +msgctxt "image.style.responsive_medium_default_x2:label" +msgid "Responsive medium default (x2)" +msgstr "" + +msgctxt "image.style.responsive_small_default:label" +msgid "Responsive small default" +msgstr "" + +msgctxt "image.style.responsive_small_default_x2:label" +msgid "Responsive small default (x2)" +msgstr "" + +msgctxt "image.style.responsive_small_teaser:label" +msgid "Responsive small teaser" +msgstr "" + +msgctxt "image.style.responsive_small_teaser_x2:label" +msgid "Responsive small teaser (x2)" +msgstr "" + +msgctxt "image.style.responsive_xsmall_default:label" +msgid "Responsive xsmall default" +msgstr "" + +msgctxt "image.style.responsive_xsmall_default_x2:label" +msgid "Responsive xsmall default (x2)" +msgstr "" + +msgctxt "image.style.responsive_xsmall_teaser:label" +msgid "Responsive xsmall teaser" +msgstr "" + +msgctxt "image.style.responsive_xsmall_teaser_x2:label" +msgid "Responsive xsmall teaser (x2)" +msgstr "" + +msgctxt "system.action.webform_unarchive_action:label" +msgid "Restore webform" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:display_description" +msgid "Review submissions." +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:roles_target_id:label" +msgid "Roles" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:roles_target_id:label" +msgid "Roles" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" +msgid "Rolle" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" +msgid "Roller" +msgstr "" + +msgctxt "symfony_mailer.mailer_transport.smtp:label" +msgid "SMTP" +msgstr "" + +msgctxt "field.field.node.hearing.field_deskpro_agent_email:label" +msgid "Sagsbehandler" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:status:expose:label" +msgid "Sandt" +msgstr "" + +msgctxt "webform.settings:settings:default_draft_button_label" +msgid "Save Draft" +msgstr "" + +msgctxt "system.action.media_save_action:label" +msgid "Save media" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:filters:combine:expose:label" +msgid "Search" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:title" +msgid "Search" +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:label" +msgid "Search Block" +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:label" +msgid "Search Form (content tab)" +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:label" +msgid "Search Form (users tab)" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:filters:combine:expose:label" +msgid "Search for documents" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:combine:expose:label" +msgid "Search for documents" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:combine:expose:label" +msgid "Search for images" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:combine:expose:label" +msgid "Search for images" +msgstr "" + +msgctxt "core.entity_view_mode.node.search_result:label" +msgid "Search result" +msgstr "" + +msgctxt "core.entity_form_display.paragraph.link.default:content:field_link:settings:placeholder" +msgid "Search the name of the page" +msgstr "" + +msgctxt "block.block.claro_secondary_local_tasks:settings:label" +msgid "Secondary tabs" +msgstr "" + +msgctxt "block.block.tabs_2:settings:label" +msgid "Secondary tabs" +msgstr "" + +msgctxt "block.block.sekundaernavigation:settings:label" +msgid "Sekundær navigation" +msgstr "" + +msgctxt "system.menu.secondary-navigation:label" +msgid "Sekundær navigation" +msgstr "" + +msgctxt "field.field.paragraph.link.field_icon:description" +msgid "Select an icon" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:text_input_required" +msgid "Select any filter and click on Apply to see results" +msgstr "" + +msgctxt "field.field.paragraph.link.field_link:description" +msgid "Select the content to link to" +msgstr "" + +msgctxt "symfony_mailer.mailer_transport.sendmail:label" +msgid "Sendmail" +msgstr "" + +msgctxt "views.view.latest_public_meetings:label" +msgid "Seneste begivenheder" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:label" +msgid "Seneste borgerforslag" +msgstr "" + +msgctxt "views.view.latest_hearings:label" +msgid "Seneste høringer" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:title" +msgid "Seneste indhold" +msgstr "" + +msgctxt "views.view.content_recent:label" +msgid "Seneste indhold" +msgstr "" + +msgctxt "views.view.content_recent:description" +msgid "Seneste indhold." +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" +msgid "Seneste opdatering" +msgstr "" + +msgctxt "views.view.latest_projects:label" +msgid "Seneste projekter" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" +msgid "Seneste tilgang" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" +msgid "Seneste tilgang" +msgstr "" + +msgctxt "field.storage.node.field_map_type:settings:allowed_values:0:label" +msgid "Septima Widget" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:severity:label" +msgid "Severity" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:filters:severity:expose:label" +msgid "Severity" +msgstr "" + +msgctxt "webform.webform_options.sex:label" +msgid "Sex" +msgstr "" + +msgctxt "webform.webform_options.sex_icao:label" +msgid "Sex - International Civil Aviation Organization (ICAO)" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_short_description:label" +msgid "Short description" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_short_description:description" +msgid "Short description of the project." +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_lead:description" +msgid "Short text to lead a Title" +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_toggle_show_label" +msgid "Show all" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:label" +msgid "Show page title" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.archive:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.block_content:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.content:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.glossary:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.redirect:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "views.view.user_admin_people:display:page_1:display_title" +msgid "Side" +msgstr "" + +msgctxt "node.type.page_map:description" +msgid "Side med et stort kort" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_sidebar:label" +msgid "Sidebar" +msgstr "" + +msgctxt "field.field.node.static_page.field_sidebar:label" +msgid "Sidebar" +msgstr "" + +msgctxt "block.block.sidefod:settings:label" +msgid "Sidefod" +msgstr "" + +msgctxt "system.menu.footer:label" +msgid "Sidefod" +msgstr "" + +msgctxt "block.block.stark_page_title:settings:label" +msgid "Sidetitel" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "" + +msgctxt "webform.webform_options.marital_status:options" +msgid "" +"Single: Single\n" +"Married: Married\n" +"Divorced: Divorced\n" +"Widowed: Widowed\n" +msgstr "" + +msgctxt "block.block.stark_branding:settings:label" +msgid "Site branding" +msgstr "" + +msgctxt "field.field.media.document.field_itk_media_size:label" +msgid "Size" +msgstr "" + +msgctxt "webform.webform_options.size:label" +msgid "Size" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_link:description" +msgid "Skiv en god og præcis linktekst der forklarer hvad der sker når man trykker på linket, fx “Gå til tilmelding på NemTilmeld”." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:label" +msgid "Skjul tilmelding" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_text:description" +msgid "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_end_date:label" +msgid "Slutdato" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_last_meeting_time_end:label" +msgid "Sluttidspunkt" +msgstr "" + +msgctxt "core.entity_view_mode.node.teaser:label" +msgid "Smagsprøve" +msgstr "" + +msgctxt "webform.settings:settings:default_form_close_message" +msgid "Sorry… This form is closed to new submissions." +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:langcode:expose:label" +msgid "Sprog" +msgstr "" + +msgctxt "core.date_format.short:label" +msgid "Standard kort dato" +msgstr "" + +msgctxt "core.date_format.long:label" +msgid "Standard lang dato" +msgstr "" + +msgctxt "core.date_format.medium:label" +msgid "Standard mellem dato" +msgstr "" + +msgctxt "system.action.webform_submission_make_sticky_action:label" +msgid "Star/flag submission" +msgstr "" + +msgctxt "webform.settings:settings:default_wizard_start_label" +msgid "Start" +msgstr "" + +msgctxt "field.field.node.project.field_timeline_items:description" +msgid "" +"Start og slut dato og alle høringer og borgermøde fra systemet plottes automatisk ind på tidslinjen.\n" +"Du kan bruge dette felt til at plotte flere relevante punkter ind." +msgstr "" + +msgctxt "field.field.node.hearing.field_start_date:label" +msgid "Startdato" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:label" +msgid "State" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:state:expose:label" +msgid "State" +msgstr "" + +msgctxt "webform.webform_options.state_codes:label" +msgid "State codes" +msgstr "" + +msgctxt "webform.webform_options.state_names:label" +msgid "State names" +msgstr "" + +msgctxt "webform.webform_options.state_province_codes:label" +msgid "State/Province codes" +msgstr "" + +msgctxt "webform.webform_options.state_province_names:label" +msgid "State/Province names" +msgstr "" + +msgctxt "pathauto.pattern.static_page:label" +msgid "Static page" +msgstr "" + +msgctxt "node.type.static_page:name" +msgid "Statisk side" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:status:expose:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:filters:status:expose:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" +msgid "Status" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:expose:label" +msgid "Status code" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:label" +msgid "Status code" +msgstr "" + +msgctxt "block.block.claro_messages:settings:label" +msgid "Status messages" +msgstr "" + +msgctxt "block.block.hoeringsportal_messages:settings:label" +msgid "Status messages" +msgstr "" + +msgctxt "block.block.messages:settings:label" +msgid "Status messages" +msgstr "" + +msgctxt "block.block.stark_messages:settings:label" +msgid "Statusmeddelelser" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:2:label" +msgid "Stone" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:filesize:label" +msgid "Størrelse" +msgstr "" + +msgctxt "webform.settings:settings:default_draft_saved_message" +msgid "Submission saved. You may return to this form later and it will restore the current values." +msgstr "" + +msgctxt "webform.settings:settings:default_submit_button_label" +msgid "Submit" +msgstr "" + +msgctxt "webform.settings:mail:default_body_text" +msgid "" +"Submitted on [webform_submission:created]\n" +"Submitted by: [webform_submission:user]\n" +"\n" +"Submitted values are:\n" +"[webform_submission:values]\n" +msgstr "" + +msgctxt "webform.webform_options.days:options" +msgid "" +"Sunday: Sunday\n" +"Monday: Monday\n" +"Tuesday: Tuesday\n" +"Wednesday: Wednesday\n" +"Thursday: Thursday\n" +"Friday: Friday\n" +"Saturday: Saturday\n" +msgstr "" + +msgctxt "field.field.node.hearing.field_reply_deadline:label" +msgid "Svarfrist" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:sorts:field_reply_deadline_value:expose:label" +msgid "Svarfrist" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" +msgid "Svarfrist" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" +msgid "Svarfrist" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "" + +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:format_settings:label" +msgid "Systemindstillinger" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:submit_button" +msgid "Søg" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:label" +msgid "Søg" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:placeholder" +msgid "Søg …" +msgstr "" + +msgctxt "field.field.media.document.field_itk_media_tag:label" +msgid "Tag" +msgstr "" + +msgctxt "field.field.media.image.field_itk_media_tag:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "" + +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_subject:value" +msgid "Tak for dit borgerforslag på [site:url]" +msgstr "" + +msgctxt "field.field.node.static_page.field_teaser_color:label" +msgid "Teaser color" +msgstr "" + +msgctxt "core.entity_view_mode.media.teaser_display:label" +msgid "Teaser display" +msgstr "" + +msgctxt "crop.type.teaser_display:label" +msgid "Teaser display" +msgstr "" + +msgctxt "responsive_image.styles.teaser_image:label" +msgid "Teaser image" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.teaser_row:label" +msgid "Teaser række" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_teaser_display:label" +msgid "Teaser visning" +msgstr "" + +msgctxt "field.field.node.hearing.field_teaser:label" +msgid "Teaser/indledning" +msgstr "" + +msgctxt "field.field.node.landing_page.field_teaser:label" +msgid "Teaser/indledning" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_teaser:label" +msgid "Teaser/indledning" +msgstr "" + +msgctxt "field.field.node.static_page.field_teaser:label" +msgid "Teaser/indledning" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.text:label" +msgid "Tekst" +msgstr "" + +msgctxt "field.field.node.static_page.field_sidebar:description" +msgid "Tekst til visning i højre side på fuldskærmsvisning" +msgstr "" + +msgctxt "core.entity_view_mode.taxonomy_term.full:label" +msgid "Termside" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_subject:value" +msgid "Test email from [site:name]" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:label" +msgid "Text + aside blocks (2 column)" +msgstr "" + +msgctxt "field.field.taxonomy_term.department.field_claim_value:description" +msgid "The claim value to match. If not set, the name of the term itself will be used." +msgstr "" + +msgctxt "field.field.media.document.field_itk_media_tag:description" +msgid "The tag will help you navigate in your media library" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:empty:area_text_custom:content" +msgid "There are no custom blocks available." +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:empty:area_text_custom:content" +msgid "There is no redirect yet." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_first_meeting_time:description" +msgid "This field is computed on node_save. It represents the time of the first meeting in case of multiple event dates. We need this value for views sorting and displays." +msgstr "" + +msgctxt "webform.settings:settings:default_form_open_message" +msgid "This form has not yet been opened to submissions." +msgstr "" + +msgctxt "webform.settings:settings:default_form_confidential_message" +msgid "This form is confidential. You must Log out to submit it." +msgstr "" + +msgctxt "webform.settings:settings:default_autofill_message" +msgid "This submission has been autofilled with your previous submission." +msgstr "" + +msgctxt "webform.settings:settings:default_submission_locked_message" +msgid "This submission has been locked." +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:description" +msgid "This vew is used to store default nodes autocompletion callbacks for Search Autocomplete module." +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" +msgstr "" + +msgctxt "image.style.thumbnail:label" +msgid "Thumbnail (100×100)" +msgstr "" + +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_timeline:label" +msgid "Tidslinje" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.timeline_period:label" +msgid "Tidslinje periode" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.timeline_items:label" +msgid "Tidslinje punkter" +msgstr "" + +msgctxt "taxonomy.vocabulary.timeline_item_types:name" +msgid "Tidslinje punkttyper" +msgstr "" + +msgctxt "field.field.node.project.field_timeline_items:label" +msgid "Tidslinjepunkter" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_redirect__uri:expose:label" +msgid "Til" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.timeline_items:description" +msgid "Tilføj ekstra punkter til tidslinjen" +msgstr "" + +msgctxt "field.field.node.hearing.field_hearing_ticket_add:label" +msgid "Tilføj høringssvar" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.timeline_period:description" +msgid "Tilføj perioder til tidslinjen" +msgstr "" + +msgctxt "field.field.node.hearing.field_video_embed:description" +msgid "" +"Tilføj video embed code.\n" +"Det er redaktørens ansvar at videoen overholder kommunens GDPR retningslinjer. \n" +"Hvis du er i tvivl kan du spørge den GDPR ansvarlige i din afdeling." +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:label" +msgid "Tillad e-mail" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:label" +msgid "Tillad e-mail" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:label" +msgid "Tillad e-mail" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" +msgid "Tilladelse" +msgstr "" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "" + +msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "" + +msgctxt "core.entity_view_display.node.public_meeting.search_result:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_pretix_dates:label" +msgid "Tilmelding" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_registration_deadline:label" +msgid "Tilmeldingsfrist" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_link:label" +msgid "Tilmeldingslink" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_text:label" +msgid "Tilmeldingstekst" +msgstr "" + +msgctxt "core.base_field_override.node.hearing.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "core.base_field_override.node.landing_page.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "core.base_field_override.node.project.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "core.base_field_override.node.static_page.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:on_label" +msgid "Tilsluttet" +msgstr "" + +msgctxt "webform.webform_options.time_zones:label" +msgid "Time zones" +msgstr "" + +msgctxt "views.view.timeline_related_items:display:default:display_options:title" +msgid "Timeline related items" +msgstr "" + +msgctxt "views.view.timeline_related_items:label" +msgid "Timeline related items" +msgstr "" + +msgctxt "field.field.paragraph.content_block.field_paragraph_title:label" +msgid "Titel" +msgstr "" + +msgctxt "field.field.paragraph.introduction.field_paragraph_title:label" +msgid "Titel" +msgstr "" + +msgctxt "field.field.paragraph.teaser_row.field_paragraph_title:label" +msgid "Titel" +msgstr "" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_title:label" +msgid "Titel" +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_title:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:title:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:title:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:title:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:fields:title:label" +msgid "Titel" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "field.field.paragraph.files.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "webform.webform_options.titles:label" +msgid "Titles" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:description" +msgid "Toggle to either show or hide the title of the page." +msgstr "" + +msgctxt "core.entity_view_mode.block.token:label" +msgid "Token" +msgstr "" + +msgctxt "core.entity_view_mode.entity_subqueue.token:label" +msgid "Token" +msgstr "" + +msgctxt "core.entity_view_mode.file.token:label" +msgid "Token" +msgstr "" + +msgctxt "core.entity_view_mode.user.token:label" +msgid "Token" +msgstr "" + +msgctxt "webform.webform_options.translations:label" +msgid "Translations" +msgstr "" + +msgctxt "field.field.node.hearing.field_type:label" +msgid "Type" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_type:label" +msgid "Type" +msgstr "" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_taxonomy_type:label" +msgid "Type" +msgstr "" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_taxonomy_type:label" +msgid "Type" +msgstr "" + +msgctxt "taxonomy.vocabulary.type:name" +msgid "Type" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:bundle:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:type:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:filters:type:expose:label" +msgid "Type" +msgstr "" + +msgctxt "taxonomy.vocabulary.timeline_item_types:description" +msgid "Typer af tidslinje punkter" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "" + +msgctxt "system.action.node_publish_action:label" +msgid "Udgiv indhold" +msgstr "" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Udgivet" +msgstr "" + +msgctxt "webform.settings:settings:default_form_exception_message" +msgid "Unable to display this webform. Please contact the site administrator." +msgstr "" + +msgctxt "webform.settings:settings:default_submission_exception_message" +msgid "Unable to process this submission. Please contact the site administrator." +msgstr "" + +msgctxt "system.action.webform_submission_make_unlock_action:label" +msgid "Unlock submission" +msgstr "" + +msgctxt "system.action.media_unpublish_action:label" +msgid "Unpublish media" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Unpublished" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Unpublished" +msgstr "" + +msgctxt "system.action.webform_submission_make_unsticky_action:label" +msgid "Unstar/unflag submission" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:changed:label" +msgid "Updated" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:settings:submit_text" +msgid "Upload document to media library" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:settings:submit_text" +msgid "Upload image to media library" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:label" +msgid "Upload new document" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:widgets:81d6533a-5ddc-40e9-b2ef-6ed8dfb46b89:label" +msgid "Upload new icon" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:widgets:81d6533a-5ddc-40e9-b2ef-6ed8dfb46b89:settings:submit_text" +msgid "Upload new icon to media library" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:label" +msgid "Upload new image" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:created:label" +msgid "Upload-dato" +msgstr "" + +msgctxt "node.type.project_main_page:description" +msgid "Use this to create a project page" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_department:description" +msgid "Used as the name of the department" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:description" +msgid "Used for the background image on the section" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:description" +msgid "Used for the body text" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_title:description" +msgid "Used for the title" +msgstr "" + +msgctxt "field.field.paragraph.files.field_title:description" +msgid "Used for the title" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:description" +msgid "Used for the title" +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:description" +msgid "Used to add a block with contact information. The blocks can be managed under the blocks section" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_address:description" +msgid "Used to add address" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_image:description" +msgid "Used to add image to the top of the box" +msgstr "" + +msgctxt "taxonomy.vocabulary.project_categories:description" +msgid "Used to categorize project pages" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_project_category:description" +msgid "Used to categorize the project. Create new categories here" +msgstr "" + +msgctxt "field.field.node.project_page.field_project_category:description" +msgid "Used to categorize the project. Create new categories here" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_button:description" +msgid "Used to create a button" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:description" +msgid "Used to create a content section with texts and aside blocks in 2 columns." +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_promotion:description" +msgid "Used to create a full width page section with a background image, and a boxed overlay with title, description and button." +msgstr "" + +msgctxt "block_content.type.aside_link_box:description" +msgid "Used to create a link box in the right column." +msgstr "" + +msgctxt "field.field.node.project_main_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" +msgstr "" + +msgctxt "field.field.node.project_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" +msgstr "" + +msgctxt "node.type.project_page:description" +msgid "Used to create sub pages for projects. Fx. faq page, image gallery page, process page and more. " +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_link:description" +msgid "Used to point to a target for the link box" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_abstract:description" +msgid "Used to quickly introduce the overall article content." +msgstr "" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:description" +msgid "Used to quickly introduce the overall article content." +msgstr "" + +msgctxt "field.field.paragraph.files.field_files:description" +msgid "Used to reference the files" +msgstr "" + +msgctxt "field.field.paragraph.teaser_row.field_content:description" +msgid "Used to select up to 3 content items to show in the row" +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_color:description" +msgid "Used to set the color of the box" +msgstr "" + +msgctxt "field.field.paragraph.info_box.field_variant:description" +msgid "Used to set the variant style for the info box." +msgstr "" + +msgctxt "block_content.type.aside_contact_info:description" +msgid "Used to show contact info on a page" +msgstr "" + +msgctxt "field.field.node.project_main_page.field_project_image:description" +msgid "Used to show project image" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_email:description" +msgid "Used to show the email address" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:description" +msgid "Used to show the phone number" +msgstr "" + +msgctxt "field.field.block_content.aside_contact_info.field_title:description" +msgid "Used to show the title" +msgstr "" + +msgctxt "field.field.block_content.aside_link_box.field_title:description" +msgid "Used to show the title" +msgstr "" + +msgctxt "paragraphs.paragraphs_type.files:description" +msgid "Used to upload files that the user can download" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:name:label" +msgid "User" +msgstr "" + +msgctxt "block.block.stark_login:settings:label" +msgid "User login" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:name:label" +msgid "Username" +msgstr "" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:name:label" +msgid "Username" +msgstr "" + +msgctxt "field.field.paragraph.info_box.field_variant:label" +msgid "Variant" +msgstr "" + +msgctxt "image.style.vector_image:label" +msgid "Vector image" +msgstr "" + +msgctxt "media.type.icon:description" +msgid "Vector images used to display icons" +msgstr "" + +msgctxt "core.entity_view_mode.node.revision:label" +msgid "Version" +msgstr "" + +msgctxt "system.maintenance:message" +msgid "Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din tålmodighed." +msgstr "" + +msgctxt "views.view.video_display:label" +msgid "Video display" +msgstr "" + +msgctxt "field.field.node.hearing.field_video_embed:label" +msgid "Video embed" +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:moreResultsLabel" +msgid "View all results containg term [search-phrase]." +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:moreResultsLabel" +msgid "View all results for [search-phrase]." +msgstr "" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:moreResultsLabel" +msgid "View all users for [search-phrase]." +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_more_info:label" +msgid "Vil du vide mere?" +msgstr "" + +msgctxt "field.field.node.citizen_proposal.field_more_info:label" +msgid "Vil du vide mere?" +msgstr "" + +msgctxt "field.field.node.hearing.field_more_info:label" +msgid "Vil du vide mere?" +msgstr "" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" +msgid "Vis" +msgstr "" + +msgctxt "field.field.node.hearing.field_hearing_ticket_list:label" +msgid "Vis høringssvar" +msgstr "" + +msgctxt "system.action.node_promote_action:label" +msgid "Vis indhold på forsiden" +msgstr "" + +msgctxt "views.view.who_s_new:description" +msgid "Viser en liste af de nyeste brugerkonti på sitet." +msgstr "" + +msgctxt "views.view.who_s_online:description" +msgid "Viser navnene på de brugere, der senste har været aktive, og det totale antal af aktive brugere." +msgstr "" + +msgctxt "crop.type.content_display:description" +msgid "Visningen der anvendes når billedet vises på det fulde indholdselement" +msgstr "" + +msgctxt "crop.type.teaser_display:description" +msgid "Visningen der anvendes når billedet vises som del af en teaser" +msgstr "" + +msgctxt "field.field.node.hearing.field_deskpro_department_id:description" +msgid "Vælg afdeling for høringen." +msgstr "" + +msgctxt "field.field.node.project.field_project_finish:description" +msgid "Vælg afslutningsdato for projektet." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_media_image_single:description" +msgid "Vælg billeder der skal vises i teaservisningen." +msgstr "" + +msgctxt "field.field.node.hearing.field_media_image:description" +msgid "Vælg billeder der skal vises på høringssiden." +msgstr "" + +msgctxt "field.field.node.hearing.field_project_reference:description" +msgid "Vælg den projekttidslinje som høringen er tilknyttet." +msgstr "" + +msgctxt "field.field.node.landing_page.field_section:description" +msgid "Vælg den type indhold du ønsker at indsætte" +msgstr "" + +msgctxt "field.field.node.hearing.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." +msgstr "" + +msgctxt "field.field.node.hearing.field_tags:description" +msgid "Vælg emneord for høringen." +msgstr "" + +msgctxt "paragraphs.paragraphs_type.content_list:description" +msgid "Vælg en færdigbygget liste af indholdselementer der automatisk opdateres med nyt indhold." +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Vælg et filter og klik på Anvend for at se resultater" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:text_input_required" +msgid "Vælg et filter og klik på Anvend for at se resultater" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required" +msgid "Vælg et filter og klik på Anvend for at se resultater" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:text_input_required" +msgid "Vælg et filter og klik på Anvend for at se resultater" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:display_configuration:link_text" +msgid "Vælg fil" +msgstr "" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:settings:submit_text" +msgid "Vælg fil" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:display_configuration:link_text" +msgid "Vælg fil" +msgstr "" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:settings:submit_text" +msgid "Vælg fil" +msgstr "" + +msgctxt "field.field.node.hearing.field_reply_deadline:description" +msgid "Vælg hvornår der er svarfrist for høringen." +msgstr "" + +msgctxt "field.field.node.hearing.field_delete_date:description" +msgid "Vælg hvornår høringssvar skal slettes fra deltag.aarhus.dk. Obs. Svar forsvinder kun fra deltag.aarhus.dk, men opbevares stadig i GO" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:display_configuration:link_text" +msgid "Vælg ikon" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:settings:submit_text" +msgid "Vælg ikon" +msgstr "" + +msgctxt "field.field.node.hearing.field_map:description" +msgid "Vælg kortvisning for høringen." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_area:description" +msgid "Vælg områder som borgermødet dækker. Markér alle hvis borgermødet dækker hele kommunen." +msgstr "" + +msgctxt "field.field.node.hearing.field_area:description" +msgid "Vælg områder som høringen dækker. Markér alle hvis høringen dækker hele kommunen." +msgstr "" + +msgctxt "field.field.node.project_main_page.field_area:description" +msgid "Vælg områder som projektet vedrører. Markér alle hvis projektet dækker hele kommunen." +msgstr "" + +msgctxt "field.field.node.hearing.field_deskpro_agent_email:description" +msgid "Vælg sagsbehandler for høringen." +msgstr "" + +msgctxt "field.field.node.hearing.field_start_date:description" +msgid "Vælg startdato for høringen." +msgstr "" + +msgctxt "field.field.node.project.field_project_start:description" +msgid "Vælg startdato for projektet." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_project_reference:description" +msgid "Vælg tidslinje som borgermødet er knyttet til." +msgstr "" + +msgctxt "field.field.node.public_meeting.field_signup_selection:label" +msgid "Vælg tilmeldingstype" +msgstr "" + +msgctxt "block.block.stark_tools:settings:label" +msgid "Værktøjer" +msgstr "" + +msgctxt "system.menu.tools:label" +msgid "Værktøjer" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:wid:label" +msgid "WID" +msgstr "" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:1:label" +msgid "Warning" +msgstr "" + +msgctxt "views.view.watchdog:label" +msgid "Watchdog" +msgstr "" + +msgctxt "webform.settings:mail:default_subject" +msgid "Webform submission from: [webform_submission:source-title]" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:title" +msgid "Webform submissions" +msgstr "" + +msgctxt "views.view.webform_submissions:label" +msgid "Webform submissions" +msgstr "" + +msgctxt "field.field.paragraph.link.field_decorative_arrow:description" +msgid "Whether to show a decorative arrow or not." +msgstr "" + +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:1:label" +msgid "White" +msgstr "" + +msgctxt "views.view.who_s_online:label" +msgid "Who's online block" +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:wide:title" +msgid "Wide" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:fields:redirect_bulk_form:action_title" +msgid "With selection" +msgstr "" + +msgctxt "webform.webform_options.yes_no:label" +msgid "Yes/No" +msgstr "" + +msgctxt "webform.webform_options.yes_no:options" +msgid "" +"Yes: Yes\n" +"No: No\n" +msgstr "" + +msgctxt "webform.settings:settings:default_draft_pending_single_message" +msgid "You have a pending draft for this webform. Load your pending draft." +msgstr "" + +msgctxt "webform.settings:settings:default_previous_submission_message" +msgid "You have already submitted this webform. View your previous submission." +msgstr "" + +msgctxt "webform.settings:settings:default_previous_submissions_message" +msgid "You have already submitted this webform. View your previous submissions." +msgstr "" + +msgctxt "webform.settings:settings:default_draft_pending_multiple_message" +msgid "You have pending drafts for this webform. View your pending drafts." +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.user.status_activated:configuration:email_subject:value" +msgid "Your account details for [user:display-name] at [site:name] ([site:url])" +msgstr "" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:palette" +msgid "[\"#008486\",\"#333333\", \"#B2DADA\"]" +msgstr "" + +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:palette" +msgid "[\"#008486\",\"#673ab7\",\"#3661d8\",\"#2b3ba2\",\"#B2DADA\",\"#008850\",\"#ffe13d\",\"#d32f2f\",\"#333333\"]" +msgstr "" + +msgctxt "webform.settings:mail:default_from_name" +msgid "[site:name]" +msgstr "" + +msgctxt "user.mail:register_pending_approval_admin:body" +msgid "" +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" +msgstr "" + +msgctxt "user.mail:cancel_confirm:body" +msgid "" +"[user:display-name],\n" +"\n" +"A request to cancel your account has been made at [site:name].\n" +"\n" +"You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:cancel-url]\n" +"\n" +"NOTE: The cancellation of your account is not reversible.\n" +"\n" +"This link expires in one day and nothing will happen if it is not used.\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:password_reset:body" +msgid "" +"[user:display-name],\n" +"\n" +"A request to reset the password for your account has been made at [site:name].\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:register_admin_created:body" +msgid "" +"[user:display-name],\n" +"\n" +"A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:register_no_approval_required:body" +msgid "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:register_pending_approval:body" +msgid "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n" +"\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:status_activated:body" +msgid "" +"[user:display-name],\n" +"\n" +"Your account at [site:name] has been activated.\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:account-name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:status_blocked:body" +msgid "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been blocked.\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "user.mail:status_canceled:body" +msgid "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been canceled.\n" +"\n" +"-- [site:name] team" +msgstr "" + +msgctxt "webform.settings:settings:default_preview_title" +msgid "[webform:title]: Preview" +msgstr "" + +msgctxt "webform.settings:settings:default_submission_label" +msgid "[webform_submission:submitted-to]: Submission #[webform_submission:serial]" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy._:configuration:email_theme:theme" +msgid "_active_fallback" +msgstr "" + +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_theme:theme" +msgid "_active_fallback" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" +msgid "admin/content/files/usage/{{ fid }}" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:path" +msgid "admin/reports/dblog/event/{{ wid }}" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:fields:nothing:alter:text" +msgid "by {{ name }} | {{ created }}" +msgstr "" + +msgctxt "webform.settings:test:types" +msgid "" +"checkbox:\n" +" - true\n" +"color:\n" +" - '#ffffcc'\n" +" - '#ffffcc'\n" +" - '#ccffff'\n" +"email:\n" +" - 'example@example.com'\n" +" - 'test@test.com'\n" +" - 'random@random.com'\n" +"language_select:\n" +" - en\n" +"machine_name:\n" +" - 'loremipsum'\n" +" - 'oratione'\n" +" - 'dixisset'\n" +"tel:\n" +" - '123-456-7890'\n" +" - '098-765-4321'\n" +"textarea:\n" +" - 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.'\n" +" - 'Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;'\n" +" - 'Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.'\n" +"text_format:\n" +" - value: '

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Negat esse eam, inquit, propter se expetendam. Primum Theophrasti, Strato, physicum se voluit; Id mihi magnum videtur. Itaque mihi non satis videmini considerare quod iter sit naturae quaeque progressio. Quare hoc videndum est, possitne nobis hoc ratio philosophorum dare. Est enim tanti philosophi tamque nobilis audacter sua decreta defendere.

'\n" +" - value: '

Huius, Lyco, oratione locuples, rebus ipsis ielunior. Duo Reges: constructio interrete. Sed haec in pueris; Sed utrum hortandus es nobis, Luci, inquit, an etiam tua sponte propensus es? Sapiens autem semper beatus est et est aliquando in dolore; Immo videri fortasse. Paulum, cum regem Persem captum adduceret, eodem flumine invectio? Et ille ridens: Video, inquit, quid agas;

'\n" +" - value: '

Quae cum dixisset, finem ille. Quamquam non negatis nos intellegere quid sit voluptas, sed quid ille dicat. Progredientibus autem aetatibus sensim tardeve potius quasi nosmet ipsos cognoscimus. Gloriosa ostentatio in constituendo summo bono. Qui-vere falsone, quaerere mittimus-dicitur oculis se privasse; Duarum enim vitarum nobis erunt instituta capienda. Comprehensum, quod cognitum non habet? Qui enim existimabit posse se miserum esse beatus non erit. Causa autem fuit huc veniendi ut quosdam hinc libros promerem. Nunc omni virtuti vitium contrario nomine opponitur.

'\n" +"url:\n" +" - 'http://example.com'\n" +" - 'http://test.com'\n" +"webform_email_confirm:\n" +" - 'example@example.com'\n" +" - 'test@test.com'\n" +" - 'random@random.com'\n" +"webform_email_multiple:\n" +" - 'example@example.com, test@test.com, random@random.com'\n" +"webform_time:\n" +" - '09:00'\n" +" - '17:00'\n" +msgstr "" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "citizen_proposal_content" +msgstr "" + +msgctxt "captcha.captcha_point.contact_message_feedback_form:label" +msgid "contact_message_feedback_form" +msgstr "" + +msgctxt "captcha.captcha_point.contact_message_personal_form:label" +msgid "contact_message_personal_form" +msgstr "" + +msgctxt "search_api.index.content:name" +msgid "content" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_day_only:pattern" +msgid "d" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_date:pattern" +msgid "d/m/Y" +msgstr "" + +msgctxt "core.date_format.short:pattern" +msgid "d/m/Y - H:i" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_datetime:pattern" +msgid "d/m/Y H:i" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:label" +msgid "delete" +msgstr "" + +msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:text" +msgid "delete" +msgstr "" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_edoc:label" +msgid "eDoc" +msgstr "" + +msgctxt "field.field.node.hearing.field_edoc_casefile_id:label" +msgid "eDoc-sagsnr." +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:text" +msgid "edit" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" + +msgctxt "webform.settings:test:names" +msgid "" +"first_name:\n" +" - 'John'\n" +" - 'Paul'\n" +" - 'Ringo'\n" +" - 'George'\n" +"last_name:\n" +" - 'Lennon'\n" +" - 'McCartney'\n" +" - 'Starr'\n" +" - 'Harrison'\n" +"address:\n" +" - '10 Main Street'\n" +" - '11 Brook Alley Road. APT 1'\n" +"zip:\n" +" - '11111'\n" +" - '12345'\n" +" - '12345-6789'\n" +"postal_code:\n" +" - '11111'\n" +" - '12345'\n" +" - '12345-6789'\n" +"phone:\n" +" - '123-456-7890'\n" +" - '098-765-4321'\n" +"fax:\n" +" - '123-456-7890'\n" +" - '098-765-4321'\n" +"city:\n" +" - 'Springfield'\n" +" - 'Pleasantville'\n" +" - 'Hill Valley'\n" +"url:\n" +" - 'http://example.com'\n" +" - 'http://test.com'\n" +"default:\n" +" - 'Loremipsum'\n" +" - 'Oratione'\n" +" - 'Dixisset'\n" +msgstr "" + +msgctxt "webform.settings:element:default_section_title_tag" +msgid "h2" +msgstr "" + +msgctxt "captcha.captcha_point.hearing_add_form:label" +msgid "hearing_add_form" +msgstr "" + +msgctxt "core.entity_view_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:format" +msgid "hex" +msgstr "" + +msgctxt "field.field.node.hearing.field_lokalplaner:description" +msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgstr "" + +msgctxt "language.entity.zxx:label" +msgid "ikke relevant" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_date_long:pattern" +msgid "l \\d. j. F Y" +msgstr "" + +msgctxt "core.date_format.long:pattern" +msgid "l, j. F Y - H:i" +msgstr "" + +msgctxt "search_api.server.local:name" +msgid "local" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" +msgid "mere" +msgstr "" + +msgctxt "captcha.captcha_point.node_hearing_form:label" +msgid "node_hearing_form" +msgstr "" + +msgctxt "captcha.captcha_point.node_landing_page_form:label" +msgid "node_landing_page_form" +msgstr "" + +msgctxt "captcha.captcha_point.node_project_form:label" +msgid "node_project_form" +msgstr "" + +msgctxt "captcha.captcha_point.node_static_page_form:label" +msgid "node_static_page_form" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:next" +msgid "næste ›" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:next" +msgid "næste ›" +msgstr "" + +msgctxt "field.field.node.public_meeting.field_pretix_event_settings:label" +msgid "pretix-indstillinger" +msgstr "" + +msgctxt "views.view.search_db:label" +msgid "search_db" +msgstr "" + +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title" +msgid "sektion" +msgstr "" + +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title_plural" +msgid "sektioner" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:last" +msgid "sidste »" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:last" +msgid "sidste »" +msgstr "" + +msgctxt "captcha.captcha_point.user_login_form:label" +msgid "user_login_form" +msgstr "" + +msgctxt "captcha.captcha_point.user_pass:label" +msgid "user_pass" +msgstr "" + +msgctxt "captcha.captcha_point.user_register_form:label" +msgid "user_register_form" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:view_node:text" +msgid "vis" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:nothing:alter:text" +msgid "" +"{% if field_itk_media_image_upload is empty and field_itk_media_image_upload_1 is empty %}\n" +"Tom\n" +"{% else %}\n" +"{{ url('')|render }}{{ field_itk_media_image_upload|trim('/') }}{{ field_itk_media_image_upload_1|trim('/') }}\n" +"{% endif %}" +msgstr "" + +msgctxt "webform.settings:element:empty_message" +msgid "{Empty}" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_file_upload:alter:text" +msgid "{{ 'Document'|t }}" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:alter:text" +msgid "{{ 'Image'|t }}" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 'ja' }}" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 1 }}" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 1 }}" +msgstr "" + +msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" +msgstr "" + +msgctxt "views.view.archive:display:default:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" +msgstr "" + +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:title" +msgid "{{ arguments.tid }}" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:alter:text" +msgid "{{ created|date('Y-m-d H:i:s', 'Europe/Copenhagen') }}" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:field_itk_media_image_upload:alter:path" +msgid "{{ field_itk_media_image_upload }}" +msgstr "" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:alt" +msgid "{{ message }}" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:alter:text" +msgid "" +"{{ processed }}\n" +"\n" +"{{ message }}" +msgstr "" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:alter:text" +msgid "" +"{{ state }}\n" +"\n" +"{{ num_retries }}" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:field_itk_media_image_upload_1:alter:text" +msgid "{{ url('')|render ~ field_itk_media_image_upload_1|trim('/') }}" +msgstr "" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:field_itk_media_image_upload:alter:text" +msgid "{{ url('')|render ~ field_itk_media_image_upload|trim('/') }}" +msgstr "" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:first" +msgid "« første" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:first" +msgid "« første" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:fields:changed:label" +msgid "Ændringsdato" +msgstr "" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Ønsket rækkefølge?" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Ønsket rækkefølge?" +msgstr "" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "" + +msgctxt "views.view.files:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Previous" +msgstr "" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Tidligere" +msgstr "" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" +msgstr "" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" +msgstr "" diff --git a/documentation/Translation.md b/documentation/Translation.md new file mode 100644 index 000000000..2c9d37b79 --- /dev/null +++ b/documentation/Translation.md @@ -0,0 +1,177 @@ +# Translation + +This document describes how [we](https://github.com/itk-dev/) handle translations in Drupal projects to make it possible +to add new translations and make sure that we can update translations in development, staging and production +envirenment. + +## Introduction + +We have four types of translations in Drupal: + +1. [Custom module and theme translations](#custom-module-and-theme-translations) +2. [Config translations](#config-translations) +3. [Contrib translations](#contrib-translations) + +The following section will define these translation types in more detail. + +> [!IMPORTANT] +> We _don't_ use the `interface translation` stuff defined in +> [locale.api.php](https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php), but +> control exactly what we export to where and how we import again from said where. + +## Custom module and theme translations + +"Custom module translations" and "custom theme translations" are translations used in custom +modules and themes, i.e. translatable strings used in our own module code and templates. + +> [!NOTE] +> For brevity, we'll use the term "custom module" to cover both custom modules and custom themes in the following +> sections. + +We use [Translation template extractor](https://www.drupal.org/project/potx) to extract translations from custom +modules. See [Taskfile.translation.yml](../task/Taskfile.translation.yml) for details. + +When [Exporting translations](#exporting-translations) for a custom module, `my_module`, say, a `translations` folder is +added in the module folder and inside this folder a [translation file](https://en.wikipedia.org/wiki/Gettext) is added +for each translation target language, e.g. + +``` shell +web/modules/custom/my_module +└── translations +    ├── my_module.da.po +    ├── ⋮ + └── my_module.no.po +``` + +> [!IMPORTANT] +> We don't add [translation +> contexts](https://www.drupal.org/docs/8/api/translation-api/overview#s-context-in-drupalt-and-drupalformatplural) to +> module translations, so the same source translation may exist in translation file for multiple modules. If this +> becomes an issue, an explicit context can be added to a translation (where it's used). + +## Config translations + +"Config translations" are translations of config. + +We use [Config Translation PO](https://www.drupal.org/project/config_translation_po) to export config translations. This +module currently [does not have an Drush commands](https://www.drupal.org/project/config_translation_po/issues/3439416) +for exporting and importing translations, but we're working on adding these: +. + +All config translations are exported to a single file per language, e.g. `config/translations/config.da.po` for the +languge `da`. + +> [!NOTE] +> If the translation of a config item text is the same as the source text, the translation text will be empty. This +> makes it easy to identify missing translations. + +## Contrib translations + +"Contrib translations" are all other translations, i.e. translations used in Drupal core and contrib modules. + +We use [`drush locale:export`](https://www.drush.org/latest/commands/locale_export/) to export contrib translations and +we export only customized translations, i.e. we use a Drush command like + +``` shell +drush locale:export da --types=customized +``` + +to export contrib translations for the languge `da`. + +Contrib translations are exported to a single file per languge, e.g. `translations/contrib-translations.da.po`. + +> [!IMPORTANT] +> Contrib translations may include module and config translations, so care must be taken when [importing +> translations](#importing-translations). + +------------------------------------------------------------------------------- + +## Exporting translations + +In your main [Taskfile](https://taskfile.dev/getting-started/), include +[Taskfile.translation.yml](../task/Taskfile.translation.yml) and [set the +variables](https://taskfile.dev/usage/#vars-of-included-taskfiles) `TRANSLATION_MODULES`, `TRANSLATION_THEMES`, and +`TRANSLATION_LANGUAGES` to define modules and themse to export translations for and the [languages to +process](https://en.wikipedia.org/wiki/ISO_639-1): + +``` yaml +# taskfile.yml + +includes: + translation: + taskfile: ./task/Taskfile.translation.yml + vars: + TRANSLATION_MODULES: + - my_module + ⋮ + + TRANSLATION_THEMES: + - my_theme + ⋮ + + TRANSLATION_LANGUAGES: + - da + ⋮ +``` + +Export all types of translations by running + +``` shell name=translation-export +task translation:export +``` + +> [!NOTE] +> When exporting translations, only "customized" contrib translations are exported. + +During development and testing, you can use specific export tasks for the different translation types: + +``` shell +> task +… +* translation:contrib-translations:export: Export contrib translations for all languages +* translation:config-translations:export: Export config translation for all languages +* translation:module-translations:export: Export translations for all modules in all languages +* translation:theme-translations:export: Export translations for all themes in all languages +… +``` + +Run `task translation:translations:list` to list all translation files, e.g. + +``` shell +> task translation:translations:list +… translations/contrib-translations.da.po +… config/translations/config.da.po +… web/modules/custom/my_module/translations/my_module.da.po +… web/themes/custom/my_theme_reports/translations/my_theme_reports.da.po +``` + +## Importing translations + +All translations can be imported by running + +``` shell name=translation-import +task translation:import +``` + +When importing translations, new translations are imported as "not-customized" and only "not-customized" translations +are overridden, and This ensures that any user made changes a translation will not be overridden. + +> [!WARNING] +> As noted above, contrib translations include all modules translations and therefore the contrib translations must be +> imported first when importing translations. Otherwise, translations from module translations files may be overridden +> by contrib translations. +> +> This may actually not be an issue (since we only override "not-customized" translations), but care should be taken +> when importing translations. + +During development and testing, you can use specific import tasks for the different translation types: + +``` shell +> task +… +* translation:contrib-translations:import: Import contrib translations for all languages +* translation:config-translations:import: Import config translation for all languages +* translation:module-translations:import: Import translations for all modules in all languages +* translation:theme-translations:import: Import translations for all themes in all languages +… +``` diff --git a/task/Taskfile.translation.yml b/task/Taskfile.translation.yml new file mode 100644 index 000000000..1e79f7018 --- /dev/null +++ b/task/Taskfile.translation.yml @@ -0,0 +1,310 @@ +# This is not a standalone Taskfile; it must be included in a main Taskfile which must also define three vars, e.g +# +# includes: +# translation: +# taskfile: ./task/Taskfile.translation.yml +# vars: +# TRANSLATION_MODULES: +# - my_custom_module +# - another_module +# +# TRANSLATION_THEMES: +# - my_custo_them +# - itkdev_project_theme +# +# TRANSLATION_LANGUAGES: +# - da +# +# See https://taskfile.dev/usage/#including-other-taskfiles and https://taskfile.dev/usage/#vars-of-included-taskfiles for details on Taskfile includes. +# +# Furthermore, this Taskfile assumes that the parent Taskfile (i.e. the only including this) +# +# 1. defines a `drush` task for running Drush + +version: '3' + +tasks: + contrib-translations:export: + desc: 'Export contrib translations for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - for: + matrix: + LANGUAGE: + ref: .TRANSLATION_LANGUAGES + cmd: | + task drush -- locale:export {{.ITEM.LANGUAGE}} --types=customized > translations/contrib-translations.{{.ITEM.LANGUAGE}}.po + - task: clean-up-translations + requires: + vars: + - TRANSLATION_LANGUAGES + silent: true + + contrib-translations:import: + prompt: "Really import contrib translations?" + desc: 'Import contrib translations for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - for: + matrix: + LANGUAGE: + ref: .TRANSLATION_LANGUAGES + cmd: task drush -- locale:import --type=not-customized --override=not-customized {{.ITEM.LANGUAGE}} ../translations/contrib-translations.{{.ITEM.LANGUAGE}}.po + requires: + vars: + - TRANSLATION_LANGUAGES + silent: true + + translations:list: + desc: List all translation files + cmds: + - | + find translations config/translations web/*/custom/*/translations -name '*.*.po' -ls + silent: true + + translations:diff: + desc: '`git diff` all translation files ignoring some date metadata changes' + cmds: + # Ignore some PO metadata when git diff'ing, e.g. + # + # "POT-Creation-Date: 2025-03-12 18:18+0100\n" + # "PO-Revision-Date: 2025-03-12 18:18+0100\n" + - git diff --exit-code --ignore-blank-lines --ignore-matching-lines='^"PO.*-Date' '*.po' + + translations:checkout: + desc: '`git checkout` all translation file changes if only date metadata is changed (cf. `task {{.TASK | replace ":checkout" ":diff" }}`)' + cmds: + - git checkout '*.po' + # https://taskfile.dev/reference/schema#precondition + preconditions: + - sh: task {{.TASK | replace ":checkout" ":diff" }} + msg: | + Translations seem to have changed. + + Run + + task {{.TASK | replace ":checkout" ":diff" }} + + to check. + + module-translations:export: + desc: 'Export translations for all modules ({{.TRANSLATION_MODULES | join ", "}}) in all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - task: do-export + vars: + TYPE: module + NAMES: + ref: .TRANSLATION_MODULES + LANGUAGES: + ref: .TRANSLATION_LANGUAGES + requires: + vars: + - TRANSLATION_MODULES + - TRANSLATION_LANGUAGES + silent: true + + module-translations:import: + prompt: "Really import module translations?" + desc: 'Import translations for all modules ({{.TRANSLATION_MODULES | join ", "}}) in all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - task: do-import + vars: + TYPE: module + NAMES: + ref: .TRANSLATION_MODULES + requires: + vars: + - TRANSLATION_MODULES + silent: true + + theme-translations:export: + desc: 'Export translations for all themes ({{.TRANSLATION_THEMES | join ", "}}) in all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - task: do-export + vars: + TYPE: theme + NAMES: + ref: .TRANSLATION_THEMES + LANGUAGES: + ref: .TRANSLATION_LANGUAGES + requires: + vars: + - TRANSLATION_THEMES + - TRANSLATION_LANGUAGES + silent: true + + theme-translations:import: + prompt: "Really import theme translations?" + desc: 'Import translations for all themes ({{.TRANSLATION_THEMES | join ", "}}) in all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - task: do-import + vars: + TYPE: theme + NAMES: + ref: .TRANSLATION_THEMES + requires: + vars: + - TRANSLATION_THEMES + silent: true + + config-translations:export: + desc: 'Export config translation for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - for: + matrix: + LANGUAGE: + ref: .TRANSLATION_LANGUAGES + cmd: task drush -- config_translation_po:export {{.ITEM.LANGUAGE}} --clear-same-as-source > config/translations/config.{{.ITEM.LANGUAGE}}.po + - task: clean-up-translations + requires: + vars: + - TRANSLATION_LANGUAGES + silent: true + + config-translations:import: + prompt: "Really import config translations?" + desc: 'Import config translation for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' + cmds: + - for: + matrix: + LANGUAGE: + ref: .TRANSLATION_LANGUAGES + cmd: task drush -- config_translation_po:import --type=not-customized --override=not-customized da ../config/translations/config.{{.ITEM.LANGUAGE}}.po + requires: + vars: + - TRANSLATION_LANGUAGES + silent: true + + test-pluralization: + desc: "Report and test some pluralizations to make sure that they are correct" + cmds: + - defer: rm {{.SCRIPT_NAME}} + - echo "{{.PHP_SCRIPT}}" > {{.SCRIPT_NAME}} + - task drush -- php:script {{.SCRIPT_NAME}} -- en {{.TRANSLATION_LANGUAGES | join " "}} + vars: + SCRIPT_NAME: tmp.php + PHP_SCRIPT: | + getLanguages(); + + \$stuff = [ + 'languages' => \$languages, + 'defaultLanguage' => \Drupal::service('language.default')->get(), + 'locale.translation.formulae' => \Drupal::state()->get('locale.translation.formulae', []), + ]; + + foreach (array_keys(\$languages) as \$langcode) { + \$stuff['pluralizations'][\$langcode] = array_map(static fn (\$count) => (new \Drupal\Core\StringTranslation\PluralTranslatableMarkup(\$count, '1 item', '@count items', options: ['langcode' => '{{.ITEM}}']))->render(), range(0, 9)); + } + + var_export(\$stuff); + + // Check Danish translation + foreach ([ + [0, '0 items'], + [1, '1 item'], + [2, '2 items'], + ] as [\$count, \$expected]) { + \$actual = (new \Drupal\Core\StringTranslation\PluralTranslatableMarkup(\$count, '1 item', '@count items', options: ['langcode' => 'da']))->render(); + if (\$actual !== \$expected) { + throw new \RuntimeException(sprintf('count: %d; expected: %s; actual: %s', \$count, var_export(\$expected, true), var_export(\$actual, true))); + } + } + silent: true + + export: + desc: Run all translation export tasks + cmds: + - task: contrib-translations:export + - task: config-translations:export + - task: module-translations:export + - task: theme-translations:export + silent: true + + import: + prompt: "Really import all translations?" + desc: Run all translation import tasks + cmds: + # Important: contrib translations must be imported first to let the other translation type control the actual translation. + - task: contrib-translations:import + - task: config-translations:import + - task: module-translations:import + - task: theme-translations:import + silent: true + + # ------------------------------------------------------------------------------ + # Internal helper tasks. + # ------------------------------------------------------------------------------ + + do-export: + internal: true + cmds: + - task drush -- --yes pm:install potx + # https://github.com/go-task/task/discussions/1543 + - for: + matrix: + NAME: + ref: .NAMES + LANGUAGE: + ref: .LANGUAGES + cmd: | + export SOURCE_PATH=$(task drush -- php:eval 'echo Drupal::service("extension.list.{{.TYPE}}")->getPath("{{.ITEM.NAME}}")') + if [ -n "$SOURCE_PATH" ]; then + task drush -- potx single --folder=${SOURCE_PATH}/ --language {{.ITEM.LANGUAGE}} --translations + mkdir -p web/${SOURCE_PATH}/translations + mv web/general.pot web/${SOURCE_PATH}/translations/{{.ITEM.NAME}}.{{.ITEM.LANGUAGE}}.po + fi + - task: clean-up-translations + requires: + vars: + - TYPE + - NAMES + - LANGUAGES + silent: true + + # @todo Can we use `drush locale:check` and/or `drush locale:update` to update + # module translations without overriding existing translations? + # @todo Do we want to override (existing) translations? + do-import: + internal: true + cmds: + - for: + matrix: + NAME: + ref: .NAMES + cmd: | + export SOURCE_PATH=$(task drush -- php:eval 'echo Drupal::service("extension.list.{{.TYPE}}")->getPath("{{.ITEM.NAME}}")') + if [ -n "$SOURCE_PATH" ]; then + # Import translations as not-customized and override only not-customized existing translations. + task drush -- locale:import-all --type=not-customized --override=not-customized ${SOURCE_PATH}/translations/ + fi + requires: + vars: + - TYPE + - NAMES + silent: true + + clean-up-translations: + internal: true + cmds: + # Replace \r\n with \n PO files (cf. "warning: internationalized messages should not contain the '\r' escape sequence") + - | + {{.SHELL}} sed --in-place 's/\\r\\n/\\n/g' $(find translations config/translations web/*/custom/*/translations -name '*.po') + # Fix plurals spec in Danish PO files + # https://drupalsun.com/eelke/2020/08/17/tale-mistranslated-plurals + # https://www.drupal.org/project/drupal/issues/3496223 + - | + {{.SHELL}} sed --in-place 's/Plural-Forms: nplurals=2; plural=(n > 1);/Plural-Forms: nplurals=2; plural=(n != 1);/' $(find translations config/translations web/*/custom/*/translations -name '*.da.po') + # Set 'Language' field in the header entry in Danish PO files + - | + for f in $(find translations config/translations web/*/custom/*/translations -name '*.da.po'); do + {{.SHELL}} msgcat --lang=da "$f" > {{.TMP_FILE_PATH}} && mv {{.TMP_FILE_PATH}} "$f" + done + # Make translations unique and sort them + # (cf. https://www.man7.org/linux/man-pages/man1/msguniq.1.html) + - | + for f in $(find translations config/translations web/*/custom/*/translations -name '*.po'); do + {{.SHELL}} msguniq --unique --sort-output --no-wrap "$f" > {{.TMP_FILE_PATH}} && mv {{.TMP_FILE_PATH}} "$f" + done + vars: + SHELL: docker run --user=${COMPOSE_USER:-deploy} --rm --volume "$PWD:/app" itkdev/php8.4-fpm + TMP_FILE_PATH: /tmp/translations.tmp diff --git a/translations/contrib-translations.da.po b/translations/contrib-translations.da.po new file mode 100644 index 000000000..3713b37b6 --- /dev/null +++ b/translations/contrib-translations.da.po @@ -0,0 +1,627 @@ +# Danish translation of Deltag Aarhus – Aarhus kommune +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 15:09+0200\n" +"PO-Revision-Date: 2025-04-23 15:09+0200\n" +"Last-Translator: NAME \n" +"Language-Team: LANGUAGE \n" +"Language: da\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" + +msgid "
{{ payload }}
" +msgstr "" + +msgid "@count place" +msgid_plural "@count places" +msgstr[0] "1 place" +msgstr[1] "@count places" + +msgid "@site is currently under maintenance. We should be back shortly. Thank you for your patience." +msgstr "Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din tålmodighed." + +msgid "A list of new users" +msgstr "En liste af nye brugere" + +msgid "A list of users that are currently logged in." +msgstr "En liste af indloggede brugere." + +msgid "A user is considered online for this long after they have last viewed a page." +msgstr "En bruger bliver opfattet som online i dette tidsrum efter hun sidst har set en side." + +msgid "Account cancellation request for [user:display-name] at [site:name]" +msgstr "Anmodning om opsigelse af konto for [user:display-name] på [site:name]" + +msgid "Account details for [user:display-name] at [site:name]" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" + +msgid "Account details for [user:display-name] at [site:name] (approved)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" + +msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" + +msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" + +msgid "Account details for [user:display-name] at [site:name] (pending admin approval)" +msgstr "Kontoinformation for [user:display-name] på [site:name] (afventer godkendelse af administrator)" + +msgid "Active" +msgstr "Aktiv" + +msgid "Administrative task links" +msgstr "Links til administrative opgaver" + +msgid "Advanced Queue jobs" +msgstr "Advanced queue jobs" + +msgid "All content, by letter." +msgstr "Alt indhold efter forbogstav." + +msgid "All content, by month." +msgstr "Alt indhold, efter måned." + +msgid "An administrator created an account for you at [site:name]" +msgstr "En administrator har oprettet en konto til dig på [site:name]" + +msgid "Anonymous" +msgstr "Anonym" + +msgid "Anonymous user" +msgstr "Anonym bruger" + +msgid "Archive" +msgstr "Arkiv" + +msgid "Attachment" +msgstr "Bilag" + +msgid "Authenticated user" +msgstr "Godkendt bruger" + +msgid "Available date" +msgstr "" + +msgid "Available from" +msgstr "Available date" + +msgid "Block description" +msgstr "Beskrivelse" + +msgid "Block the selected user(s)" +msgstr "Blokér de(n) valgte bruger(e)" + +msgid "Block type" +msgstr "Bloktype" + +msgid "Blocked" +msgstr "Blokeret" + +msgid "Blocks" +msgstr "Brugerdefineret blokbibliotek" + +msgid "Bulk update" +msgstr "Masseopdatering" + +msgid "Cancel the selected user account(s)" +msgstr "Opsig de valgte brugerkonti" + +msgid "Changed date" +msgstr "Ændringsdato" + +msgid "Compact" +msgstr "Kompakt" + +msgid "Content" +msgstr "Indhold" + +msgid "Content belonging to a certain taxonomy term." +msgstr "Indhold som er knyttet til en bestemt term." + +msgid "Content blocks" +msgstr "Brugerdefineret blokbibliotek" + +msgid "Content type" +msgstr "Indholdstype" + +msgid "Create and edit content blocks." +msgstr "Create and edit block content." + +msgid "D, m/d/Y - H:i" +msgstr "D, d/m/Y - H:i" + +msgid "Default long date" +msgstr "Standard lang dato" + +msgid "Default medium date" +msgstr "Standard mellem dato" + +msgid "Default short date" +msgstr "Standard kort dato" + +msgid "Entity type" +msgstr "Entity-type" + +msgid "Fallback date format" +msgstr "Reservedatoformat" + +msgid "File usage information for {{ arguments.fid }}" +msgstr "Information om brug af filen {{ arguments.fid }}" + +msgid "Filename" +msgstr "Filnavn" + +msgid "Files" +msgstr "Filer" + +msgid "Files overview" +msgstr "Filoversigt" + +msgid "Find and manage content" +msgstr "Find og håndtér indhold" + +msgid "Find and manage content blocks." +msgstr "Find og håndtér brugerdefinerede blokke." + +msgid "Find and manage content." +msgstr "Find og håndtér indhold." + +msgid "Find and manage files." +msgstr "Find og håndtér filer." + +msgid "Find and manage media." +msgstr "" + +msgid "Find and manage people interacting with your site." +msgstr "Find og håndtér personer som bruger dit site." + +msgid "Footer" +msgstr "Sidefod" + +msgid "From" +msgstr "Fra" + +msgid "Full" +msgstr "Fuld" + +msgid "Full content" +msgstr "Fuldt indhold" + +msgid "Glossary" +msgstr "Ordliste" + +msgid "Hero (1440×360)" +msgstr "Hero (1440w) - Crop" + +msgid "Language" +msgstr "Sprog" + +msgid "Last update" +msgstr "Seneste opdatering" + +msgid "Links related to the active user account" +msgstr "Links relateret til den aktive brugerkonto" + +msgid "List" +msgstr "Vis" + +msgid "Main navigation" +msgstr "Primær navigation" + +msgid "Make content sticky" +msgstr "Gør indhold klæbrigt" + +msgid "Make content unsticky" +msgstr "Fjern klæbrighed" + +msgid "Manage user accounts, roles, and permissions." +msgstr "Håndtér brugerkonti, roller og tilladelser." + +msgid "Medium (220×220)" +msgstr "Mellem (220×220)" + +msgid "Member for" +msgstr "Medlem i" + +msgid "Message" +msgstr "Høringssvar" + +msgid "Monthly archive" +msgstr "Månedsarkiv" + +msgid "More" +msgstr "Mere" + +msgid "Name" +msgstr "Navn" + +msgid "Name or email contains" +msgstr "Navn eller e-mail indeholder" + +msgid "No files available." +msgstr "Ingen tilgængelige filer." + +msgid "No media available." +msgstr "No content available." + +msgid "No people available." +msgstr "Ingen personer til rådighed." + +msgid "Not applicable" +msgstr "ikke relevant" + +msgid "Not specified" +msgstr "Ikke angivet" + +msgid "Original language" +msgstr "Originalt sprog" + +msgid "Page title" +msgstr "Sidetitel" + +msgid "People" +msgstr "Personer" + +msgid "Permission" +msgstr "Tilladelse" + +msgid "Plain text" +msgstr "Ren tekst" + +msgid "Please log in to access the uploaded file." +msgstr "Please login to access the uploaded file." + +msgid "Please log in to access this form." +msgstr "Please login to access this form." + +msgid "Please log in to access this submission." +msgstr "Please login to access this submission." + +msgid "Primary admin actions" +msgstr "Primære adminsitratorhandlinger" + +msgid "Promote content to front page" +msgstr "Vis indhold på forsiden" + +msgid "Publish content" +msgstr "Udgiv indhold" + +msgid "Published" +msgstr "Udgivet" + +msgid "Published status" +msgstr "Publiceringsstatus" + +msgid "Recent content" +msgstr "Seneste indhold" + +msgid "Recent content." +msgstr "Seneste indhold." + +msgid "Register" +msgstr "Opret konto" + +msgid "Registering module" +msgstr "Registrerer modul" + +msgid "Remove content from front page" +msgstr "Fjern indhold fra forsiden" + +msgid "Replacement login information for [user:display-name] at [site:name]" +msgstr "Ny login-information for [user:display-name] på [site:name]" + +msgid "Revision" +msgstr "Version" + +msgid "Role" +msgstr "Rolle" + +msgid "Roles" +msgstr "Roller" + +msgid "Save content" +msgstr "Gem indhold" + +msgid "Shows a list of the newest user accounts on the site." +msgstr "Viser en liste af de nyeste brugerkonti på sitet." + +msgid "Shows the user names of the most recently active users, and the total number of active users." +msgstr "Viser navnene på de brugere, der senste har været aktive, og det totale antal af aktive brugere." + +msgid "Site information links" +msgstr "Links til informationen om sitet" + +msgid "Site section links" +msgstr "Links til sitets sektioner" + +msgid "Size" +msgstr "Størrelse" + +msgid "Status messages" +msgstr "Statusmeddelelser" + +msgid "Tabs" +msgstr "Faner" + +msgid "Taxonomy term" +msgstr "Ord i ordforråd" + +msgid "Taxonomy term page" +msgstr "Termside" + +msgid "Teaser" +msgstr "Smagsprøve" + +msgid "Temporary" +msgstr "Midlertidig" + +msgid "There are currently 0 users online." +msgstr "Der er i øjeblikket 0 brugere online." + +msgid "There are currently @total users online." +msgstr "Der er i øjeblikket @total brugere online." + +msgid "There are no content blocks available." +msgstr "There are no custom blocks available." + +msgid "This question is for testing whether or not you are a human visitor and to prevent automated spam submissions." +msgstr "Please type the text you see in the captcha image to prove you are human" + +msgid "To" +msgstr "Til" + +msgid "True" +msgstr "Sandt" + +msgid "Unblock the selected user(s)" +msgstr "Fjern blokering af de(n) valgte bruger(e)" + +msgid "Unpublish content" +msgstr "Afpubliceer indhold" + +msgid "Unpublished" +msgstr "Ikke udgivet" + +msgid "Upload date" +msgstr "Upload-dato" + +msgid "Use count" +msgstr "Brug antal" + +msgid "Used in" +msgstr "Brugt i" + +msgid "User" +msgstr "Bruger" + +msgid "User account" +msgstr "Brugerkonto" + +msgid "User account menu" +msgstr "Brugerkontomenu" + +msgid "User tool links, often added by modules" +msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" + +msgid "Username" +msgstr "Brugernavn" + +msgid "Who's new" +msgstr "Nye brugere" + +msgid "Who's online" +msgstr "Hvem er online" + +msgid "" +"[user:display-name]\n" +"\n" +"A request to cancel your account has been made at [site:name].\n" +"\n" +"You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:cancel-url]\n" +"\n" +"NOTE: The cancellation of your account is not reversible.\n" +"\n" +"This link expires in one day and nothing will happen if it is not used.\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"A request to cancel your account has been made at [site:name].\n" +"\n" +"You may now cancel your account on [site:url-brief] by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:cancel-url]\n" +"\n" +"NOTE: The cancellation of your account is not reversible.\n" +"\n" +"This link expires in one day and nothing will happen if it is not used.\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" +msgstr "" +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" + +msgid "" +"[user:display-name],\n" +"\n" +"A request to reset the password for your account has been made at [site:name].\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"A request to reset the password for your account has been made at [site:name].\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password. It expires after one day and nothing will happen if it's not used.\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"Thank you for registering at [site:name]. Your application for an account is currently pending approval. Once it has been approved, you will receive another email containing information about how to log in, set your password, and other details.\n" +"\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"Your account at [site:name] has been activated.\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:account-name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"Your account at [site:name] has been activated.\n" +"\n" +"You may now log in by clicking this link or copying and pasting it into your browser:\n" +"\n" +"[user:one-time-login-url]\n" +"\n" +"This link can only be used once to log in and will lead you to a page where you can set your password.\n" +"\n" +"After setting your password, you will be able to log in at [site:login-url] in the future using:\n" +"\n" +"username: [user:account-name]\n" +"password: Your password\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been blocked.\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been blocked.\n" +"\n" +"-- [site:name] team" + +msgid "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been canceled.\n" +"\n" +"-- [site:name] team" +msgstr "" +"[user:display-name],\n" +"\n" +"Your account on [site:name] has been canceled.\n" +"\n" +"-- [site:name] team" + +msgid "l, F j, Y - H:i" +msgstr "\\d. j. F Y" + +msgid "m/d/Y - H:i" +msgstr "d/m/Y - H:i" + +msgid "more" +msgstr "mere" diff --git a/translations/custom-translations.da.po b/translations/custom-translations.da.po deleted file mode 100644 index 6b2f8a8dc..000000000 --- a/translations/custom-translations.da.po +++ /dev/null @@ -1,1689 +0,0 @@ -# Danish translation of Deltag Aarhus – Aarhus kommune -# -msgid "" -msgstr "" -"Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-17 10:48+0100\n" -"PO-Revision-Date: 2025-03-17 10:48+0100\n" -"Last-Translator: NAME \n" -"Language-Team: LANGUAGE \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" - -msgid "Primary admin actions" -msgstr "Primary admin actions" - -msgid "Tabs" -msgstr "Tabs" - -msgid "User login" -msgstr "User login" - -msgid "Status messages" -msgstr "Status messages" - -msgid "Page title" -msgstr "Page title" - -msgid "Tools" -msgstr "Tools" - -msgid "Fallback date format" -msgstr "Fallback date format" - -msgid "Default long date" -msgstr "Default long date" - -msgctxt "PHP date format" -msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" - -msgid "Default medium date" -msgstr "Default medium date" - -msgctxt "PHP date format" -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" - -msgid "Default short date" -msgstr "Default short date" - -msgctxt "PHP date format" -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" - -msgid "Register" -msgstr "Register" - -msgid "Full" -msgstr "Full" - -msgid "Full content" -msgstr "Full content" - -msgid "Search index" -msgstr "Search index" - -msgid "Search result highlighting input" -msgstr "Search result highlighting input" - -msgid "Teaser" -msgstr "Teaser" - -msgid "Taxonomy term page" -msgstr "Taxonomy term page" - -msgid "Compact" -msgstr "Compact" - -msgid "User account" -msgstr "User account" - -msgid "Plain text" -msgstr "Plain text" - -msgid "Large (480×480)" -msgstr "Large (480×480)" - -msgid "Medium (220×220)" -msgstr "Medium (330×330)" - -msgid "Not specified" -msgstr "Not specified" - -msgid "Not applicable" -msgstr "Not applicable" - -msgid "Delete content" -msgstr "Delete content" - -msgid "Make content sticky" -msgstr "Make content sticky" - -msgid "Make content unsticky" -msgstr "Make content unsticky" - -msgid "Promote content to front page" -msgstr "Promote content to front page" - -msgid "Publish content" -msgstr "Publish content" - -msgid "Save content" -msgstr "Save content" - -msgid "Remove content from front page" -msgstr "Remove content from front page" - -msgid "Unpublish content" -msgstr "Unpublish content" - -msgid "Update URL alias" -msgstr "Update URL alias" - -msgid "Block the selected user(s)" -msgstr "Block the selected user(s)" - -msgid "Cancel the selected user account(s)" -msgstr "Cancel the selected user account(s)" - -msgid "Unblock the selected user(s)" -msgstr "Unblock the selected user(s)" - -msgid "" -"@site is currently under maintenance. We should be back shortly. Thank " -"you for your patience." -msgstr "" -"@site is currently under maintenance. We should be back shortly. Thank " -"you for your patience." - -msgid "User account menu" -msgstr "User account menu" - -msgid "Links related to the active user account" -msgstr "Links related to the active user account" - -msgid "Administrative task links" -msgstr "Administrative task links" - -msgid "Footer" -msgstr "Footer" - -msgid "Site information links" -msgstr "Site information links" - -msgid "Main navigation" -msgstr "Main navigation" - -msgid "Site section links" -msgstr "Site section links" - -msgid "User tool links, often added by modules" -msgstr "User tool links, often added by modules" - -msgid "" -"[user:display-name],\n" -"\n" -"A request to cancel your account has been " -"made at [site:name].\n" -"\n" -"You may now cancel your account on " -"[site:url-brief] by clicking this link or copying and pasting it into " -"your browser:\n" -"\n" -"[user:cancel-url]\n" -"\n" -"NOTE: The cancellation of " -"your account is not reversible.\n" -"\n" -"This link expires in one day and " -"nothing will happen if it is not used.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"A request to cancel your account has " -"been made at [site:name].\r\n" -"\r\n" -"You may now cancel your account on " -"[site:url-brief] by clicking this link or copying and pasting it into " -"your browser:\r\n" -"\r\n" -"[user:cancel-url]\r\n" -"\r\n" -"NOTE: The " -"cancellation of your account is not reversible.\r\n" -"\r\n" -"This link " -"expires in one day and nothing will happen if it is not " -"used.\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Account cancellation request for [user:display-name] at [site:name]" -msgstr "Account cancellation request for [user:display-name] at [site:name]" - -msgid "" -"[user:display-name],\n" -"\n" -"A request to reset the password for your " -"account has been made at [site:name].\n" -"\n" -"You may now log in by " -"clicking this link or copying and pasting it into your " -"browser:\n" -"\n" -"[user:one-time-login-url]\n" -"\n" -"This link can only be " -"used once to log in and will lead you to a page where you can set your " -"password. It expires after one day and nothing will happen if it's not " -"used.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"A request to reset the password for your " -"account has been made at [site:name].\r\n" -"\r\n" -"You may now log in by " -"clicking this link or copying and pasting it into your " -"browser:\r\n" -"\r\n" -"[user:one-time-login-url]\r\n" -"\r\n" -"This link can " -"only be used once to log in and will lead you to a page where you can " -"set your password. It expires after one day and nothing will happen if " -"it's not used.\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Replacement login information for [user:display-name] at [site:name]" -msgstr "Replacement login information for [user:display-name] at [site:name]" - -msgid "" -"[user:display-name],\n" -"\n" -"A site administrator at [site:name] has " -"created an account for you. You may now log in by clicking this link " -"or copying and pasting it into your " -"browser:\n" -"\n" -"[user:one-time-login-url]\n" -"\n" -"This link can only be " -"used once to log in and will lead you to a page where you can set your " -"password.\n" -"\n" -"After setting your password, you will be able to log in " -"at [site:login-url] in the future using:\n" -"\n" -"username: " -"[user:name]\n" -"password: Your password\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"A site administrator at [site:name] has " -"created an account for you. You may now log in by clicking this link " -"or copying and pasting it into your " -"browser:\r\n" -"\r\n" -"[user:one-time-login-url]\r\n" -"\r\n" -"This link can " -"only be used once to log in and will lead you to a page where you can " -"set your password.\r\n" -"\r\n" -"After setting your password, you will be " -"able to log in at [site:login-url] in the future " -"using:\r\n" -"\r\n" -"username: [user:name]\r\n" -"password: Your " -"password\r\n" -"\r\n" -"-- [site:name] team" - -msgid "An administrator created an account for you at [site:name]" -msgstr "An administrator created an account for you at [site:name]" - -msgid "" -"[user:display-name],\n" -"\n" -"Thank you for registering at [site:name]. " -"You may now log in by clicking this link or copying and pasting it " -"into your browser:\n" -"\n" -"[user:one-time-login-url]\n" -"\n" -"This link can " -"only be used once to log in and will lead you to a page where you can " -"set your password.\n" -"\n" -"After setting your password, you will be able " -"to log in at [site:login-url] in the future using:\n" -"\n" -"username: " -"[user:name]\n" -"password: Your password\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Thank you for registering at " -"[site:name]. You may now log in by clicking this link or copying and " -"pasting it into your " -"browser:\r\n" -"\r\n" -"[user:one-time-login-url]\r\n" -"\r\n" -"This link can " -"only be used once to log in and will lead you to a page where you can " -"set your password.\r\n" -"\r\n" -"After setting your password, you will be " -"able to log in at [site:login-url] in the future " -"using:\r\n" -"\r\n" -"username: [user:name]\r\n" -"password: Your " -"password\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Account details for [user:display-name] at [site:name]" -msgstr "Account details for [user:display-name] at [site:name]" - -msgid "" -"[user:display-name],\n" -"\n" -"Thank you for registering at [site:name]. " -"Your application for an account is currently pending approval. Once it " -"has been approved, you will receive another email containing " -"information about how to log in, set your password, and other " -"details.\n" -"\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Thank you for registering at " -"[site:name]. Your application for an account is currently pending " -"approval. Once it has been approved, you will receive another email " -"containing information about how to log in, set your password, and " -"other details.\r\n" -"\r\n" -"\r\n" -"-- [site:name] team" - -msgid "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" -msgstr "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" - -msgid "" -"[user:display-name] has applied for an account.\n" -"\n" -"[user:edit-url]" -msgstr "" -"[user:display-name] has applied for an " -"account.\r\n" -"\r\n" -"[user:edit-url]" - -msgid "" -"[user:display-name],\n" -"\n" -"Your account at [site:name] has been " -"activated.\n" -"\n" -"You may now log in by clicking this link or copying " -"and pasting it into your " -"browser:\n" -"\n" -"[user:one-time-login-url]\n" -"\n" -"This link can only be " -"used once to log in and will lead you to a page where you can set your " -"password.\n" -"\n" -"After setting your password, you will be able to log in " -"at [site:login-url] in the future using:\n" -"\n" -"username: " -"[user:account-name]\n" -"password: Your password\n" -"\n" -"-- [site:name] " -"team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Your account at [site:name] has been " -"activated.\r\n" -"\r\n" -"You may now log in by clicking this link or " -"copying and pasting it into your " -"browser:\r\n" -"\r\n" -"[user:one-time-login-url]\r\n" -"\r\n" -"This link can " -"only be used once to log in and will lead you to a page where you can " -"set your password.\r\n" -"\r\n" -"After setting your password, you will be " -"able to log in at [site:login-url] in the future " -"using:\r\n" -"\r\n" -"username: [user:account-name]\r\n" -"password: Your " -"password\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Account details for [user:display-name] at [site:name] (approved)" -msgstr "Account details for [user:display-name] at [site:name] (approved)" - -msgid "" -"[user:display-name],\n" -"\n" -"Your account on [site:name] has been " -"blocked.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Your account on [site:name] has been " -"blocked.\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Account details for [user:display-name] at [site:name] (blocked)" -msgstr "Account details for [user:display-name] at [site:name] (blocked)" - -msgid "" -"[user:display-name],\n" -"\n" -"Your account on [site:name] has been " -"canceled.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Your account on [site:name] has been " -"canceled.\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Account details for [user:display-name] at [site:name] (canceled)" -msgstr "Account details for [user:display-name] at [site:name] (canceled)" - -msgid "Anonymous user" -msgstr "Anonym bruger" - -msgid "Authenticated user" -msgstr "Godkendt bruger" - -msgid "Anonymous" -msgstr "Anonymous" - -msgid "Archive" -msgstr "Archive" - -msgid "All content, by month." -msgstr "All content, by month." - -msgid "Monthly archive" -msgstr "Monthly archive" - -msgid "Apply" -msgstr "Apply" - -msgid "Reset" -msgstr "Nulstil" - -msgid "Sort by" -msgstr "Sort by" - -msgid "Asc" -msgstr "Asc" - -msgid "Desc" -msgstr "Desc" - -msgid "Items per page" -msgstr "Items per page" - -msgid "- All -" -msgstr "- All -" - -msgid "Offset" -msgstr "Offset" - -msgid "Block" -msgstr "Block" - -msgid "Page" -msgstr "Side" - -msgid "Custom block library" -msgstr "Custom block library" - -msgid "Find and manage custom blocks." -msgstr "Find and manage custom blocks." - -msgid "‹ Previous" -msgstr "‹ Previous" - -msgid "Next ›" -msgstr "Next ›" - -msgid "Block description" -msgstr "Block description" - -msgid "Block type" -msgstr "Block type" - -msgid "Updated" -msgstr "Updated" - -msgid "Operations" -msgstr "Operations" - -msgid "Content" -msgstr "Content" - -msgid "Find and manage content." -msgstr "Find and manage content." - -msgid "« First" -msgstr "« First" - -msgid "Last »" -msgstr "Last »" - -msgid "Title" -msgstr "Titel" - -msgid "Content type" -msgstr "Content type" - -msgid "Author" -msgstr "Author" - -msgid "Published" -msgstr "Published" - -msgid "Unpublished" -msgstr "Unpublished" - -msgid "Published status" -msgstr "Published status" - -msgid "Language" -msgstr "Language" - -msgid "No content available." -msgstr "No content available." - -msgid "Find and manage content" -msgstr "Find and manage content" - -msgid "Recent content" -msgstr "Recent content" - -msgid "Recent content." -msgstr "Recent content." - -msgid "More" -msgstr "More" - -msgid "Files" -msgstr "Files" - -msgid "Find and manage files." -msgstr "Find and manage files." - -msgid "Name" -msgstr "Navn" - -msgid "Size" -msgstr "Size" - -msgid "Temporary" -msgstr "Temporary" - -msgid "Upload date" -msgstr "Upload date" - -msgid "Changed date" -msgstr "Changed date" - -msgid "Used in" -msgstr "Used in" - -msgid "Filename" -msgstr "Filename" - -msgid "No files available." -msgstr "No files available." - -msgid "Files overview" -msgstr "Files overview" - -msgid "Entity type" -msgstr "Entity type" - -msgid "Registering module" -msgstr "Registering module" - -msgid "Use count" -msgstr "Use count" - -msgid "All" -msgstr "All" - -msgid "File usage information for {{ arguments.fid }}" -msgstr "File usage information for {{ arguments.fid }}" - -msgid "Frontpage" -msgstr "Frontpage" - -msgid "All content promoted to the front page." -msgstr "All content promoted to the front page." - -msgid "Welcome to [site:name]" -msgstr "Welcome to [site:name]" - -msgid "Glossary" -msgstr "Glossary" - -msgid "All content, by letter." -msgstr "All content, by letter." - -msgid "Last update" -msgstr "Last update" - -msgid "Attachment" -msgstr "Attachment" - -msgid "Taxonomy term" -msgstr "Taxonomy term" - -msgid "Content belonging to a certain taxonomy term." -msgstr "Content belonging to a certain taxonomy term." - -msgid "People" -msgstr "People" - -msgid "Find and manage people interacting with your site." -msgstr "Find and manage people interacting with your site." - -msgid "Bulk update" -msgstr "Bulk update" - -msgid "Username" -msgstr "Username" - -msgid "Active" -msgstr "Active" - -msgid "Blocked" -msgstr "Blocked" - -msgid "Roles" -msgstr "Roles" - -msgid "Member for" -msgstr "Member for" - -msgid "Last access" -msgstr "Last access" - -msgid "Name or email contains" -msgstr "Name or email contains" - -msgid "Role" -msgstr "Role" - -msgid "Permission" -msgstr "Permission" - -msgid "No people available." -msgstr "No people available." - -msgid "more" -msgstr "more" - -msgid "List" -msgstr "List" - -msgid "Manage user accounts, roles, and permissions." -msgstr "Manage user accounts, roles, and permissions." - -msgid "Watchdog" -msgstr "Watchdog" - -msgid "Recent log messages" -msgstr "Recent log messages" - -msgid "Icon" -msgstr "Icon" - -msgid "Severity" -msgstr "Severity" - -msgid "Date" -msgstr "Dato" - -msgid "Message" -msgstr "Høringssvar" - -msgid "User" -msgstr "User" - -msgid "No log messages available." -msgstr "No log messages available." - -msgid "Who's new" -msgstr "Who's new" - -msgid "Shows a list of the newest user accounts on the site." -msgstr "Shows a list of the newest user accounts on the site." - -msgid "A list of new users" -msgstr "A list of new users" - -msgid "Who's online block" -msgstr "Who's online block" - -msgid "" -"Shows the user names of the most recently active users, and the total " -"number of active users." -msgstr "" -"Shows the user names of the most recently active users, and the total " -"number of active users." - -msgid "" -"A user is considered online for this long after they have last viewed " -"a page." -msgstr "" -"A user is considered online for this long after they have last viewed " -"a page." - -msgid "Who's online" -msgstr "Who's online" - -msgid "There are currently @total users online." -msgstr "There are currently @total users online." - -msgid "There are currently 0 users online." -msgstr "There are currently 0 users online." - -msgid "A list of users that are currently logged in." -msgstr "A list of users that are currently logged in." - -msgid "Description" -msgstr "Beskrivelse" - -msgid "Hero (1440×360)" -msgstr "Hero (1440w) - Crop" - -msgid "There are no custom blocks available." -msgstr "There are no custom blocks available." - -msgid "Email address" -msgstr "E-mailadresse" - -msgid "Default" -msgstr "Default" - -msgid "Briefly describe the changes you have made." -msgstr "" -"Giv en kort beskrivelse af dine ændringer, hvis du har ændret i " -"indholdet efter publicering." - -msgid "Confirm removal" -msgstr "Bekræft sletning" - -msgid "Allowed types: @extensions." -msgstr "" -"Tilladte typer: @extensions. Hold gerne filernes navne korte, gerne " -"under 20 bogstaver og uden symboler som +/- og lignende." - -msgid "Remove selected" -msgstr "Fjern det valgte" - -msgid "Nodes" -msgstr "Indhold" - -msgid "Document" -msgstr "Document" - -msgid "File upload" -msgstr "File upload" - -msgid "Image upload" -msgstr "Image upload" - -msgid "Delete media" -msgstr "Delete media" - -msgid "Publish media" -msgstr "Publish media" - -msgid "Save media" -msgstr "Save media" - -msgid "Unpublish media" -msgstr "Unpublish media" - -msgid "Media library" -msgstr "Medie bibliotek" - -msgid "A taxonomy to structure your media library" -msgstr "En taksonomi der kan bruges til at strukturere mediebiblioteket" - -msgid "The tag will help you navigate in your media library" -msgstr "The tag will help you navigate in your media library" - -msgid "Search for documents" -msgstr "Search for documents" - -msgid "Search for images" -msgstr "Search for images" - -msgid "Upload new image" -msgstr "Upload new image" - -msgid "Upload new document" -msgstr "Upload new document" - -msgid "Media name" -msgstr "Media name" - -msgid "Initiative" -msgstr "Initiativ" - -msgid "Find and manage media." -msgstr "" - -msgid "Project info" -msgstr "Initiativ info" - -msgid "Add another item" -msgstr "Tilføj endnu et element" - -msgid "Materials" -msgstr "Materialer" - -msgid "Node address" -msgstr "Adresse" - -msgid "Node more info" -msgstr "Mere information" - -msgid "Hearing tickets" -msgstr "Høringssvar" - -msgid "Deskpro" -msgstr "Sagsbehandlersystem" - -msgid "Attachments" -msgstr "Vedhæftninger" - -msgid "Replies" -msgstr "Bidrag" - -msgid "Block title" -msgstr "Titel" - -msgid "Description field" -msgstr "Beskrivelse" - -msgid "State" -msgstr "State" - -msgid "Start date" -msgstr "Start dato" - -msgid "Reply" -msgstr "Bidrag" - -msgid "Project not secure" -msgstr "Initiativ ikke sikkert" - -msgid "Project revoked" -msgstr "Initiativ tilbagekaldt" - -msgid "Project not supported" -msgstr "Initiativ ikke understøttet" - -msgid "Your email address" -msgstr "" -"Din e-mailadresse (Obs. din e-mail vil ikke blive vist på " -"deltag.aarhus.dk)" - -msgid "" -"Email address for a given user. This field is normally not shown to " -"users, so be cautious when using it." -msgstr "" -"E-mailadresse for en given bruger. Dette felt vises normalt ikke til " -"brugere, så brug det med omtanke." - -msgctxt "Entity type group" -msgid "Content" -msgstr "Indhold" - -msgid "Email addresses to notify when updates are available" -msgstr "E-mailadresser, der underrettes, når opdateringer er tilgængelige" - -msgid "This must be an external URL such as %url." -msgstr "Skal være en ekstern URL som fx %url." - -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" - -msgid "Hearing tickets (@count)" -msgstr "Høringssvar (@count)" - -msgid "Reply date" -msgstr "Svarfrist" - -msgid "Show on map" -msgstr "Vis på kort" - -msgid "Your search yielded no result" -msgstr "Din søgning gav ingen resultater." - -msgid "Information page" -msgstr "Information" - -msgid "Answer @number by @name" -msgstr "Bidrag @number af @name" - -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." - -msgid "Show more hearings" -msgstr "Vis flere høringer" - -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." - -msgid "Note! Hearing deadline approaching." -msgstr "Note! Hørings tidsfristen nærmer sig." - -msgid "Content on this page" -msgstr "Indhold på denne side" - -msgid "Open project gallery" -msgstr "Åbn projektgalleri" - -msgid "Finished" -msgstr "Afsluttet" - -msgid "Hearing" -msgstr "Høring" - -msgid "Hearing reply for" -msgstr "Høringssvar for" - -msgid "Hearing reply by @name" -msgstr "Høringssvar fra @name" - -msgid "Answer #@number by @name" -msgstr "Bidrag #@number af @name" - -msgid "Create hearing reply" -msgstr "Skriv høringssvar" - -msgid "Note! This hearing has not started yet" -msgstr "Note! Denne høring er ikke startet endnu." - -msgid "Project start" -msgstr "Initiativ start" - -msgid "Project end" -msgstr "Initiativ slut" - -msgid "Project finish" -msgstr "Initiativ afslutning" - -msgid "Download ticket as pdf" -msgstr "Download høringssvar som pdf" - -msgid "Meeting" -msgstr "Møde" - -msgid "Debate" -msgstr "Debat" - -msgid "Expected end date" -msgstr "Forventet slutdato" - -msgid "Hearing id" -msgstr "Hørings-id" - -msgid "" -"This question is for testing whether or not you are a human visitor " -"and to prevent automated spam submissions." -msgstr "" -"Please type the text you see in the captcha image to prove you are " -"human" - -msgid "Hearing reply" -msgstr "Høringssvar" - -msgid "Sent d." -msgstr "Indsendt" - -msgid "Represents" -msgstr "Udtaler sig som" - -msgid "My address is secret" -msgstr "Jeg har adressebeskyttelse" - -msgid "Select entities" -msgstr "Vælg fil" - -msgid "" -"[user:display-name],\n" -"\n" -"Thank you for registering at [site:name]. " -"Your application for an account is currently pending approval. Once it " -"has been approved, you will receive another email containing " -"information about how to log in, set your password, and other " -"details.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"Thank you for registering at " -"[site:name]. Your application for an account is currently pending " -"approval. Once it has been approved, you will receive another email " -"containing information about how to log in, set your password, and " -"other details.\r\n" -"\r\n" -"\r\n" -"-- [site:name] team" - -msgid "" -"Your hearing ticket has being submitted and will appear here in a few " -"minutes." -msgstr "" -"Dit høringssvar er indsendt og bliver vist her på siden inden for " -"kort tid." - -msgid "Upcoming" -msgstr "På vej" - -msgid "Teaser/indledning" -msgstr "Teaser/indledning" - -msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" -msgstr "Kort tekst der vises i teasers og i toppen af indholdsvisningen" - -msgid "Beskrivelse af høringen." -msgstr "" -"Beskrivelse af høringen. Tænk gerne i korte og præcise afsnit, da " -"mange vil læse materialet på sin mobil. " - -msgid "Vælg dokumenter der beskriver høringen." -msgstr "" -"Vælg dokumenter der skal tilføjes. Vær opmærksom på at dine " -"dokumenter skal være webtilgængelige. Hvis du er i tvivl om hvad " -"dette omhandler kan du læse mere her: " -"https://digst.dk/digital-service/webtilgaengelighed/" - -msgid "Video embed" -msgstr "Video" - -msgid "" -"Tilføj video embed code. \n" -"Det er redaktørens ansvar at videoen " -"overholder kommunens GDPR retningslinjer. \n" -"Hvis du er i tvivl " -"kan du spørge den GDPR ansvarlige i din afdeling." -msgstr "" -"Du kan benytte videoer fra Youtube og Vimeo - Du skal dog være " -"opmærksom på om videoer fra Vimeo sætter cookies. Grundet regler " -"for Cookie lovgivningen kan du ikke selv uploade videoer, og du skal " -"derfor sende linket til den video du vil bruge på support@itkdev.dk " -"for at få hjælp. Vær desuden opmærksom på om videoen er " -"webtilgængelig." - -msgid "Vælg kortvisning for høringen." -msgstr "" -"Vælg kortvisning for høringen. Hvis dette giver dig problemer skal " -"du sørge for at benytte browseren: Chrome eller Microsoft edge" - -msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" -msgstr "" -"Find evt. lokalplan-id'er på " -"https://visplaner.plandata.dk/visplaner/lokalplaner.html" - -msgid "Vælg sagsbehandler for høringen." -msgstr "" -"Vælg sagsbehandler for høringen. \r\n" -"OBS! Hvis du ikke kan finde " -"dig selv på listen, skal du oprettes i sagsbehandlersystemet. " -"Kontakt: mida@aarhus.dk" - -msgid "" -"Start og slut dato og alle høringer for forløbet plottes automatisk " -"ind på tidslinjen. Du kan bruge dette felt til at plotte flere " -"relevante punkter ind." -msgstr "" -"Start og slut dato og alle høringer for forløbet plottes " -"automatisk ind på tidslinjen. Du kan bruge nedenstående felt til at " -"plotte flere relevante punkter ind." - -msgid "Indtast eDoc-sagsnr. for høringen." -msgstr "" -"Indtast eDoc-sagsnr. for høringen. \r\n" -"OBS! Tjek at du har indsat " -"det korrekte sagsnr. Hvis nummeret er forkert bliver høringssvarene " -"ikke arkiveret korrekt." - -msgid "Ticket reference" -msgstr "Sagsnummer" - -msgid "media" -msgstr "medie" - -msgid "Project gallery" -msgstr "Projektgalleri" - -msgid "Point" -msgstr "Vælg punkt på kort" - -msgid "Available date" -msgstr "" - -msgid "You can select up to @maximum @entity_type (@remaining left)." -msgstr "Du kan vælge op til @maximum @entity_type (@remaining tilbage)." - -msgid "Advanced Queue jobs" -msgstr "Advanced queue jobs" - -msgid "
{{ payload }}
" -msgstr "" - -msgid "Available from" -msgstr "Available date" - -msgid "Spots" -msgstr "Pladser" - -msgid "Beskrivelse af borgemødet." -msgstr "" -"Kort beskrivelse af begivenheden. Udvidet beskrivelse indsættes under " -"'indhold' længere nede på siden." - -msgid "Vælg billeder der skal vises i teaservisningen." -msgstr "Vælg billede der skal vises i oversigten" - -msgid "Start time" -msgstr "Starttidspunkt" - -msgid "End time" -msgstr "Sluttidspunkt" - -msgid "Number of spots" -msgstr "Antal pladser" - -msgid "Vælg den projekttidslinje som høringen er tilknyttet." -msgstr "" -"Vælg den projekttidslinje som høringen er tilknyttet. En " -"projekttidslinje viser de aktiviteter, der indgår i et overordnet " -"projekt. \r\n" -"OBS! Tidslinjen skal oprettes først, for at kunne " -"fremsøges på listen." - -msgid "Select template event" -msgstr "Vælg skabelon til dit møde" - -msgid "Select the template event to clone when creating the pretix event" -msgstr "" -"Vælg det event der passer til dit møde / arrangement. Har du behov " -"for specielle tilpasninger til dit arrangement, kontakt: " -"support@itkdev.dk" - -msgid "Synchronize event in pretix" -msgstr "Synkroniser event i Pretix (Skal altid være slået til) " - -msgid "" -"If set, the pretix event will be updated when changes are made to the " -"dates on this node" -msgstr "" -"Når denne er valgt vil ændringer her på siden automatisk slå " -"igennem i Pretix (Tilmeldingssystemet)" - -msgid "Last date for signup" -msgstr "Tilmeldingsfrist" - -msgid "" -"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun i " -"backend som eventuel hjælp til redaktørerne." -msgstr "" -"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun til " -"redaktører." - -msgid "" -"Start og slut dato og alle høringer og borgermøde fra systemet " -"plottes automatisk ind på tidslinjen. \n" -"Du kan bruge dette felt " -"til at plotte flere relevante punkter ind." -msgstr "" -"Start og slut dato og alle høringer og begivenheder fra " -"systemet plottes automatisk ind på tidslinjen. Du kan bruge " -"nedenstående felt til at plotte flere relevante punkter ind." - -msgid "Public meeting" -msgstr "Begivenhed" - -msgid "You can select one @entity_type." -msgstr "Du kan kun vælge ét @entity_type." - -msgid "Meeting has already been held" -msgstr "Mødet er afholdt" - -msgid "Sign up for public meeting" -msgstr "Tilmeld dig her" - -msgid "Sign up" -msgstr "Tilmeld dig her" - -msgid "Check denne boks hvis du ønsker at skjule tilmelding i frontend" -msgstr "" -"Vælg denne hvis mødet er til en lukket gruppe af inviterede, og " -"tilmelding ikke skal være muligt via hjemmesiden. Når mødet er " -"oprettet vil du her finde et link du kan sende til de inviterede." - -msgid "" -"Start typing the title of a piece of content to select it. You can " -"also enter an internal path such as %add-node or an external URL such " -"as %url. Enter %front to link to the front page. Enter %nolink to " -"display link text only." -msgstr "" -"Skriv titlen på det indhold du gerne vil vælge. Du kan også " -"indsætte en sti som fx %add-node eller en ekstern URL som fx %url. " -"Skriv %front for at linke til forsiden. Skriv %nolink for at vise et " -"tekst-link." - -msgid "Note! This public meeting has been held." -msgstr "Denne begivenhed er afholdt" - -msgid "Show pretix orders" -msgstr "Se deltagerliste" - -msgid "@ticket_ref by @person_name" -msgstr "@ticket_ref af @person_name" - -msgid "Your address will not be shown on the website." -msgstr "" -"Din adresse vil ikke blive vist på hjemmesiden - se evt. betingelser " -"nederst på siden" - -msgid "Registration deadline passed" -msgstr "Deadline for tilmelding er overskredet" - -msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." -msgstr "" -"Benyt tilmeldingssystem: Brug denne hvis du gerne vil " -"have at borgeren tilmelder sig via systemet.
\r\n" -"Benyt " -"ikke tilmeldingssystem: Brug denne hvis borgeren ikke " -"behøver at tilmelde sig eller hvis du vil bruge dit eget system. " -"
\r\n" -"Bemærk at du ikke kan ændre tilmeldingstypen senere." - -msgid "Opens in a new tab" -msgstr "Åbner i en ny fane" - -msgid "Place" -msgstr "Lokation" - -msgid "Last signup date" -msgstr "Tilmeldingsfrist" - -msgid "Expected finish" -msgstr "Forventet afsluttet" - -msgid "Cancelled" -msgstr "Aflyst" - -msgid "Check this box if the meeting is cancelled" -msgstr "Sæt kryds her hvis mødet er aflyst" - -msgid "Cancelled text" -msgstr "Tekst omhandlende aflysning" - -msgid "Cancelled date" -msgstr "Aflyst dato" - -msgid "Cancellation" -msgstr "Aflysning" - -msgid "Note! This public meeting has been cancelled." -msgstr "Note! Denne begivenhed er aflyst" - -msgid "Vælg tidslinje som borgermødet er knyttet til." -msgstr "" -"Vælg den projekttidslinje som begivenheden er tilknyttet. En " -"projekttidslinje viser de aktiviteter, der indgår i et overordnet " -"projekt. OBS! Tidslinjen skal oprettes på oversigtssiden " -"først, for at kunne fremsøges på listen." - -msgid "Postal code and city" -msgstr "Postnummer og by" - -msgid "Street and number" -msgstr "Vejnavn og nummer" - -msgid "Name (@organization)" -msgstr "Navn (@organization)" - -msgid "Email address (@organization)" -msgstr "" -"Email adresse (@organization) Obs. din e-mail vil ikke være synlig " -"på deltag.aarhus.dk" - -msgid "Your postal code and city" -msgstr "" -"Dit postnummer og by (Obs. din adresse vil ikke blive vist på " -"deltag.aarhus.dk)" - -msgid "Postal code and city (@organization)" -msgstr "" -"Postnummer og by (@organization) Obs. din e-mail vil ikke være synlig " -"på deltag.aarhus.dk" - -msgid "Your street and number" -msgstr "" -"Dit vejnavn og nummer (Obs. din adresse vil ikke blive vist på " -"deltag.aarhus.dk)" - -msgid "Street and number (@organization)" -msgstr "" -"Vejnavn og nummer (@organization) \r\n" -"Obs. din adresse vil ikke være " -"synlig på deltag.aarhus.dk" - -msgid "Select none" -msgstr "Vælg ingen" - -msgid "Add hearing reply" -msgstr "Tilføj høringssvar" - -msgid "Dagtilbud og skole" -msgstr "Dagtilbud, skole og fritids- og ungdomsskoleområdet." - -msgid "" -"Vælg områder som borgermødet dækker. Markér alle hvis " -"borgermødet dækker hele kommunen." -msgstr "" -"Vælg områder som begivenheden dækker. Markér alle hvis " -"begivenheden dækker hele kommunen." - -msgid "Borgermødet" -msgstr "Begivenheden" - -msgid "No media available." -msgstr "No content available." - -msgid "" -"[user:display-name]\n" -"\n" -"A request to cancel your account has been " -"made at [site:name].\n" -"\n" -"You may now cancel your account on " -"[site:url-brief] by clicking this link or copying and pasting it into " -"your browser:\n" -"\n" -"[user:cancel-url]\n" -"\n" -"NOTE: The cancellation of " -"your account is not reversible.\n" -"\n" -"This link expires in one day and " -"nothing will happen if it is not used.\n" -"\n" -"-- [site:name] team" -msgstr "" -"[user:display-name],\r\n" -"\r\n" -"A request to cancel your account has " -"been made at [site:name].\r\n" -"\r\n" -"You may now cancel your account on " -"[site:url-brief] by clicking this link or copying and pasting it into " -"your browser:\r\n" -"\r\n" -"[user:cancel-url]\r\n" -"\r\n" -"NOTE: The " -"cancellation of your account is not reversible.\r\n" -"\r\n" -"This link " -"expires in one day and nothing will happen if it is not " -"used.\r\n" -"\r\n" -"-- [site:name] team" - -msgid "Would you like a direct message when deltag.aarhus.dk has new content?" -msgstr "Vil du modtage en mail når der er nyt fra deltag.aarhus.dk?" - -msgid "" -"Sign up to our message service and be " -"informed about your interests" -msgstr "" -"Tilmeld dig vores nye service og bliv " -"informeret når der er nyt der interesserer dig" - -msgid "Show hearing tickets" -msgstr "Vis indkomne svar" - -msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" - -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" - -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" - -msgid "Phone" -msgstr "Telefonnummer" - -msgid "Display email" -msgstr "Ja, vis min e-mail på mit borgerforslag" - -msgid "@remaining characters left." -msgstr "@remaining tegn tilbage" - -msgid "Proposal" -msgstr "Forslag" - -msgid "Remarks" -msgstr "Begrundelse" - -msgid "Create proposal" -msgstr "Opret borgerforslag" - -msgid "Create new proposal" -msgstr "Opret borgerforslag" - -msgid "Share the proposal" -msgstr "Del forslaget" - -msgid "Create your proposal" -msgstr "Opret borgerforslag" - -msgid "Sign out" -msgstr "Log ud" - -msgid "You're currently authenticated as %name" -msgstr "Du er logget ind som %name" - -msgid "Phone number" -msgstr "Telefonnummer" - -msgid "Approve proposal" -msgstr "Godkend borgerforslag" - -msgid "Edit proposal" -msgstr "Ret borgerforslag" - -msgid "Cancel proposal" -msgstr "Fortryd borgerforslag" - -msgid "Your submission has been cancelled." -msgstr "Dit borgerforslag er blevet slettet" - -msgid "Number of supporters" -msgstr "Antal støtter" - -msgid "Support the proposal" -msgstr "Støt borgerforslaget" - -msgid "You're supporting @label on behalf of a citizen" -msgstr "Du støtter nu @label på vegne af en borger " - -msgid "Support proposal" -msgstr "Støt forslaget" - -msgid "Thank you for your support." -msgstr "Tak for din støtte" - -msgid "Could not find a proposal to approve." -msgstr "Ikke muligt at finde et forslag at godkende" - -msgid "Update proposal" -msgstr "Opdater borgerforslag" - -msgid "Something went wrong. Your support was not registered." -msgstr "Noget gik galt, din støtte er ikke gået igennem. Prøv igen senere" - -msgid "" -"You already supported this proposal on @support_date. You can only " -"support a proposal once." -msgstr "" -"Du har allerede støttet dette borgerforslag d. @support_date. Du kan " -"kun støtte et forslag en gang. " - -msgid "Reset" -msgstr "Nulstil" - -msgid "Preview" -msgstr "Gennemse" - -msgid "Reset" -msgstr "Nulstil" - -msgid "Created" -msgstr "Oprettet" - -msgid "Action" -msgstr "Handling" - -msgid "Allow email" -msgstr " Ja, I må gerne kontakte mig." - -msgid "Personal data storage consent" -msgstr "" -"Jeg har læst betingelserne og giver mit samtykke Læs mere " -"her" - -msgid "" -"Number of supporters: @number_of_supporters of " -"@required_number_of_supporters" -msgstr "" -"Antal støtter: @number_of_supporters af " -"@required_number_of_supporters" - -msgid "The proposal list is empty" -msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" - -msgid "(Not shown on proposal)" -msgstr "Ikke synligt for andre" - -msgid "Content blocks" -msgstr "Custom block library" - -msgid "Find and manage content blocks." -msgstr "Find and manage custom blocks." - -msgid "There are no content blocks available." -msgstr "There are no custom blocks available." - -msgid "Blocks" -msgstr "Custom block library" - -msgid "Create and edit content blocks." -msgstr "Create and edit block content." - -msgid "The hearing list is empty" -msgstr "Ingen høringer fundet" - -msgid "Show all hearings" -msgstr "Vis alle høringer" - -msgid "The meeting list is empty" -msgstr "Ingen begivenheder fundet" - -msgid "Show all meetings" -msgstr "Vis alle begivenheder" - -msgid "Your name cannot contain numbers." -msgstr "Dit navn må ikke indeholde tal." - -msgid "You're currently authenticated as @name" -msgstr "Du er logget ind som @name" - -msgid "The hearing replies were deleted on @date" -msgstr "Høringssvarene er blevet fjernet d. @date" - -msgid "" -"The time limit for how long we are allowed to keep the replies has " -"been reached so we where obligated to delete them.The hearing replies " -"were deleted on @" -msgstr "" -"Høringssvarene er ikke længere synlige på " -"høringsportalen\r\n" -"

Høringssvar bliver løbende slettet på " -"deltag.aarhus.dk i takt med at høringer afsluttes. Det gør vi for at " -"leve op til reglerne for GDPR og for at sikre persondata ikke ligger " -"tilgængelig på høringsportalen i længere tid end, hvad der er " -"nødvendigt.

\r\n" -"Du kan stadig få adgang til høringssvar, der " -"ikke længere er synlige på høringsportalen.\r\n" -"

Hvis " -"høringen handler om en sag, der er behandlet af Aarhus Byråd, kan du " -"finde alle høringssvar, som bilag til den konkrete byrådssag. Du kan " -"finde alle sager i byrådet med tilhørende bilag på Aarhus Kommunes " -"hjemmeside – klik her: Forside " -"- dagsordener og referater

\r\n" -"

Hvis sagen ikke ligger som " -"en byrådssag og du har behov for at få indblik i gamle høringssvar, " -"kan det ske gennem en aktindsigtsanmodning. Læs om dine muligheder " -"for at søge aktindsigt: https://aarhus.dk/demokrati/aabenhed/aktindsigt

" - -msgid "" -"The time limit for how long we are allowed to keep the replies has " -"been reached so we where obligated to delete them." -msgstr "" -"Høringssvarene er ikke længere synlige på " -"høringsportalen\r\n" -"

Høringssvar bliver løbende slettet på " -"deltag.aarhus.dk i takt med at høringer afsluttes. Det gør vi for at " -"leve op til reglerne for GDPR og for at sikre persondata ikke ligger " -"tilgængelig på høringsportalen i længere tid end, hvad der er " -"nødvendigt.

\r\n" -"Du kan stadig få adgang til høringssvar, der " -"ikke længere er synlige på høringsportalen.\r\n" -"

Hvis " -"høringen handler om en sag, der er behandlet af Aarhus Byråd, kan du " -"finde alle høringssvar, som bilag til den konkrete byrådssag. Du kan " -"finde alle sager i byrådet med tilhørende bilag på Aarhus Kommunes " -"hjemmeside – klik her: Forside " -"- dagsordener og referater

\r\n" -"

Hvis sagen ikke ligger som " -"en byrådssag og du har behov for at få indblik i gamle høringssvar, " -"kan det ske gennem en aktindsigtsanmodning. Læs om dine muligheder " -"for at søge aktindsigt: https://aarhus.dk/demokrati/aabenhed/aktindsigt

" - -msgid "" -"@ticket_ref by @person_name on behalf of @organization " -"(@organization_type)" -msgstr "" -"@ticket_ref af @person_name på vegne af @organization " -"(@organization_type)" - -msgid "Please log in to access this form." -msgstr "Please login to access this form." - -msgid "Please log in to access this submission." -msgstr "Please login to access this submission." - -msgid "Please log in to access the uploaded file." -msgstr "Please login to access the uploaded file." - -msgid "@count place" -msgid_plural "@count places" -msgstr[0] "1 place" -msgstr[1] "@count places" - -msgid "Search and results will show up here" -msgstr "Søg og resultaterne vil blive vist her" - -msgid "Search for %search_terms returned no results" -msgstr "Søgning på %search_terms gav ingen resultater" - -msgid "Try with less words or to phrase it differently" -msgstr "Prøv med færre eller andre søgeord " - - diff --git a/web/modules/custom/aarhus_hero/aarhus_hero.info.yml b/web/modules/custom/aarhus_hero/aarhus_hero.info.yml index df0f9c15f..8379a890d 100755 --- a/web/modules/custom/aarhus_hero/aarhus_hero.info.yml +++ b/web/modules/custom/aarhus_hero/aarhus_hero.info.yml @@ -1,7 +1,5 @@ name: Aarhus Hero type: module -interface translation project: aarhus_hero -interface translation server pattern: modules/custom/aarhus_hero/translations/aarhus_hero.%language.po description: 'Adds a config page and a block for the hero.' package: Aarhus modules core_version_requirement: ^8.8 || ^9 || ^10 diff --git a/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po b/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po old mode 100755 new mode 100644 index d9d2e0b62..4dd9fbaa5 --- a/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po +++ b/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po @@ -1,15 +1,75 @@ -# Danish translation of Aarhus hero +# $Id$ # +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/aarhus_hero/aarhus_hero.info.yml: n/a +# modules/custom/aarhus_hero/aarhus_hero.links.task.yml: n/a +# modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php: n/a +# modules/custom/aarhus_hero/aarhus_hero.permissions.yml: n/a +# modules/custom/aarhus_hero/aarhus_hero.routing.yml: n/a +# modules/custom/aarhus_hero/src/Plugin/Block/AarhusHero.php: n/a +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: Aarhus hero\n" -"POT-Creation-Date: 2018-04-11 11:00+0000\n" -"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n" -"Language-Team: Danish\n" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:48+0200\n" +"PO-Revision-Date: 2025-04-23 14:48+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: modules/custom/aarhus_hero/aarhus_hero.info.yml:0 +msgid "Aarhus Hero" +msgstr "" + +#: modules/custom/aarhus_hero/src/Plugin/Block/AarhusHero.php:8 +msgid "Aarhus hero" +msgstr "Aarhus hero" + +#: modules/custom/aarhus_hero/aarhus_hero.info.yml:0 +msgid "Aarhus modules" +msgstr "" + +#: modules/custom/aarhus_hero/aarhus_hero.info.yml:0 +msgid "Adds a config page and a block for the hero." +msgstr "" + +#: modules/custom/aarhus_hero/aarhus_hero.links.task.yml:0 +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:41 +msgid "Hero" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:73 +msgid "Hero button text" +msgstr "" -msgid "Villa plots" -msgstr "Villa grunde" \ No newline at end of file +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:64 +msgid "Hero image" +msgstr "" + +#: modules/custom/aarhus_hero/aarhus_hero.permissions.yml:0 +#: modules/custom/aarhus_hero/aarhus_hero.routing.yml:0 +msgid "Hero settings" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:55 +msgid "Hero text" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:46 +msgid "Hero title" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:90 +msgid "Save changes" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:83 +msgid "URL" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_citizen_proposal/translations/hoeringsportal_citizen_proposal.da.po b/web/modules/custom/hoeringsportal_citizen_proposal/translations/hoeringsportal_citizen_proposal.da.po new file mode 100644 index 000000000..7aa58cb07 --- /dev/null +++ b/web/modules/custom/hoeringsportal_citizen_proposal/translations/hoeringsportal_citizen_proposal.da.po @@ -0,0 +1,485 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal/modules/hoeringsportal_citizen_proposal_fixtures/hoeringsportal_citizen_proposal_fixtures.info.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.links.task.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-approve-form.html.twig: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-add-form.html.twig: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-support-form.html.twig: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Helper/CitizenAccessChecker.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/src/Plugin/Block/CitizenProposalSupportCounter.php: n/a +# modules/custom/hoeringsportal_citizen_proposal/templates/citizen-proposal-support-counter.html.twig: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:73 +msgid "(Not shown on proposal)" +msgstr "Ikke synligt for andre" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:127;145;163 +msgid "@remaining characters left." +msgstr "@remaining tegn tilbage" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml:0 +msgid "Access citizen proposal admin pages" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:80 +msgid "Access denied page" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:90 +msgid "Add form" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Administer citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml:0 +msgid "Administer citizen proposal module" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:100 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:129 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:103 +msgid "Allow email" +msgstr " Ja, I må gerne kontakte mig." + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:126;243 +msgid "Allow email help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:187 +msgid "Approve form" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:192 +msgid "Approve intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:140 +msgid "Approve proposal" +msgstr "Godkend borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:55 +msgid "Authenticate" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:74 +msgid "Authenticate link text" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:60 +msgid "Authenticate message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:67 +msgid "Authenticate message (support)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:70 +msgid "Authenticate with MitID" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:95 +msgid "Author intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:153 +msgid "Cancel proposal" +msgstr "Fortryd borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/CitizenAccessChecker.php:59 +msgid "Citizen access @granted: @values" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:65 +msgid "Citizen access check exception: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:72 +msgid "Citizen access denied" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.links.task.yml:0 +msgid "Citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:412 +msgid "Citizen proposal settings sucessfully saved." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Plugin/Block/CitizenProposalSupportCounter.php:11 +msgid "Citizen proposal support counter" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:158 +msgid "Consent help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:395 +msgid "Content" +msgstr "Content" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:200 +msgid "Could not find a proposal to approve." +msgstr "Ikke muligt at finde et forslag at godkende" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0;0 +#: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-approve-form.html.twig:18 +msgid "Create new proposal" +msgstr "Opret borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:183 +#: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-add-form.html.twig:18 +msgid "Create proposal" +msgstr "Opret borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:92 +msgid "Display email" +msgstr "Ja, vis min e-mail på mit borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:75 +msgid "E-mail" +msgstr "E-mail" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:145 +msgid "Edit proposal" +msgstr "Ret borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:373 +msgid "Editor email address" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:83 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:94 +msgid "Email" +msgstr "Email" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:120 +msgid "Email display help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:114;237 +msgid "Email help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:364 +msgid "Emails" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:362 +msgid "Error finding overdue proposals: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:399 +msgid "Error finishing proposal with id:@nid: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:237 +msgid "Error saving support: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:104 +msgid "Error setting draft proposal: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml:0 +msgid "Hoeringsportal citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/modules/hoeringsportal_citizen_proposal_fixtures/hoeringsportal_citizen_proposal_fixtures.info.yml:0 +msgid "Hoeringsportal citizen proposal fixtures" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml:0 +#: modules/custom/hoeringsportal_citizen_proposal/modules/hoeringsportal_citizen_proposal_fixtures/hoeringsportal_citizen_proposal_fixtures.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:252 +msgid "If not set, the citizen will see the proposal after supporting it." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:56 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:63 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:116 +msgid "Name" +msgstr "Navn" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:102;231 +msgid "Name help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:171 +msgid "Number of allowed characters for proposal field." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:177 +msgid "Number of allowed characters for remarks field." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:165 +msgid "Number of allowed characters for title field." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/templates/citizen-proposal-support-counter.html.twig:13 +msgid "Number of supporters" +msgstr "Antal støtter" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:172 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:118 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:134 +msgid "Personal data storage consent" +msgstr "Jeg har læst betingelserne og giver mit samtykke Læs mere her" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:72 +msgid "Phone" +msgstr "Telefonnummer" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:108 +msgid "Phone help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:87 +msgid "Phone number" +msgstr "Telefonnummer" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:423 +msgid "Please enter a path on the form /node/«id»." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:432 +msgid "Please enter a survey description." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:138 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:102 +msgid "Proposal" +msgstr "Forslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:379 +#: modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 +msgid "Proposal created (citizen)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:380 +#: modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 +msgid "Proposal created (editor)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:146 +msgid "Proposal help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:133 +msgid "Proposal intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:381 +#: modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 +msgid "Proposal published (citizen)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/modules/hoeringsportal_citizen_proposal_fixtures/hoeringsportal_citizen_proposal_fixtures.info.yml:0 +msgid "Provides citizen proposal fixtures for the site." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:205 +msgid "Redirect URL after a proposal has been cancelled" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:199 +msgid "Redirect URL after a proposal has been submitted" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:250 +msgid "Redirect URL after a proposal has been supported" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:156 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:109 +msgid "Remarks" +msgstr "Begrundelse" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:152 +msgid "Remarks help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:282 +msgid "Save" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:318 +msgid "Select a survey to show as part of the form. Manage surveys." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:316 +msgid "Select survey webform" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:83 +msgid "Send citizens from outside the municipality to this page. Enter a path on the form /node/«id», e.g. /node/87." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:267 +msgid "Sidebar" +msgstr "Sidebar" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:272 +msgid "Sidebar text" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:93 +msgid "Sign out" +msgstr "Log ud" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:191 +msgid "Something went wrong. Your support was not registered." +msgstr "Noget gik galt, din støtte er ikke gået igennem. Prøv igen senere" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml:0 +msgid "Stuff related to citizen proposal content type" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:389 +msgid "Subject" +msgstr "Emne" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:211 +msgid "Submission text when a proposal has been submitted" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:257 +msgid "Submission text when a proposal has been supported" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Support citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml:0;0 +msgid "Support citizen proposal on behalf of citizen" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:219 +msgid "Support form" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:224 +msgid "Support intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:143 +#: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-support-form.html.twig:18 +msgid "Support proposal" +msgstr "Støt forslaget" + +#: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-support-form.html.twig:19 +msgid "Support the proposal" +msgstr "Støt borgerforslaget" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.links.task.yml:0 +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Supporters" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:325 +msgid "Survey description" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:311 +msgid "Survey webform" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:328 +msgid "Tell a little about why the survey is shown." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:170 +msgid "Thank you for your submission." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:185 +msgid "Thank you for your support." +msgstr "Tak for din støtte" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:120 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:95 +msgid "Title" +msgstr "Titel" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:140 +msgid "Title help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:223;236;240 +msgid "Too many characters used." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:182 +msgid "Update proposal" +msgstr "Opdater borgerforslag" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:160 +msgid "Use <a target="_blank" href="…">Read more about GDRP and data storage</a> to insert a link to details on what is stored and where and how." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:128;245 +msgid "Use <a target="_blank" href="…">Read more about the emails we may send</a> to insert a link to details on what emails might be sent." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:59 +msgid "You already supported this proposal on @support_date. You can only support a proposal once." +msgstr "Du har allerede støttet dette borgerforslag d. @support_date. Du kan kun støtte et forslag en gang. " + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:368 +msgid "You can use tokens in email subject and both tokens and Twig in email content." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:32 +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:29 +msgid "You have to authenticate to add a proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:29 +msgid "You have to authenticate to support a proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:89 +msgid "You're currently authenticated as @name" +msgstr "Du er logget ind som @name" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:71 +msgid "You're supporting @label on behalf of a citizen" +msgstr "Du støtter nu @label på vegne af en borger " + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:188 +msgid "Your submission has been cancelled." +msgstr "Dit borgerforslag er blevet slettet" diff --git a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/translations/hoeringsportal_citizen_proposal_archiving.da.po b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/translations/hoeringsportal_citizen_proposal_archiving.da.po new file mode 100644 index 000000000..fd6593bf0 --- /dev/null +++ b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/translations/hoeringsportal_citizen_proposal_archiving.da.po @@ -0,0 +1,134 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/src/Plugin/AdvancedQueue/JobType/ArchiveCitizenProposalJob.php: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig: n/a +# modules/custom/hoeringsportal_citizen_proposal_archiving/config/install/advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving.yml: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:108 +msgid "@message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:68 +msgid "Archive URL" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Plugin/AdvancedQueue/JobType/ArchiveCitizenProposalJob.php:12 +msgid "Archive citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:51 +msgid "Archived at" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 +msgid "Archives citizen proposals in GetOrganized." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:48 +msgid "Archiving node @label" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:23 +msgid "Author" +msgstr "Author" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:13 +msgid "Citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:151 +msgid "Citizen proposal @label archived" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/config/install/advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving.yml:0 +msgid "Citizen proposal archiving" +msgstr "Citizen proposal archiving" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:37 +msgid "Details" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:54 +msgid "Done archiving node @label" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:30 +msgid "Email" +msgstr "Email" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:115 +msgid "Error adding job for archiving citizen proposal @label: @message." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:159 +msgid "Error processing job: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 +msgid "Hoeringsportal citizen proposal archiving" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:107 +msgid "Job for archiving citizen proposal @label added to the queue @queue." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:26 +msgid "Name" +msgstr "Navn" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:139 +msgid "Node @label changed after requested archival time (@some_time > @another_time). Skipping." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:33 +msgid "Phone" +msgstr "Telefonnummer" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:56 +msgid "Printed at" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:16 +msgid "Proposal" +msgstr "Forslag" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:19 +msgid "Remarks" +msgstr "Begrundelse" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:53 +msgid "Url" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:49 +msgid "Vote end" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:46 +msgid "Vote start" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_config_settings/translations/hoeringsportal_config_settings.da.po b/web/modules/custom/hoeringsportal_config_settings/translations/hoeringsportal_config_settings.da.po new file mode 100644 index 000000000..70ad50502 --- /dev/null +++ b/web/modules/custom/hoeringsportal_config_settings/translations/hoeringsportal_config_settings.da.po @@ -0,0 +1,256 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.install: n/a +# modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml: n/a +# modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.menu.yml: n/a +# modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml: n/a +# modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml: n/a +# modules/custom/hoeringsportal_config_settings/src/Controller/PageController.php: n/a +# modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php: n/a +# modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:202 +msgid "Citizen proposal teaser default image" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:164 +msgid "Default images" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:131 +msgid "External references" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:47 +msgid "Footer" +msgstr "Footer" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:62 +msgid "Footer bottom links" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:55 +msgid "Footer bottom menu" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:68 +msgid "Footer text first column" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:92 +msgid "Footer text forth column" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:76 +msgid "Footer text seccond column" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:84 +msgid "Footer text third column" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:249 +msgid "Front page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0;0 +msgid "Frontpage" +msgstr "Frontpage" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 +msgid "General" +msgstr "General" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 +msgid "General settings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 +msgid "Hearing" +msgstr "Høring" + +#: modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php:39 +msgid "Hearing deadline timer" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 +msgid "Hearing settings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:176 +msgid "Hearing teaser default image" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:122 +msgid "Hearings overview page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal admin" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:209 +msgid "Image used on citizen proposal teaser if hearing does not have an image attached" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:183 +msgid "Image used on hearing teaser if hearing does not have an image attached" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:222 +msgid "Image used on project teaser if hearing does not have an image attached" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:196 +msgid "Image used on public meeting teaser if hearing does not have an image attached" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:235 +msgid "Image used on static page teaser if hearing does not have an image attached" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:112 +msgid "Initiative overview page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:135 +msgid "Links to external pages." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:293 +msgid "Login message" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:157 +msgid "Map of all hearings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:141 +msgid "Map of all hearings and meetings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:149 +msgid "Map of all projects" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:285 +msgid "Messages" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:279 +msgid "Newsletter iframe height" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:273 +msgid "Newsletter iframe source" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:264 +msgid "Newsletter node page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Controller/PageController.php:54 +msgid "No user's manual url defined!" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:100 +msgid "Overview pages" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:240 +msgid "Pages" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:215 +msgid "Project teaser default image" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 +msgid "Provides config settings and admin interface for hoeringsportalen" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:189 +msgid "Public meeting teaser default image" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.install:17 +msgid "Run \"drush migrate-subject-data\" after configuration import to add contact and more info values from taxonomy to nodes." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php:48 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:300 +msgid "Save changes" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:168 +msgid "Set default images to use where editors have not provided or have the posibility to add an image." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:228 +msgid "Static page teaser default image" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:281 +msgid "The height of the iframe i.e 450px" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:268 +msgid "The node to attach the newsletter signup form to." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php:43 +msgid "The number of hours before the deadline of a hearing the warning should appear." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:126 +msgid "The page used for an overview of hearings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:116 +msgid "The page used for an overview of initiatives" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:104 +msgid "These references are used by the system when creating links automatically. Only change these if you create a new overview page." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:160 +msgid "Used when linking to a map of all hearings." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:152 +msgid "Used when linking to a map of all projects." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:144 +msgid "Used when linking to the map of all hearings and meetings." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.menu.yml:0;0 +msgid "User's manual" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:257 +msgid "User's manual url" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_content_access/translations/hoeringsportal_content_access.da.po b/web/modules/custom/hoeringsportal_content_access/translations/hoeringsportal_content_access.da.po new file mode 100644 index 000000000..f9dd2a09a --- /dev/null +++ b/web/modules/custom/hoeringsportal_content_access/translations/hoeringsportal_content_access.da.po @@ -0,0 +1,37 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml: n/a +# modules/custom/hoeringsportal_content_access/src/Helper.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml:0 +msgid "Control access to certain content" +msgstr "" + +#: modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml:0 +msgid "Hoeringsportal content access" +msgstr "" + +#: modules/custom/hoeringsportal_content_access/src/Helper.php:204 +msgid "You must select at least one of your departments" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_content_blocks/translations/hoeringsportal_content_blocks.da.po b/web/modules/custom/hoeringsportal_content_blocks/translations/hoeringsportal_content_blocks.da.po new file mode 100644 index 000000000..7f12b82f2 --- /dev/null +++ b/web/modules/custom/hoeringsportal_content_blocks/translations/hoeringsportal_content_blocks.da.po @@ -0,0 +1,74 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml: n/a +# modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingTypeAddress.php: n/a +# modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingTypeMoreInfo.php: n/a +# modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingWarning.php: n/a +# modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/MeetingWarning.php: n/a +# modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig: n/a +# modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:26 +msgid "Note! Hearing deadline approaching." +msgstr "Note! Hørings tidsfristen nærmer sig." + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:14 +msgid "Note! Hearing deadline has passed." +msgstr "Note! Hørings tidsfristen er forbi." + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:20 +msgid "Note! This hearing has not started yet" +msgstr "Note! Denne høring er ikke startet endnu." + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:17 +msgid "Note! This public meeting has been cancelled." +msgstr "Note! Denne begivenhed er aflyst" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:14 +msgid "Note! This public meeting has been held." +msgstr "Denne begivenhed er afholdt" + +#: modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml:0 +msgid "Blocks used for displaying content on nodes" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml:0 +msgid "Hoeringsportal content blocks" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingTypeAddress.php:8 +msgid "Node address" +msgstr "Adresse" + +#: modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingWarning.php:8 +msgid "Node hearing warning" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/HearingTypeMoreInfo.php:8 +msgid "Node more info" +msgstr "Mere information" + +#: modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/MeetingWarning.php:10 +msgid "Node public meeting warning" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po new file mode 100644 index 000000000..6f4d6543e --- /dev/null +++ b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po @@ -0,0 +1,168 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php: n/a +# modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml: n/a +# modules/custom/hoeringsportal_data/assets/js/hearing-edit.js: n/a +# modules/custom/hoeringsportal_data/build/hearing-edit.js: n/a +# modules/custom/hoeringsportal_data/src/Drush/Commands/DrushCommands.php: n/a +# modules/custom/hoeringsportal_data/src/Helper/HearingHelper.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldFormatter/LocalplanDefaultFormatter.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/LocalplanDefaultWidget.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldFormatter/MapDefaultFormatter.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php: n/a +# modules/custom/hoeringsportal_data/src/Plugin/Validation/Constraint/MapConfiguration.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:87 +msgid "@url" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "API" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:142 +msgid "Available types" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:167 +msgid "Available types: @types" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +msgid "Custom data stuff." +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php:52 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:67 +msgid "Data" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:113 +msgid "Enter address or coordinates (e.g. \"56.1535557,10.2120222\")" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Helper/HearingHelper.php:117 +msgid "Error finding hearing whose replies must be deleted: @message" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:71 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:71 +msgid "GeoJSON" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "GeoJSON hearings (v2)" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Hearing tickets" +msgstr "Høringssvar" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0;0;0 +msgid "Hearings" +msgstr "Hearings" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php:9 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:9 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +msgid "Høringsportal data" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php:9 +msgid "Local plan" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:75 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:38;145 +msgid "Local plan ids" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:42;147 +msgid "Local plan ids from node" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldFormatter/LocalplanDefaultFormatter.php:8 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/LocalplanDefaultWidget.php:9 +msgid "Localplan default" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Validation/Constraint/MapConfiguration.php:7 +msgctxt "Validation" +msgid "Map configuration" +msgstr "Map configuration" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldFormatter/MapDefaultFormatter.php:8 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:11 +msgid "Map default" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:9 +msgid "Map display" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Maps" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Maps configuration" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Drush/Commands/DrushCommands.php:106 +msgid "No hearings found" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:185 +msgid "Please select a point on the map" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:79 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:39;146 +msgid "Point" +msgstr "Vælg punkt på kort" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Public meetings" +msgstr "" + +#: modules/custom/hoeringsportal_data/assets/js/hearing-edit.js:0 +#: modules/custom/hoeringsportal_data/build/hearing-edit.js:0 +msgid "Reset point on map" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php:48 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:63 +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:55 +msgid "Type" +msgstr "Type" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:73 +msgid "Use @url and copy the generated GeoJSON code into this fields." +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:85 +msgid "localplanids" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po new file mode 100644 index 000000000..0bd348731 --- /dev/null +++ b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po @@ -0,0 +1,434 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.module: n/a +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml: n/a +# modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php: n/a +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.install: n/a +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.links.task.yml: n/a +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.permissions.yml: n/a +# modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketBlock.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketTitleBlock.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketsBlock.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php: n/a +# modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/AdvancedQueue/JobType/SynchronizeTicket.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Plugin/Validation/Constraint/AgentEmailContraint.php: n/a +# modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php: n/a +# modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-title.html.twig: n/a +# modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket.html.twig: n/a +# modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:308;338 +msgid "@message" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:230 +msgid "@message: @body" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:97 +msgid "@ticket_ref by @person_name" +msgstr "@ticket_ref af @person_name" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:90 +msgid "@ticket_ref by @person_name on behalf of @organization (@organization_type)" +msgstr "@ticket_ref af @person_name på vegne af @organization (@organization_type)" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "API" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "API docs" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.module:21 +msgid "About" +msgstr "Om" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.permissions.yml:0 +msgid "Access Deskpro settings" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:16 +msgid "Add hearing ticket" +msgstr "Tilføj høringssvar" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:78 +msgid "Add hearing ticket form" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:95 +msgid "Address" +msgstr "Adresse" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Validation/Constraint/AgentEmailContraint.php:7 +msgctxt "Validation" +msgid "Agent email" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Agents" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Agents autocomplete" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:222 +msgid "Available departments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:114 +msgid "Available tokens: @tokens" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.install:353 +msgid "Batch finished" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:280 +msgid "Cache ttl" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:283 +msgid "Cache ttl in seconds." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:89 +msgid "Confirm email address" +msgstr "Bekræft e-mailadresse" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:108 +msgid "Confirmation after ticket submit" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:236 +msgid "Confirmation email does not match email." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:113 +msgid "Confirmation text shown after ticket is submitted." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:93 +msgid "Consent text" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-title.html.twig:17 +msgid "Create hearing reply" +msgstr "Skriv høringssvar" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:265 +msgid "Default Deskpro ticket language" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:703 +msgid "Deleted hearing replies from hearing @label (@id): @result" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Departments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Departments autocomplete" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php:7 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketBlock.php:7 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketTitleBlock.php:5 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketsBlock.php:7 +msgid "Deskpro" +msgstr "Sagsbehandlersystem" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:173 +msgid "Deskpro api code key" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:272 +msgid "Deskpro data token" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.module:22 +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:159 +msgid "Deskpro integration" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.links.task.yml:0 +msgid "Deskpro settings" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:181 +msgid "Deskpro ticket custom fields" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:166 +msgid "Deskpro url" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket.html.twig:57 +msgid "Download ticket as pdf" +msgstr "Download høringssvar som pdf" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:83 +msgid "Email address" +msgstr "E-mailadresse" + +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:710 +msgid "Error deleting hearing replies on hearing @label (@id): @message" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:337 +msgid "Error submitting hearing ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-title.html.twig:15 +msgid "Hearing reply" +msgstr "Høringssvar" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketBlock.php:7 +msgid "Hearing ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 +msgid "Hearing ticket add" +msgstr "Hearing ticket add" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php:7 +msgid "Hearing ticket author" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketTitleBlock.php:5 +msgid "Hearing ticket title" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketsBlock.php:7 +msgid "Hearing tickets" +msgstr "Høringssvar" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Hearings" +msgstr "Hearings" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Høringsportal Deskpro" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:201 +msgid "I have red the terms and give my consent" +msgstr "Jeg har læst betingelserne og giver mit samtykke" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:152 +msgid "I represent" +msgstr "Jeg udtaler mig som" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:84 +msgid "Intro text" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:142 +msgid "Is available" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:231 +msgid "Languages" +msgstr "Languages" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:232 +msgid "Map Drupal node language to Deskpro ticket language" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:180 +msgid "Message" +msgstr "Høringssvar" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:137 +msgid "My address is secret" +msgstr "Jeg har adressebeskyttelse" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:14 +msgid "Name" +msgstr "Navn" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:168 +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:26 +msgid "Organization" +msgstr "Organisation" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:225 +msgid "Please enter a valid Deskpro url and api code key and save the form." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:309 +msgid "Please enter a valid url." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:253 +msgid "Please enter your postal code and city." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:256 +msgid "Please enter your street and number." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:111 +msgid "Postal code and city" +msgstr "Postnummer og by" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:123 +msgid "Representation list" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:136 +msgid "Representation title (@title)" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:21 +msgid "Represents" +msgstr "Udtaler sig som" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:147 +msgid "Require organization" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:296 +msgid "Save" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:256 +msgid "Select Deskpro ticket language for Drupal node language @language" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:185 +msgid "Select a file" +msgstr "Vælg en fil" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:211 +msgid "Send" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:16 +msgid "Sent d." +msgstr "Indsendt" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:18 +msgid "Show hearing tickets" +msgstr "Vis indkomne svar" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:122 +msgid "Street and number" +msgstr "Vejnavn og nummer" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:174 +msgid "Subject" +msgstr "Emne" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:288 +msgid "Synchronization delay" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:291 +msgid "Synchronization delay in seconds." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Synchronize hearing" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:225 +msgid "The departments that can be attached to hearings." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:47 +msgid "The hearing replies were deleted on @date" +msgstr "Høringssvarene er blevet fjernet d. @date" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:48 +msgid "The time limit for how long we are allowed to keep the replies has been reached so we where obligated to delete them." +msgstr "" +"Høringssvarene er ikke længere synlige på høringsportalen\n" +"

Høringssvar bliver løbende slettet på deltag.aarhus.dk i takt med at høringer afsluttes. Det gør vi for at leve op til reglerne for GDPR og for at sikre persondata ikke ligger tilgængelig på høringsportalen i længere tid end, hvad der er nødvendigt.

\n" +"Du kan stadig få adgang til høringssvar, der ikke længere er synlige på høringsportalen.\n" +"

Hvis høringen handler om en sag, der er behandlet af Aarhus Byråd, kan du finde alle høringssvar, som bilag til den konkrete byrådssag. Du kan finde alle sager i byrådet med tilhørende bilag på Aarhus Kommunes hjemmeside – klik her: Forside - dagsordener og referater

\n" +"

Hvis sagen ikke ligger som en byrådssag og du har behov for at få indblik i gamle høringssvar, kan det ske gennem en aktindsigtsanmodning. Læs om dine muligheder for at søge aktindsigt: https://aarhus.dk/demokrati/aabenhed/aktindsigt

" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:318 +msgid "This field is already used by @name." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket attachments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket messages" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:32 +msgid "Ticket reference" +msgstr "Sagsnummer" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Tickets" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:275 +msgid "Token used for accessing the data api." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/AdvancedQueue/JobType/SynchronizeTicket.php:12 +msgid "Update or create ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:96 +msgid "Your address will not be shown on the website." +msgstr "Din adresse vil ikke blive vist på hjemmesiden - se evt. betingelser nederst på siden" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:77 +msgid "Your full name" +msgstr "For- og efternavn" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:325 +msgid "Your hearing ticket has being submitted and will appear here in a few minutes." +msgstr "Dit høringssvar er indsendt og bliver vist her på siden inden for kort tid." + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:231 +msgid "Your name cannot contain numbers." +msgstr "Dit navn må ikke indeholde tal." + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:349 +msgid "Your settings have been saved." +msgstr "" diff --git a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po new file mode 100644 index 000000000..7a1a8a2f8 --- /dev/null +++ b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po @@ -0,0 +1,82 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_forms/hoeringsportal_forms.module: n/a +# modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml: n/a +# modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:174 +msgid "An invalid type is selected. Please change it in the options." +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:155 +msgid "Autocomplete" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:142 +msgid "Bundle" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Customization of backend forms" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:352 +msgid "Display error message" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:154 +msgid "Dropdown" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal forms" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:264 +msgid "Leave blank for all. Otherwise, the first selected term will be the default instead of \"Any\"." +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.module:207 +msgid "Login providers" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.module:196 +msgid "SAML login" +msgstr "ADFS-login" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:182;245 +msgid "Select content" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:182;245 +msgid "Select nodes from bundle @bundle" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:144 +msgid "Select which bundle to show nodes for in the regular options." +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:152 +msgid "Selection type" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po new file mode 100644 index 000000000..bc52d7a06 --- /dev/null +++ b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po @@ -0,0 +1,104 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module: n/a +# modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml: n/a +# modules/custom/hoeringsportal_hearing/modules/hoeringsportal_hearing_fixtures/hoeringsportal_hearing_fixtures.info.yml: n/a +# modules/custom/hoeringsportal_hearing/src/TokenHelper.php: n/a +# modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:24 +msgid "About" +msgstr "Om" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:27 +msgid "Add hearing reply" +msgstr "Tilføj høringssvar" + +#: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:33 +msgid "Example: [gis:minimap:409c1dc9-b604-4f1e-9df9-2768d050acb4]" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:26 +msgid "GIS data" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:59 +msgid "Hearing deadline has passed" +msgstr "Høringsfristen er overskredet" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:55 +msgid "Hearing deadline: @deadline" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:25 +msgid "Hearings" +msgstr "Hearings" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Hoeringsportal hearing" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/modules/hoeringsportal_hearing_fixtures/hoeringsportal_hearing_fixtures.info.yml:0 +msgid "Hoeringsportal hearing fixtures" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/modules/hoeringsportal_hearing_fixtures/hoeringsportal_hearing_fixtures.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:32 +msgid "Insert GIS minimap by UUID" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:82 +msgid "Invalid GIS map UUID: @map_uuid" +msgstr "Ugyldigt GIS-kort-uuid: @map_uuid" + +#: modules/custom/hoeringsportal_hearing/modules/hoeringsportal_hearing_fixtures/hoeringsportal_hearing_fixtures.info.yml:0 +msgid "Provides hearing fixtures for the site." +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Stuff related to hearing content type" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:94 +msgid "The delete date must not be before the reply deadline" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:91 +msgid "The delete date must not be in the past" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:87 +msgid "The reply deadline must not be before the start date" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:84 +msgid "The reply deadline must not be in the past" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:80 +msgid "The start date must not be in the past" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_openid_connect/translations/hoeringsportal_openid_connect.da.po b/web/modules/custom/hoeringsportal_openid_connect/translations/hoeringsportal_openid_connect.da.po new file mode 100644 index 000000000..4c2533fb2 --- /dev/null +++ b/web/modules/custom/hoeringsportal_openid_connect/translations/hoeringsportal_openid_connect.da.po @@ -0,0 +1,49 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml: n/a +# modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:49+0200\n" +"PO-Revision-Date: 2025-04-23 14:49+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:398 +msgid "Error" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml:0 +msgid "Hoeringsportal OpenID Connect" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:329 +msgid "Invalid state" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:323 +msgid "Missing state in response" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml:0 +msgid "OpenID Connect stuff" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:416 +msgid "Try again" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_project_timeline/translations/hoeringsportal_project_timeline.da.po b/web/modules/custom/hoeringsportal_project_timeline/translations/hoeringsportal_project_timeline.da.po new file mode 100644 index 000000000..17781cbd9 --- /dev/null +++ b/web/modules/custom/hoeringsportal_project_timeline/translations/hoeringsportal_project_timeline.da.po @@ -0,0 +1,61 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml: n/a +# modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:79 +msgid "Expected end date" +msgstr "Forventet slutdato" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:70 +msgid "Expected finish" +msgstr "Forventet afsluttet" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:103 +msgid "Hearing" +msgstr "Høring" + +#: modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml:0 +msgid "Hoeringsportal project timeline" +msgstr "" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:63 +msgid "Project start" +msgstr "Initiativ start" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:13 +msgid "Project timeline" +msgstr "" + +#: modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml:0 +msgid "Provides timeline block for projects" +msgstr "" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:138 +msgid "Public meeting" +msgstr "Begivenhed" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:54 +msgid "Start" +msgstr "Start" diff --git a/web/modules/custom/hoeringsportal_public_meeting/translations/hoeringsportal_public_meeting.da.po b/web/modules/custom/hoeringsportal_public_meeting/translations/hoeringsportal_public_meeting.da.po new file mode 100644 index 000000000..1cb8d6896 --- /dev/null +++ b/web/modules/custom/hoeringsportal_public_meeting/translations/hoeringsportal_public_meeting.da.po @@ -0,0 +1,119 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module: n/a +# modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml: n/a +# modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php: n/a +# modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:32 +msgid "Address" +msgstr "Adresse" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:14;20 +msgid "Date" +msgstr "Dato" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:370 +msgid "Hearing deadline has passed" +msgstr "Høringsfristen er overskredet" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml:0 +msgid "Hoeringsportal public meeting" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:37 +msgid "Last signup date" +msgstr "Tilmeldingsfrist" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:110 +msgid "Note: If this public meeting is cancelled you should go to @cancelLink to cancel all orders." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:28 +msgid "Place" +msgstr "Lokation" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:275 +msgid "Please enter a location" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:281 +msgid "Please enter a start time" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:212;231 +msgid "Please enter a value!" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:278 +msgid "Please enter an address" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:284 +msgid "Please enter an end time" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:287 +msgid "Please enter number of spots" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 +msgid "Public meeting" +msgstr "Begivenhed" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:374 +msgid "Public meeting cancelled" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 +msgid "Public meeting summary" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:41 +msgid "Sign up for public meeting" +msgstr "Tilmeld dig her" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml:0 +msgid "Stuff related to public meeting content type" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:301 +msgid "The meeting end time must be after the start time." +msgstr "Sluttidspunktet skal være efter starttidspunktet." + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:265;294 +msgid "The meeting time must not be in the past." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:268;297 +msgid "The registration deadline must not be after the meeting starts." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:255 +msgid "The registration deadline must not be in the past." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:17;23 +msgid "Time" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po new file mode 100644 index 000000000..14514ac9c --- /dev/null +++ b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po @@ -0,0 +1,37 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml: n/a +# modules/custom/hoeringsportal_quicklinks/src/Plugin/Block/Quicklinks.php: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 +msgid "Hoeringsportal quicklinks" +msgstr "" + +#: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 +msgid "Provides quicklinks block" +msgstr "" + +#: modules/custom/hoeringsportal_quicklinks/src/Plugin/Block/Quicklinks.php:7 +msgid "Quicklinks" +msgstr "" diff --git a/web/modules/custom/hoeringsportal_test_delta_sync_fixtures/translations/hoeringsportal_test_delta_sync_fixtures.da.po b/web/modules/custom/hoeringsportal_test_delta_sync_fixtures/translations/hoeringsportal_test_delta_sync_fixtures.da.po new file mode 100644 index 000000000..817a893b0 --- /dev/null +++ b/web/modules/custom/hoeringsportal_test_delta_sync_fixtures/translations/hoeringsportal_test_delta_sync_fixtures.da.po @@ -0,0 +1,31 @@ +# $Id$ +# +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from file: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml: n/a +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" + +#: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 +msgid "Hoeringsportal delta sync fixtures" +msgstr "" + +#: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 +msgid "Provides test fixtures for delta sync." +msgstr "" diff --git a/web/modules/custom/itk_admin/itk_admin.info.yml b/web/modules/custom/itk_admin/itk_admin.info.yml index b80c9a3c3..4ff75ebe5 100755 --- a/web/modules/custom/itk_admin/itk_admin.info.yml +++ b/web/modules/custom/itk_admin/itk_admin.info.yml @@ -1,7 +1,5 @@ name: ITK admin type: module description: 'Provides admin interface for certain settings' -interface translation project: itk_admin -interface translation server pattern: modules/custom/itk_admin/translations/itk_admin.%language.po core_version_requirement: ^8.8 || ^9 || ^10 package: ITK diff --git a/web/modules/custom/itk_admin/translations/itk_admin.da.po b/web/modules/custom/itk_admin/translations/itk_admin.da.po old mode 100755 new mode 100644 index 00172424b..055ee9d85 --- a/web/modules/custom/itk_admin/translations/itk_admin.da.po +++ b/web/modules/custom/itk_admin/translations/itk_admin.da.po @@ -1,19 +1,66 @@ -# Danish translation of itk_admin strings +# $Id$ # +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/itk_admin/itk_admin.info.yml: n/a +# modules/custom/itk_admin/itk_admin.links.menu.yml: n/a +# modules/custom/itk_admin/itk_admin.links.task.yml: n/a +# modules/custom/itk_admin/itk_admin.routing.yml: n/a +# modules/custom/itk_admin/itk_admin.permissions.yml: n/a +# modules/custom/itk_admin/src/Form/AdminSettingsForm.php: n/a +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: ITK admin\n" -"POT-Creation-Date: 2017-01-17 11:00+0000\n" -"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n" -"Language-Team: Danish\n" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:30 +msgid "@site_name settings." +msgstr "" + +#: modules/custom/itk_admin/itk_admin.permissions.yml:0 +msgid "Access itk admin settings." +msgstr "" + +#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:49 +msgid "Configure" +msgstr "" + +#: modules/custom/itk_admin/itk_admin.info.yml:0 +msgid "ITK" +msgstr "" -msgid "@site_name settings" -msgstr "@site_name indstillinger" +#: modules/custom/itk_admin/itk_admin.info.yml:0 +msgid "ITK admin" +msgstr "" + +#: modules/custom/itk_admin/itk_admin.info.yml:0 +msgid "Provides admin interface for certain settings" +msgstr "" + +#: modules/custom/itk_admin/itk_admin.links.task.yml:0 +#: modules/custom/itk_admin/itk_admin.routing.yml:0 +msgid "Settings" +msgstr "" + +#: modules/custom/itk_admin/itk_admin.links.menu.yml:0 msgid "Site specific settings" msgstr "Site specifikke indstillinger" + +#: modules/custom/itk_admin/itk_admin.links.menu.yml:0 +msgid "Sitespecific settings" +msgstr "" + +#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:32 msgid "These pages contain @site_name specific config settings." -msgstr "Disse sider indeholder specifikke indstillinger til @site_name." \ No newline at end of file +msgstr "Disse sider indeholder specifikke indstillinger til @site_name." diff --git a/web/modules/custom/itk_admin_links/itk_admin_links.info.yml b/web/modules/custom/itk_admin_links/itk_admin_links.info.yml index ddff6707b..bb3e498a4 100755 --- a/web/modules/custom/itk_admin_links/itk_admin_links.info.yml +++ b/web/modules/custom/itk_admin_links/itk_admin_links.info.yml @@ -1,7 +1,5 @@ name: ITK admin links description: Show an admin icon and a row of links. -interface translation project: itk_admin_links -interface translation server pattern: modules/custom/itk_admin_links/translations/itk_admin_links.%language.po package: ITK type: module core_version_requirement: ^8.8 || ^9 || ^10 diff --git a/web/modules/custom/itk_admin_links/translations/itk_admin_links.da.po b/web/modules/custom/itk_admin_links/translations/itk_admin_links.da.po old mode 100755 new mode 100644 index bb7fe36b6..af30421b8 --- a/web/modules/custom/itk_admin_links/translations/itk_admin_links.da.po +++ b/web/modules/custom/itk_admin_links/translations/itk_admin_links.da.po @@ -1,19 +1,50 @@ -# Danish translation of ITK admin links (8.x-1.0) +# $Id$ # +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# modules/custom/itk_admin_links/itk_admin_links.info.yml: n/a +# modules/custom/itk_admin_links/src/Plugin/Block/ItkAdminLinks.php: n/a +# modules/custom/itk_admin_links/templates/itk-admin-links-block.html.twig: n/a +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: ITK admin links (8.x-1.0)\n" -"POT-Creation-Date: 2016-06-30 11:00+0000\n" -"PO-Revision-Date: YYYY-mm-DD HH:MM+ZZZZ\n" -"Language-Team: Danish\n" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \n" +"Language: da\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Go to administration" -msgstr "Gå til administrationen" +#: modules/custom/itk_admin_links/templates/itk-admin-links-block.html.twig:7 msgid "Edit this page" msgstr "Redigér denne side" + +#: modules/custom/itk_admin_links/templates/itk-admin-links-block.html.twig:6;6 +msgid "Go to administration" +msgstr "Gå til administrationen" + +#: modules/custom/itk_admin_links/itk_admin_links.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/itk_admin_links/src/Plugin/Block/ItkAdminLinks.php:9 +msgid "ITK Admin links" +msgstr "ITK Admin links" + +#: modules/custom/itk_admin_links/itk_admin_links.info.yml:0 +msgid "ITK admin links" +msgstr "" + +#: modules/custom/itk_admin_links/templates/itk-admin-links-block.html.twig:17 msgid "Log off" -msgstr "Log af" \ No newline at end of file +msgstr "Log af" + +#: modules/custom/itk_admin_links/itk_admin_links.info.yml:0 +msgid "Show an admin icon and a row of links." +msgstr "" diff --git a/web/sites/default/settings.php b/web/sites/default/settings.php index 81362939d..347972a41 100644 --- a/web/sites/default/settings.php +++ b/web/sites/default/settings.php @@ -55,6 +55,7 @@ $settings['config_exclude_modules'] = [ 'masquerade', 'devel', 'tracer', 'webprofiler', + 'potx', ]; // See https://api.drupal.org/api/drupal/core%21lib%21Drupal%21Core%21Template%21TwigSandboxPolicy.php/11.x diff --git a/web/themes/custom/hoeringsportal/hoeringsportal.info.yml b/web/themes/custom/hoeringsportal/hoeringsportal.info.yml index 81cc4ecef..ea518b033 100755 --- a/web/themes/custom/hoeringsportal/hoeringsportal.info.yml +++ b/web/themes/custom/hoeringsportal/hoeringsportal.info.yml @@ -20,5 +20,8 @@ stylesheets-remove: # dependencies: # - module:hoeringsportal_public_meeting +# https://medium.com/limoengroen/how-to-deploy-drupal-interface-translations-5653294c4af6 +# https://julian.pustkuchen.com/en/translate-custom-modules-drupal-8-using-.po-files +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php 'interface translation project': hoeringsportal 'interface translation server pattern': themes/custom/%project/translations/%project.%language.po diff --git a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po index 3d3eec4a3..d8f48e282 100644 --- a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po +++ b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po @@ -1,161 +1,536 @@ -# Danish translation of Høringsportalen - Aarhus kommune +# $Id$ # +# Danish translation of Drupal (general) +# Copyright YEAR NAME +# Generated from files: +# themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml: n/a +# themes/custom/hoeringsportal/hoeringsportal.info.yml: n/a +# themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig: n/a +# themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig: n/a +# themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig: n/a +# themes/custom/hoeringsportal/templates/block/block--system-branding-block.html.twig: n/a +# themes/custom/hoeringsportal/templates/block/block--system-menu-block--secondary-navigation.html.twig: n/a +# themes/custom/hoeringsportal/templates/components/base-card.html.twig: n/a +# themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--list-display.html.twig: n/a +# themes/custom/hoeringsportal/templates/dataset/item-list--search-results.html.twig: n/a +# themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-citizen-proposal.html.twig: n/a +# themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig: n/a +# themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--comment.html.twig: n/a +# themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig: n/a +# themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--default--node-title.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-nearest-hearings.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-public-meeting-summary.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig: n/a +# themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--node--dynamic-block-field--node-quicklinks--public-meeting.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--field-media-document.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig: n/a +# themes/custom/hoeringsportal/templates/field/field--paragraph--field-external-link--projekt-billede-galleri.html.twig: n/a +# themes/custom/hoeringsportal/templates/form/form--search-block-form.html.twig: n/a +# themes/custom/hoeringsportal/templates/layout/html.html.twig: n/a +# themes/custom/hoeringsportal/templates/layout/page--search.html.twig: n/a +# themes/custom/hoeringsportal/templates/navigation/pager.html.twig: n/a +# themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig: n/a +# themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig: n/a +# themes/custom/hoeringsportal/templates/views/views-view--all-citizen-proposals.html.twig: n/a +# themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig: n/a +# themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig: n/a +# themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig: n/a +# +#, fuzzy msgid "" msgstr "" -"Project-Id-Version: hoeringsportal\n" -"POT-Creation-Date: 2018-10-22 16:25+0200\n" -"PO-Revision-Date: 2018-10-22 16:31+0200\n" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-04-23 14:50+0200\n" +"PO-Revision-Date: 2025-04-23 14:50+0200\n" "Last-Translator: NAME \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Danish \n" +"Language: da\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" -msgid "SAML login" -msgstr "ADFS-login" +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:5 +msgid "Sign up to our message service and be informed about your interests" +msgstr "Tilmeld dig vores nye service og bliv informeret når der er nyt der interesserer dig" -msgid "Hearing tickets" -msgstr "Høringssvar" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "A theme for Høringsportal" +msgstr "" -msgid "Attachments" -msgstr "Vedhæftninger" +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:7 +msgid "Aarhus Municipality" +msgstr "" -msgid "Replies" -msgstr "Bidrag" +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:13 +msgid "Account activities" +msgstr "" -msgid "Start date" -msgstr "Start dato" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:43 +msgid "Add contribution" +msgstr "" -msgid "Reply" -msgstr "Bidrag" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig:46 +msgid "Add hearing ticket" +msgstr "Tilføj høringssvar" -msgid "Project not secure" -msgstr "Initiativ ikke sikkert" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:64 +msgid "Address" +msgstr "Adresse" -msgid "Project revoked" -msgstr "Initiativ tilbagekaldt" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:18 +msgid "Article" +msgstr "" -msgid "Project not supported" -msgstr "Initiativ ikke understøttet" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:42 +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:59 +msgid "Before you can contribute you must validate your user account with NemID." +msgstr "" -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:51;66 +msgid "Change user information" +msgstr "" -msgid "Hearing tickets (@count)" -msgstr "Høringssvar (@count)" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:21 +msgid "Citizen proposal" +msgstr "" -msgid "Reply date" -msgstr "Bidrag dato" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Content" +msgstr "Content" -msgid "Your search yielded no result" -msgstr "Din søgning gav ingen resultater." +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig:40 +#: themes/custom/hoeringsportal/templates/field/field--node--dynamic-block-field--node-quicklinks--public-meeting.html.twig:40 +msgid "Content on this page" +msgstr "Indhold på denne side" -msgid "Information page" -msgstr "Information" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:34 +msgid "Contribute" +msgstr "" -msgid "Answer @number by @name" -msgstr "Bidrag @number af @name" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:100 +msgid "Copied to clipboard" +msgstr "" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:99 +msgid "Copy to clipboard" +msgstr "" -msgid "Show more hearings" -msgstr "Vis flere høringer" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:52 +msgid "Create user" +msgstr "" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +#: themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig:48 +#: themes/custom/hoeringsportal/templates/views/views-view--all-citizen-proposals.html.twig:57 +msgid "Create your proposal" +msgstr "Opret borgerforslag" -msgid "Open search" -msgstr "Åben søgning" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:52;101 +msgid "Date" +msgstr "Dato" -msgid "Note! Hearing deadline approaching." -msgstr "Note! Hørings tidsfristen nærmer sig." +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:58 +msgid "Digg" +msgstr "" -msgid "Content on this page" -msgstr "Indhold på denne side" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:90 +#: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:59 +msgid "Email" +msgstr "Email" -msgid "Open project gallery" -msgstr "Åbn projekt galleri" +#: themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig:11 +msgid "End date" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:82 +msgid "Evernote" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:65 +msgid "Expected finish" +msgstr "Forventet afsluttet" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:10 +msgid "Facebook" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:34 +msgid "Facebook messenger" +msgstr "" -msgid "Finished" -msgstr "Slut" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Footer" +msgstr "Footer" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:31 +msgid "Go to next page" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:18 +msgid "Go to previous page" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Header" +msgstr "" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:9 msgid "Hearing" msgstr "Høring" +#: themes/custom/hoeringsportal/templates/field/field--default--node-title.html.twig:42 msgid "Hearing reply for" msgstr "Høringssvar for" -msgid "Hearing reply by @name" -msgstr "Høringssvar fra @name" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hero" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: themes/custom/hoeringsportal/templates/block/block--system-branding-block.html.twig:18;19;20;24 +msgid "Home" +msgstr "" -msgid "Answer #@number by @name" -msgstr "Bidrag #@number af @name" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Høringsportal" +msgstr "" -msgid "Create hearing reply" -msgstr "Skriv høringssvar" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:52 +msgid "If you wan't to participate in the discussion you must create a user" +msgstr "" -msgid "Note! This hearing has not started yet" -msgstr "Note! Denne høring er ikke startet endnu." +#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:80 +msgid "Information page" +msgstr "Information" -msgid "Project start" -msgstr "Initiativ start" +#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:72 +msgid "Initiative" +msgstr "Initiativ" -msgid "Project end" -msgstr "Initiativ slut" +#: themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig:44;51 +msgid "Last date for signup" +msgstr "Tilmeldingsfrist" -msgid "Project finish" -msgstr "Initiativ afslutning" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:50 +msgid "Linkedin" +msgstr "" -msgid "Download ticket as pdf" -msgstr "Download høringssvar som pdf" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:60;100 +msgid "Location" +msgstr "" -msgid "Meeting" -msgstr "Møde" +#: themes/custom/hoeringsportal/templates/block/block--system-menu-block--secondary-navigation.html.twig:49 +msgid "Log out" +msgstr "" -msgid "Debate" -msgstr "Debat" +#: themes/custom/hoeringsportal/templates/field/field--field-media-document.html.twig:42 +msgid "Materials" +msgstr "Materialer" -msgid "Expected end date" -msgstr "Forventet slutdato" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-public-meeting-summary.html.twig:74 +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:79 +#: themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig:34 +msgid "Meeting has already been held" +msgstr "Mødet er afholdt" -msgid "" -"This question is for testing whether or not you are a human visitor " -"and to prevent automated spam submissions." +#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:56 +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:44 +msgid "Meeting has been canceled" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-public-meeting-summary.html.twig:72 +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:77 +#: themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig:32 +msgid "Meeting has been cancelled" msgstr "" -"Please type the text you see in the captcha image to prove you are " -"human" -msgid "Name" -msgstr "Navn" +#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:52 +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:58 +msgid "Meeting has been held" +msgstr "" -msgid "Email address" -msgstr "E-mailadresse" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:49;50;55 +msgid "Next" +msgstr "" -msgid "Confirm email address" -msgstr "Bekræft e-mailadresse" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:32 +msgid "Next page" +msgstr "" -msgid "Address" -msgstr "Adresse" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:63 +msgid "Not yet validated" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--paragraph--field-external-link--projekt-billede-galleri.html.twig:51 +msgid "Open project gallery" +msgstr "Åbn projektgalleri" + +#: themes/custom/hoeringsportal/templates/form/form--search-block-form.html.twig:23 +msgid "Open search" +msgstr "Åben søgning" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:87 +#: themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:50 +#: themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig:42 +msgid "Opens in a new tab" +msgstr "Åbner i en ny fane" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:65 +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:20 +#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:17 +msgid "Options" +msgstr "" -msgid "My address is secret" -msgstr "Min adresse er hemmelig" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:46 +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:26 +msgid "Page" +msgstr "Side" -msgid "I represent" -msgstr "Jeg udtaler mig som" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:14 +msgid "Pagination" +msgstr "" -msgid "Organization" -msgstr "Organisation" +#: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:54 +msgid "Phone" +msgstr "Telefonnummer" -msgid "Subject" -msgstr "Emne" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:42 +msgid "Pinterest" +msgstr "" -msgid "Message" -msgstr "Besked" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:37;38;43 +msgid "Previous" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:19 +msgid "Previous page" +msgstr "" -msgid "Select a file" -msgstr "Vælg en fil" +#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:16 +msgid "Primary tabs" +msgstr "Primary tabs" -msgid "I have red the terms and give my consent" -msgstr "Jeg har læst betingelserne og giver mit samtykke" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:115 +msgid "Print" +msgstr "" + +#: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 +msgid "Progress" +msgstr "" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:12 +msgid "Project" +msgstr "Project" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig:40 +msgid "Project info" +msgstr "Initiativ info" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:15 +msgid "Public meeting" +msgstr "Begivenhed" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:74 +msgid "Reddit" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-public-meeting-summary.html.twig:78 +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:83 +#: themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:45 +#: themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig:38 +msgid "Registration deadline passed" +msgstr "Deadline for tilmelding er overskredet" + +#: themes/custom/hoeringsportal/templates/layout/page--search.html.twig:52 +msgid "Search" +msgstr "Search" + +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:45 +msgid "Search and results will show up here" +msgstr "Søg og resultaterne vil blive vist her" + +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:53 +msgid "Search for %search_terms returned no results" +msgstr "Søgning på %search_terms gav ingen resultater" + +#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:21 +msgid "Secondary tabs" +msgstr "Secondary tabs" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:4 +msgid "Share the proposal" +msgstr "Del forslaget" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:8;8;16;16;24;24;32;32;40;40;48;48;56;56;64;64;72;72;80;80;88;88 +msgid "Share to" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:57 +msgid "Show all hearings" +msgstr "Vis alle høringer" + +#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:57 +msgid "Show all meetings" +msgstr "Vis alle begivenheder" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-nearest-hearings.html.twig:62 +msgid "Show more hearings" +msgstr "Vis flere høringer" + +#: themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig:54;58 +msgid "Show on map" +msgstr "Vis på kort" + +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:25 +msgid "Show profile" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Sidebar" +msgstr "Sidebar" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:86 +#: themes/custom/hoeringsportal/templates/misc/itk-pretix-date-entry.html.twig:41 +msgid "Sign up" +msgstr "Tilmeld dig her" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-public-meeting-summary.html.twig:80 +msgid "Sign up for public meeting" +msgstr "Tilmeld dig her" + +#: themes/custom/hoeringsportal/templates/layout/html.html.twig:41 +msgid "Skip to main content" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:68;103 +msgid "Spots" +msgstr "Pladser" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:59 +msgid "Start" +msgstr "Start" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-citizen-proposal.html.twig:59;68 +msgid "Support the proposal" +msgstr "Støt borgerforslaget" + +#: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:55 +msgid "The hearing list is empty" +msgstr "Ingen høringer fundet" + +#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:55 +msgid "The meeting list is empty" +msgstr "Ingen begivenheder fundet" + +#: themes/custom/hoeringsportal/templates/views/views-view--all-citizen-proposals.html.twig:55 +msgid "The proposal list is empty" +msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:56;102 +msgid "Time" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:54 +msgid "Try with less words or to phrase it differently" +msgstr "Prøv med færre eller andre søgeord " + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:66 +msgid "Tumblr" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:37 +msgid "User validated" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:59 +msgid "User validation" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:45 +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:62 +msgid "Validate" +msgstr "" + +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:23 +msgid "Validate account" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:41 +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:58 +msgid "Validate with NemID" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:61 +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:15 +msgid "Validated with NemID" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:26 +msgid "Whatsapp" +msgstr "" + +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:4 +msgid "Would you like a direct message when deltag.aarhus.dk has new content?" +msgstr "Vil du modtage en mail når der er nyt fra deltag.aarhus.dk?" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:18 +msgid "X (Twitter)" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:43 +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:60 +msgid "You only have to do it once, and you can do it now." +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:56 +msgid "Your information" +msgstr "" + +#: themes/custom/hoeringsportal/templates/dataset/item-list--search-results.html.twig:38 +msgid "Your search yielded no result" +msgstr "Din søgning gav ingen resultater." + +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "lg" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "md" +msgstr "" + +#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:33 +msgid "replies" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "sm" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "xl" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "xs" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:20 +msgid "‹‹" +msgstr "" + +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:33 +msgid "››" +msgstr ""