From 4c9051b5b0433ccb7ede6cebcedfaa07884aa27f Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 09:55:47 +0100 Subject: [PATCH 01/14] Extracted translations and added translation settings # Conflicts: # .github/workflows/pr.yaml # CHANGELOG.md # composer.lock --- .github/workflows/pr.yaml | 20 + .gitignore | 2 + CHANGELOG.md | 2 + Taskfile.yml | 87 ++- composer.json | 1 + documentation/Translation.md | 19 + .../hoeringsportal_citizen_proposal.info.yml | 4 + .../hoeringsportal_citizen_proposal.da.po | 470 +++++++++++++++ ...portal_citizen_proposal_archiving.info.yml | 4 + ...ngsportal_citizen_proposal_archiving.da.po | 134 +++++ .../hoeringsportal_config_settings.info.yml | 4 + .../hoeringsportal_config_settings.da.po | 207 +++++++ .../hoeringsportal_content_access.info.yml | 4 + .../hoeringsportal_content_access.da.po | 37 ++ .../hoeringsportal_content_blocks.info.yml | 4 + .../hoeringsportal_content_blocks.da.po | 78 +++ .../hoeringsportal_data.info.yml | 4 + .../translations/hoeringsportal_data.da.po | 157 +++++ .../hoeringsportal_deskpro.info.yml | 4 + .../translations/hoeringsportal_deskpro.da.po | 422 +++++++++++++ .../hoeringsportal_forms.info.yml | 4 + .../translations/hoeringsportal_forms.da.po | 82 +++ .../hoeringsportal_hearing.info.yml | 4 + .../translations/hoeringsportal_hearing.da.po | 82 +++ .../hoeringsportal_openid_connect.info.yml | 4 + .../hoeringsportal_openid_connect.da.po | 49 ++ .../hoeringsportal_project_timeline.info.yml | 4 + .../hoeringsportal_project_timeline.da.po | 61 ++ .../hoeringsportal_public_meeting.info.yml | 4 + .../hoeringsportal_public_meeting.da.po | 168 ++++++ .../hoeringsportal_quicklinks.info.yml | 4 + .../hoeringsportal_quicklinks.da.po | 37 ++ ...ringsportal_test_delta_sync_fixtures.da.po | 31 + web/sites/default/settings.php | 1 + .../hoeringsportal/hoeringsportal.info.yml | 3 + .../translations/hoeringsportal.da.po | 554 +++++++++++++++--- 36 files changed, 2658 insertions(+), 98 deletions(-) create mode 100644 documentation/Translation.md create mode 100644 web/modules/custom/hoeringsportal_citizen_proposal/translations/hoeringsportal_citizen_proposal.da.po create mode 100644 web/modules/custom/hoeringsportal_citizen_proposal_archiving/translations/hoeringsportal_citizen_proposal_archiving.da.po create mode 100644 web/modules/custom/hoeringsportal_config_settings/translations/hoeringsportal_config_settings.da.po create mode 100644 web/modules/custom/hoeringsportal_content_access/translations/hoeringsportal_content_access.da.po create mode 100644 web/modules/custom/hoeringsportal_content_blocks/translations/hoeringsportal_content_blocks.da.po create mode 100644 web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po create mode 100644 web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po create mode 100644 web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po create mode 100644 web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po create mode 100644 web/modules/custom/hoeringsportal_openid_connect/translations/hoeringsportal_openid_connect.da.po create mode 100644 web/modules/custom/hoeringsportal_project_timeline/translations/hoeringsportal_project_timeline.da.po create mode 100644 web/modules/custom/hoeringsportal_public_meeting/translations/hoeringsportal_public_meeting.da.po create mode 100644 web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po create mode 100644 web/modules/custom/hoeringsportal_test_delta_sync_fixtures/translations/hoeringsportal_test_delta_sync_fixtures.da.po diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 9d0a0a8c8..ee80649fd 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -372,3 +372,23 @@ jobs: - name: Reverse patch run: | docker compose exec phpfpm patch --strip=1 --verbose --input=${{ matrix.patch }} --reverse + + check-translations: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: arduino/setup-task@v2 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Install site + run: | + docker network create frontend + task site-install --yes + + - name: Extract translations + run: | + task translations:extract + + - run: | + task 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..23f5aea41 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -13,6 +13,12 @@ vars: PRETIX_URL: '{{.TASK_PRETIX_URL | default "http://pretix.hoeringsportal.local.itkdev.dk"}}' PRETIX_ORGANIZER: '{{.TASK_PRETIX_ORGANIZER | default "dpl-cms"}}' + CUSTOM_MODULES: + sh: ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml' + + CUSTOM_THEMES: + sh: ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml' + tasks: default: cmds: @@ -52,12 +58,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 @@ -258,3 +265,79 @@ tasks: # 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 + + translations:extract:modules: + cmds: + # https://github.com/go-task/task/discussions/1543 + - for: + matrix: + MODULE: + ref: .CUSTOM_MODULES + LANGUAGE: + - da + cmd: | + task drush -- potx single --folder=modules/custom/{{.ITEM.MODULE}}/ --language {{.ITEM.LANGUAGE}} --translations && \ + mkdir -p web/modules/custom/{{.ITEM.MODULE}}/translations && \ + mv web/general.pot web/modules/custom/{{.ITEM.MODULE}}/translations/{{.ITEM.MODULE}}.{{.ITEM.LANGUAGE}}.po + internal: true + + translations:extract:themes: + cmds: + # https://github.com/go-task/task/discussions/1543 + - for: + matrix: + THEME: + ref: .CUSTOM_THEMES + LANGUAGE: + - da + # `drush potx` always writes to web/general.pot, so we move this file + # into the desired destination in the `translations` folder inside the + # module folder. + cmd: | + task drush -- potx single --folder=themes/custom/{{.ITEM.THEME}}/ --language {{.ITEM.LANGUAGE}} --translations && \ + mkdir -p web/themes/custom/{{.ITEM.THEME}}/translations && \ + mv web/general.pot web/themes/custom/{{.ITEM.THEME}}/translations/{{.ITEM.THEME}}.{{.ITEM.LANGUAGE}}.po + internal: true + + translations:diff: + 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' web/*/custom/*/translations + + translations:extract: + cmds: + - task drush -- --yes pm:install potx + - task: translations:extract:modules + - task: translations:extract:themes + - task drush -- --yes pm:uninstall potx + 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? + translations:import:modules: + cmds: + - for: + matrix: + MODULE: + ref: .CUSTOM_MODULES + cmd: task drush -- locale:import-all --override=none modules/custom/{{.ITEM.MODULE}}/translations/ + silent: true + + translations:import:themes: + cmds: + - for: + matrix: + THEME: + ref: .CUSTOM_THEMES + cmd: task drush -- locale:import-all --override=none themes/custom/{{.ITEM.THEME}}/translations/ + silent: true + + translations:import:all: + cmds: + - task: translations:import:modules + - task: translations:import:themes + silent: true diff --git a/composer.json b/composer.json index 3a79ba53f..6fcdb23a2 100755 --- a/composer.json +++ b/composer.json @@ -84,6 +84,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", diff --git a/documentation/Translation.md b/documentation/Translation.md new file mode 100644 index 000000000..5bc82b940 --- /dev/null +++ b/documentation/Translation.md @@ -0,0 +1,19 @@ +# Translation + +We use [Translation template extractor](https://www.drupal.org/project/potx) to extract translations from custom modules +and themes. + +We 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). + +Extract translations by running + +``` shell name=translations:extract +task translations:extract +``` + +Import (extracted) translations by running + +``` shell name=translations:import:all +task translations:import:all +``` diff --git a/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml b/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml index 00f0a5f4e..a2ae4660d 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml +++ b/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml @@ -6,3 +6,7 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - twig_tweak:twig_tweak - drupal:symfony_mailer + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_citizen_proposal +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..152990317 --- /dev/null +++ b/web/modules/custom/hoeringsportal_citizen_proposal/translations/hoeringsportal_citizen_proposal.da.po @@ -0,0 +1,470 @@ +# $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-03-12 15:17+0100\n" +"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_citizen_proposal.info.yml:0 +msgid "Hoeringsportal citizen proposal" +msgstr "" + +#: 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/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/hoeringsportal_citizen_proposal.links.task.yml:0 +msgid "Citizen proposal" +msgstr "" + +#: 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/hoeringsportal_citizen_proposal.permissions.yml:0 +msgid "Administer citizen proposal module" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml:0 +msgid "Access citizen proposal admin pages" +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/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 "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Administer citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Support 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/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/EventSubscriber/CitizenAccessCheckEventSubscriber.php:72 +msgid "Citizen access denied" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:54 +msgid "Cannot get CPR (@cprClaim) from user claims" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:65 +msgid "Citizen access check exception: @message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:55 +msgid "Authenticate" +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/ProposalAdminForm.php:74 +msgid "Authenticate link text" +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: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:90 +msgid "Add form" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:95 +msgid "Author intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:102;231 +msgid "Name help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:108 +msgid "Phone 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:120 +msgid "Email display help" +msgstr "" + +#: 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: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/ProposalAdminForm.php:133 +msgid "Proposal intro" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:140 +msgid "Title help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:146 +msgid "Proposal help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:152 +msgid "Remarks help" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:158 +msgid "Consent help" +msgstr "" + +#: 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:165 +msgid "Number of allowed characters for title field." +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: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/ProposalAdminForm.php:199 +msgid "Redirect URL after a proposal has been submitted" +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:211 +msgid "Submission text when a proposal has been submitted" +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/ProposalAdminForm.php:250 +msgid "Redirect URL after a proposal has been supported" +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/ProposalAdminForm.php:257 +msgid "Submission text when a proposal has been supported" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:267 +msgid "Sidebar" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:272 +msgid "Sidebar text" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:282 +msgid "Save" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:311 +msgid "Survey webform" +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:318 +msgid "Select a survey to show as part of the form. Manage surveys." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:325 +msgid "Survey description" +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/ProposalAdminForm.php:364 +msgid "Emails" +msgstr "" + +#: 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/ProposalAdminForm.php:373 +msgid "Editor email address" +msgstr "" + +#: 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:381 modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 +msgid "Proposal published (citizen)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:389 +msgid "Subject" +msgstr "Emne" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:395 +msgid "Content" +msgstr "Content" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:412 +msgid "Citizen proposal settings sucessfully saved." +msgstr "" + +#: 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: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/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/ProposalFormAdd.php:72 +msgid "Phone" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:83 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:94 +msgid "Email" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:92 +msgid "Display email" +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 "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:120 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:95 +msgid "Title" +msgstr "Overskrift" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:127;145;163 +msgid "@remaining characters left." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:138 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:102 +msgid "Proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:156 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:109 +msgid "Remarks" +msgstr "" + +#: 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 "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:182 +msgid "Update proposal" +msgstr "" + +#: 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 "" + +#: 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/ProposalFormApprove.php:73 +msgid "(Not shown on proposal)" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:75 +msgid "E-mail" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:87 +msgid "Phone number" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:140 +msgid "Approve proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:145 +msgid "Edit proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:153 +msgid "Cancel proposal" +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/ProposalFormApprove.php:188 +msgid "Your submission has been cancelled." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:200 +msgid "Could not find a proposal to approve." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:70 +msgid "Authenticate with MitID" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:89 +msgid "You're currently authenticated as @name" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:93 +msgid "Sign out" +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/ProposalFormSupport.php:59 +msgid "You already supported this proposal on @support_date. You can only support a proposal once." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:71 +msgid "You're supporting @label on behalf of a citizen" +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 "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:185 +msgid "Thank you for your support." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:191 +msgid "Something went wrong. Your support was not registered." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/CitizenAccessChecker.php:59 +msgid "Citizen access @granted: @values" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:104 +msgid "Error setting draft proposal: @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: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/Plugin/Block/CitizenProposalSupportCounter.php:11 +msgid "Citizen proposal support counter" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/templates/citizen-proposal-support-counter.html.twig:13 +msgid "Number of supporters" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-support-form.html.twig:19 +msgid "Support the proposal" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml index d5f152c28..fecbb954b 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml +++ b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml @@ -7,3 +7,7 @@ dependencies: - advancedqueue:advancedqueue - entity_events:entity_events - hoeringsportal_citizen_proposal:hoeringsportal_citizen_proposal + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_citizen_proposal_archiving +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..3d6cc1edc --- /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-03-12 15:17+0100\n" +"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/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 "Archives citizen proposals in GetOrganized." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:48 +msgid "Archiving node @label" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:54 +msgid "Done archiving node @label" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:108 +msgid "@message" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:51 +msgid "Archived at" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:68 +msgid "Archive URL" +msgstr "" + +#: 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/src/Helper/Helper.php:107 +msgid "Job for archiving citizen proposal @label added to the queue @queue." +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:151 +msgid "Citizen proposal @label archived" +msgstr "" + +#: 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/src/Plugin/AdvancedQueue/JobType/ArchiveCitizenProposalJob.php:12 +msgid "Archive citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:13 +msgid "Citizen proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:16 +msgid "Proposal" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:19 +msgid "Remarks" +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:26 +msgid "Name" +msgstr "Navn" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:30 +msgid "Email" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:33 +msgid "Phone" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:37 +msgid "Details" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:46 +msgid "Vote start" +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:53 +msgid "Url" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:56 +msgid "Printed at" +msgstr "" + +#: modules/custom/hoeringsportal_citizen_proposal_archiving/config/install/advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving.yml:0 +msgid "Citizen proposal archiving" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml b/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml index 5734c37c1..26d5a1994 100755 --- a/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml +++ b/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml @@ -5,3 +5,7 @@ core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal dependencies: - drupal:itk_admin + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_config_settings +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..f7aad90f0 --- /dev/null +++ b/web/modules/custom/hoeringsportal_config_settings/translations/hoeringsportal_config_settings.da.po @@ -0,0 +1,207 @@ +# $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-03-12 15:17+0100\n" +"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/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/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal admin" +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/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.menu.yml:0;0 +msgid "User's manual" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 +msgid "General settings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 +msgid "Hearing settings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 +msgid "General" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 +msgid "Hearing" +msgstr "Høring" + +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0;0 +msgid "Frontpage" +msgstr "Frontpage" + +#: 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/HearingSettingsForm.php:39 +msgid "Hearing deadline timer" +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/HearingSettingsForm.php:48 modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:222 +msgid "Save changes" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:46 +msgid "Footer" +msgstr "Footer" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:54 +msgid "Footer bottom menu" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:62 +msgid "Footer bottom links" +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: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:92 +msgid "Footer text forth column" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:100 +msgid "Overview pages" +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:110 +msgid "Initiative overview page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:114 +msgid "The page used for an overview of initiatives" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:120 +msgid "Hearings overview page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:124 +msgid "The page used for an overview of hearings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:129 +msgid "External references" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:133 +msgid "Links to external pages." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:139 +msgid "Map of all hearings and meetings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:142 +msgid "Used when linking to the map of all hearings and meetings." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:147 +msgid "Map of all projects" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:150 +msgid "Used when linking to a map of all projects." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:155 +msgid "Map of all hearings" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:158 +msgid "Used when linking to a map of all hearings." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:162 +msgid "Pages" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:171 +msgid "Front page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:179 +msgid "User's manual url" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:186 +msgid "Newsletter node page" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:190 +msgid "The node to attach the newsletter signup form to." +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:195 +msgid "Newsletter iframe source" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:201 +msgid "Newsletter iframe height" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:203 +msgid "The height of the iframe i.e 450px" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:207 +msgid "Messages" +msgstr "" + +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:215 +msgid "Login message" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml b/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml index 488bb5716..e91cb1e34 100755 --- a/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml +++ b/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml @@ -3,3 +3,7 @@ type: module description: 'Control access to certain content' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_content_access +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..dd764dca8 --- /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-03-12 15:17+0100\n" +"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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 "Hoeringsportal content access" +msgstr "" + +#: 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/src/Helper.php:204 +msgid "You must select at least one of your departments" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml b/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml index 7b573e71e..b4de7acc8 100755 --- a/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml +++ b/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml @@ -3,3 +3,7 @@ type: module description: 'Blocks used for displaying content on nodes' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_content_blocks +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..cfd81b63c --- /dev/null +++ b/web/modules/custom/hoeringsportal_content_blocks/translations/hoeringsportal_content_blocks.da.po @@ -0,0 +1,78 @@ +# $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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_content_blocks.info.yml:0 +msgid "Hoeringsportal content blocks" +msgstr "" + +#: 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/src/Plugin/Block/HearingTypeAddress.php:8 +msgid "Node address" +msgstr "Adresse" + +#: 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/HearingWarning.php:8 +msgid "Node hearing warning" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/src/Plugin/Block/MeetingWarning.php:10 +msgid "Node public meeting warning" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:14;20;26 modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:14;17 +msgid "Note!" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:14 +msgid "Hearing deadline has passed." +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:20 +msgid "This hearing has not started yet" +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:26 +msgid "Hearing deadline approaching." +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:14 +msgid "This public meeting has been held." +msgstr "" + +#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:17 +msgid "This public meeting has been cancelled." +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml b/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml index f42add977..bff4de66f 100644 --- a/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml +++ b/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml @@ -7,3 +7,7 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - field - hoeringsportal_deskpro + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_data +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..09fae376e --- /dev/null +++ b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po @@ -0,0 +1,157 @@ +# $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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_data.info.yml:0 +msgid "Høringsportal data" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +msgid "Custom data stuff." +msgstr "" + +#: 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.routing.yml:0 +msgid "API" +msgstr "" + +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0;0;0 +msgid "Hearings" +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 +msgid "Public meetings" +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/hoeringsportal_data.routing.yml:0 +msgid "GeoJSON hearings (v2)" +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/Drush/Commands/DrushCommands.php:106 +msgid "No hearings found" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Helper/HearingHelper.php:115 +msgid "Error finding hearing whose replies must be deleted: @message" +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/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/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 "" + +#: 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/FieldType/LocalplanItem.php:9 +msgid "Local plan" +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/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/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/src/Plugin/Field/FieldType/MapItem.php:9 +msgid "Map display" +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/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 "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:87 +msgid "@url" +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/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/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:185 +msgid "Please select a point on the map" +msgstr "" + +#: modules/custom/hoeringsportal_data/src/Plugin/Validation/Constraint/MapConfiguration.php:7 +msgctxt "Validation" +msgid "Map configuration" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml b/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml index 94c66a11e..d72541f11 100644 --- a/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml +++ b/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml @@ -6,3 +6,7 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - itk_admin + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_deskpro +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..fbfca1790 --- /dev/null +++ b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po @@ -0,0 +1,422 @@ +# $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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_deskpro.module:21 +msgid "About" +msgstr "Om" + +#: 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.install:353 +msgid "Batch finished" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Høringsportal Deskpro" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.links.task.yml:0 +msgid "Deskpro settings" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.permissions.yml:0 +msgid "Access Deskpro settings" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Synchronize hearing" +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/hoeringsportal_deskpro.routing.yml:0 +msgid "Departments autocomplete" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Agents autocomplete" +msgstr "" + +#: 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.routing.yml:0 +msgid "Departments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Agents" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Hearings" +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 "Tickets" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket messages" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket attachments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:78 +msgid "Add hearing ticket form" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:84 +msgid "Intro text" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:93 +msgid "Consent text" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:108 +msgid "Confirmation after ticket submit" +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:114 +msgid "Available tokens: @tokens" +msgstr "" + +#: 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/src/Form/DeskproSettingsForm.php:142 +msgid "Is available" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:147 +msgid "Require organization" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:166 +msgid "Deskpro url" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:173 +msgid "Deskpro api code key" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:181 +msgid "Deskpro ticket custom fields" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:222 +msgid "Available departments" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:225 +msgid "The departments that can be attached to hearings." +msgstr "" + +#: 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:231 +msgid "Languages" +msgstr "" + +#: 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/DeskproSettingsForm.php:256 +msgid "Select Deskpro ticket language for Drupal node language @language" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:265 +msgid "Default Deskpro ticket language" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:272 +msgid "Deskpro data token" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:275 +msgid "Token used for accessing the data api." +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/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/src/Form/DeskproSettingsForm.php:296 +msgid "Save" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:309 +msgid "Please enter a valid url." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:318 +msgid "This field is already used by @name." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:349 +msgid "Your settings have been saved." +msgstr "" + +#: 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:83 +msgid "Email address" +msgstr "E-mailadresse" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:89 +msgid "Confirm email address" +msgstr "Bekræft e-mailadresse" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:95 +msgid "Address" +msgstr "Adresse" + +#: 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:111 +msgid "Postal code and city" +msgstr "Postnummer og by" + +#: 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:137 +msgid "My address is secret" +msgstr "Jeg har adressebeskyttelse" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:152 +msgid "I represent" +msgstr "Jeg udtaler mig som" + +#: 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/HearingTicketAddForm.php:174 +msgid "Subject" +msgstr "Emne" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:180 +msgid "Message" +msgstr "Høringssvar" + +#: 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: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:211 +msgid "Send" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:231 +msgid "Your name cannot contain numbers." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:236 +msgid "Confirmation email does not match email." +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:325 +msgid "Your hearing ticket has being submitted and will appear here in a few minutes." +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:337 +msgid "Error submitting hearing ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:308;338 +msgid "@message" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/AdvancedQueue/JobType/SynchronizeTicket.php:12 +msgid "Update or create ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 +msgid "Hearing ticket add" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php:7 +msgid "Hearing ticket author" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketBlock.php:7 +msgid "Hearing ticket" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketTitleBlock.php:5 +msgid "Hearing ticket title" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Validation/Constraint/AgentEmailContraint.php:7 +msgctxt "Validation" +msgid "Agent email" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:703 +msgid "Deleted hearing replies from hearing @label (@id): @result" +msgstr "" + +#: 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/Service/HearingHelper.php:230 +msgid "@message: @body" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:14 +msgid "Name" +msgstr "Navn" + +#: 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-ticket-author.html.twig:21 +msgid "Represents" +msgstr "Udtaler sig som" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:32 +msgid "Ticket reference" +msgstr "Sagsnummer" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-title.html.twig:15 +msgid "Hearing reply" +msgstr "Høringssvar" + +#: 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/templates/block/hoeringsportal-hearing-ticket.html.twig:57 +msgid "Download ticket as pdf" +msgstr "Download høringssvar som pdf" + +#: 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/templates/block/hoeringsportal-hearing-tickets.html.twig:18 +msgid "Show hearing tickets" +msgstr "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:47 +msgid "The hearing replies were deleted on @date" +msgstr "" + +#: 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 "" + +#: 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 "" + +#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:97 +msgid "@ticket_ref by @person_name" +msgstr "@ticket_ref af @person_name" + diff --git a/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml b/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml index 5f6f9884e..89065bec9 100755 --- a/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml +++ b/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml @@ -3,3 +3,7 @@ type: module description: 'Customization of backend forms' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_forms +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..4960d15e3 --- /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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_forms.module:196 +msgid "SAML login" +msgstr "ADFS-login" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.module:207 +msgid "Login providers" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal forms" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Customization of backend forms" +msgstr "" + +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:142 +msgid "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 "" + +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:154 +msgid "Dropdown" +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:174 +msgid "An invalid type is selected. Please change it in the options." +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:182;245 +msgid "Select content" +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/src/Plugin/views/filter/NodeIndexNid.php:352 +msgid "Display error message" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml b/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml index 0b5542623..9d12b6a64 100644 --- a/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml +++ b/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml @@ -3,3 +3,7 @@ type: module description: 'Stuff related to hearing content type' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_hearing +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..7309a03db --- /dev/null +++ b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po @@ -0,0 +1,82 @@ +# $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 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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:25 +msgid "About" +msgstr "Om" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:26 +msgid "Hearings" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:41 +msgid "Add hearing reply" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:79 +msgid "Hearing deadline: @deadline" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:83 +msgid "Hearing deadline has passed" +msgstr "Høringsfristen er overskredet" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Hoeringsportal hearing" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Stuff related to hearing content type" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 +msgid "Hoeringsportal" +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 "Provides hearing fixtures for the site." +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:26 +msgid "GIS data" +msgstr "" + +#: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:32 +msgid "Insert GIS minimap by UUID" +msgstr "" + +#: 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:82 +msgid "Invalid GIS map UUID: @map_uuid" +msgstr "Ugyldigt GIS-kort-uuid: @map_uuid" diff --git a/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml b/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml index 90f30891d..1df005639 100644 --- a/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml +++ b/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml @@ -5,3 +5,7 @@ package: ITK core_version_requirement: ^9 || ^10 dependencies: - drupal:drupal_psr6_cache + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_openid_connect +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..a1cc86ce7 --- /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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_openid_connect.info.yml:0 +msgid "Hoeringsportal OpenID Connect" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml:0 +msgid "OpenID Connect stuff" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml:0 +msgid "ITK" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:416 +msgid "Try again" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:323 +msgid "Missing state in response" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:329 +msgid "Invalid state" +msgstr "" + +#: modules/custom/hoeringsportal_openid_connect/src/Controller/OpenIDConnectController.php:398 +msgid "Error" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml b/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml index 3da31da6e..512577781 100644 --- a/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml +++ b/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml @@ -3,3 +3,7 @@ type: module description: 'Provides timeline block for projects' core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_project_timeline +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..71a8fd1aa --- /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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_project_timeline.info.yml:0 +msgid "Hoeringsportal 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/hoeringsportal_project_timeline.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:54 +msgid "Start" +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:70 +msgid "Expected finish" +msgstr "Forventet afsluttet" + +#: 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:103 +msgid "Hearing" +msgstr "Høring" + +#: 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:13 +msgid "Project timeline" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml b/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml index a0f237e2c..06f881cbc 100755 --- a/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml +++ b/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml @@ -3,3 +3,7 @@ type: module description: 'Stuff related to public meeting content type' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_public_meeting +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..4b77d4203 --- /dev/null +++ b/web/modules/custom/hoeringsportal_public_meeting/translations/hoeringsportal_public_meeting.da.po @@ -0,0 +1,168 @@ +# $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/hoeringsportal_public_meeting.routing.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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/hoeringsportal_public_meeting.module:112 +msgid "Note: If this public meeting is cancelled you should go to @cancelLink to cancel all orders." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:232;251 +msgid "Please enter a value!" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:277;331 +msgid "The meeting time must not be in the past." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:300 +msgid "Please enter a location" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:303 +msgid "Please enter an address" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:306 +msgid "Please enter a start time" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:309 +msgid "Please enter an end time" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:312 +msgid "Please enter number of spots" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:321 +msgid "The registration deadline is required." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:326 +msgid "The registration deadline must not be in the past." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:334 +msgid "The registration deadline must not be after the meeting starts." +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:338 +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:396 +msgid "Hearing deadline has passed" +msgstr "Høringsfristen er overskredet" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:400 +msgid "Public meeting cancelled" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml:0 +msgid "Hoeringsportal public meeting" +msgstr "" + +#: 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.info.yml:0 +msgid "Hoeringsportal" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.routing.yml:0 +msgid "Public meeting date" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:11 +msgid "Public meeting summary" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:11 +msgid "Public meeting" +msgstr "Begivenhed" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:48;54 +msgid "Date" +msgstr "Dato" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:51;57 +msgid "Time" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:62 +msgid "Place" +msgstr "Lokation" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:67 +msgid "Address" +msgstr "Adresse" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:72 +msgid "Last signup date" +msgstr "Tilmeldingsfrist" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:77;80 +msgid "Spots" +msgstr "Pladser" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:84 +msgid "Registration" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:86 +msgid "Meeting has been cancelled" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:88 +msgid "Meeting has already been held" +msgstr "Mødet er afholdt" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:91 +msgid "Registration deadline passed" +msgstr "Deadline for tilmelding er overskredet" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:93 +msgid "No available spots left" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:96 +msgid "Sign up" +msgstr "Tilmeld dig her" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:97 +msgid "Opens in a new tab" +msgstr "Åbner i en ny fane" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:99 +msgid "Deadline:" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:104 +msgid "This event has multiple dates" +msgstr "" + +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:105 +msgid "View the list" +msgstr "" + diff --git a/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml b/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml index 891531095..920489d87 100644 --- a/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml +++ b/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml @@ -3,3 +3,7 @@ type: module description: 'Provides quicklinks block' core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal + +# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php +'interface translation project': hoeringsportal_quicklinks +'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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..56263d1a5 --- /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-03-12 15:18+0100\n" +"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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 quicklinks" +msgstr "" + +#: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 +msgid "Provides quicklinks block" +msgstr "" + +#: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 +msgid "Hoeringsportal" +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..7e67e7665 --- /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-03-12 15:19+0100\n" +"PO-Revision-Date: 2025-03-12 15:19+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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 "Provides test fixtures for delta sync." +msgstr "" + +#: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 +msgid "ITK" +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..b70e87290 100644 --- a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po +++ b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po @@ -1,161 +1,523 @@ -# 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/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--list-display.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig: n/a +# themes/custom/hoeringsportal/templates/content/node--teaser.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/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-03-12 15:19+0100\n" +"PO-Revision-Date: 2025-03-12 15:19+0100\n" "Last-Translator: NAME \n" -"Language-Team: LANGUAGE \n" +"Language-Team: Danish \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/hoeringsportal.breakpoints.yml:0 +msgid "xs" +msgstr "" -msgid "Hearing tickets" -msgstr "Høringssvar" +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "sm" +msgstr "" -msgid "Attachments" -msgstr "Vedhæftninger" +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "md" +msgstr "" -msgid "Replies" -msgstr "Bidrag" +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "lg" +msgstr "" -msgid "Start date" -msgstr "Start dato" +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "xl" +msgstr "" -msgid "Reply" -msgstr "Bidrag" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Høringsportal" +msgstr "" -msgid "Project not secure" -msgstr "Initiativ ikke sikkert" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "A theme for Høringsportal" +msgstr "" -msgid "Project revoked" -msgstr "Initiativ tilbagekaldt" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hoeringsportal" +msgstr "" -msgid "Project not supported" -msgstr "Initiativ ikke understøttet" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Header" +msgstr "" -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hero" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Content" +msgstr "Content" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Sidebar" +msgstr "" + +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Footer" +msgstr "Footer" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:4 +msgid "Share the proposal" +msgstr "" + +#: 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/better-social-sharing-buttons.html.twig:10 +msgid "Facebook" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:18 +msgid "X (Twitter)" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:26 +msgid "Whatsapp" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:34 +msgid "Facebook messenger" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:42 +msgid "Pinterest" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:50 +msgid "Linkedin" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:58 +msgid "Digg" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:66 +msgid "Tumblr" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:74 +msgid "Reddit" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:82 +msgid "Evernote" +msgstr "" + +#: 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 "" -msgid "Hearing tickets (@count)" -msgstr "Høringssvar (@count)" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:99 +msgid "Copy to clipboard" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:100 +msgid "Copied to clipboard" +msgstr "" + +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:115 +msgid "Print" +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 "" + +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:5 +msgid "Sign up to our message service and be informed about your interests" +msgstr "" +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:7 +msgid "Aarhus Municipality" +msgstr "" + +#: themes/custom/hoeringsportal/templates/block/block--system-branding-block.html.twig:18;19;20;24 +msgid "Home" +msgstr "" + +#: themes/custom/hoeringsportal/templates/block/block--system-menu-block--secondary-navigation.html.twig:49 +msgid "Log out" +msgstr "" + +#: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:54 +msgid "Phone" +msgstr "" + +#: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 +msgid "Progress" +msgstr "" + +#: themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig:82 +msgid "End date" +msgstr "" + +#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:72 +msgid "Initiative" +msgstr "Initiativ" + +#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:80 +msgid "Information page" +msgstr "Information" + +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:102 +msgid "Public meeting" +msgstr "Begivenhed" + +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:106;109 themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:104;108 +msgid "Finished" +msgstr "Afsluttet" + +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:117 +msgid "Cancelled" +msgstr "Aflyst" + +#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:73 +msgid "Project" +msgstr "" + +#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:97 +msgid "Start date" +msgstr "Start dato" + +#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:101 +msgid "Upcoming" +msgstr "På vej" + +#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:112 msgid "Reply date" -msgstr "Bidrag dato" +msgstr "Svar frist" +#: 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." -msgid "Information page" -msgstr "Information" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-citizen-proposal.html.twig:59;68 +msgid "Support the proposal" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig:40 +msgid "Project info" +msgstr "Initiativ info" -msgid "Answer @number by @name" -msgstr "Bidrag @number af @name" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:37 +msgid "User validated" +msgstr "" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +#: 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: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 "" + +#: 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:45 themes/custom/hoeringsportal/templates/field/field--comment.html.twig:62 +msgid "Validate" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:51;66 +msgid "Change user information" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:56 +msgid "Your information" +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:61 themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:15 +msgid "Validated with NemID" +msgstr "" + +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:63 +msgid "Not yet validated" +msgstr "" + +#: 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 "" + +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:34 +msgid "Contribute" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:43 +msgid "Add contribution" +msgstr "" + +#: 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 "" + +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:52 +msgid "Create user" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--default--node-title.html.twig:42 +msgid "Hearing reply for" +msgstr "Høringssvar for" + +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-nearest-hearings.html.twig:62 msgid "Show more hearings" msgstr "Vis flere høringer" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:59 +msgid "Start" +msgstr "" -msgid "Open search" -msgstr "Åben søgning" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:65 +msgid "Expected finish" +msgstr "Forventet afsluttet" -msgid "Note! Hearing deadline approaching." -msgstr "Note! Hørings tidsfristen nærmer sig." +#: 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:114 +msgid "Meeting has been cancelled" +msgstr "" +#: 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:117 +msgid "Meeting has already been held" +msgstr "Mødet er afholdt" + +#: 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:122 themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:45 +msgid "Registration deadline passed" +msgstr "Deadline for tilmelding er overskredet" + +#: 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/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" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig:46 +msgid "Add hearing ticket" +msgstr "Tilføj høringssvar" + +#: themes/custom/hoeringsportal/templates/field/field--field-media-document.html.twig:42 +msgid "Materials" +msgstr "Materialer" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:47;86 +msgid "Location" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:48;93 +msgid "Date" +msgstr "Dato" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:49;98 +msgid "Time" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:50;103 +msgid "Spots" +msgstr "Pladser" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:51;112 +msgid "Registration" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:75 +msgid "Current occurrence" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:77 +msgid "First upcoming" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:125 +msgid "No available spots left" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:128 +msgid "Sign up" +msgstr "Tilmeld dig her" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:129 themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:50 +msgid "Opens in a new tab" +msgstr "Åbner i en ny fane" + +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:131 +msgid "Deadline:" +msgstr "" + +#: themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig:44;51 +msgid "Last date for signup" +msgstr "Tilmeldingsfrist" + +#: themes/custom/hoeringsportal/templates/field/field--paragraph--field-external-link--projekt-billede-galleri.html.twig:51 msgid "Open project gallery" -msgstr "Åbn projekt galleri" +msgstr "Åbn projektgalleri" -msgid "Finished" -msgstr "Slut" +#: themes/custom/hoeringsportal/templates/form/form--search-block-form.html.twig:23 +msgid "Open search" +msgstr "Åben søgning" -msgid "Hearing" -msgstr "Høring" +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:13 +msgid "Account activities" +msgstr "" -msgid "Hearing reply for" -msgstr "Høringssvar for" +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:23 +msgid "Validate account" +msgstr "" + +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:25 +msgid "Show profile" +msgstr "" + +#: themes/custom/hoeringsportal/templates/layout/html.html.twig:41 +msgid "Skip to main content" +msgstr "" + +#: themes/custom/hoeringsportal/templates/layout/page--search.html.twig:52 +msgid "Search" +msgstr "" -msgid "Hearing reply by @name" -msgstr "Høringssvar fra @name" +#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:16 +msgid "Primary tabs" +msgstr "" -msgid "Answer #@number by @name" -msgstr "Bidrag #@number af @name" +#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:21 +msgid "Secondary tabs" +msgstr "" -msgid "Create hearing reply" -msgstr "Skriv høringssvar" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:37;38;43 +msgid "Previous" +msgstr "" -msgid "Note! This hearing has not started yet" -msgstr "Note! Denne høring er ikke startet endnu." +#: 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 "Project start" -msgstr "Initiativ start" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:49;50;55 +msgid "Next" +msgstr "" -msgid "Project end" -msgstr "Initiativ slut" +#: 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 "" -msgid "Project finish" -msgstr "Initiativ afslutning" +#: themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig:54;58 +msgid "Show on map" +msgstr "" -msgid "Download ticket as pdf" -msgstr "Download høringssvar som pdf" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:14 +msgid "Pagination" +msgstr "" -msgid "Meeting" -msgstr "Møde" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:18 +msgid "Go to previous page" +msgstr "" -msgid "Debate" -msgstr "Debat" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:19 +msgid "Previous page" +msgstr "" -msgid "Expected end date" -msgstr "Forventet slutdato" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:20 +msgid "‹‹" +msgstr "" -msgid "" -"This question is for testing whether or not you are a human visitor " -"and to prevent automated spam submissions." +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:31 +msgid "Go to next page" msgstr "" -"Please type the text you see in the captcha image to prove you are " -"human" -msgid "Name" -msgstr "Navn" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:32 +msgid "Next page" +msgstr "" -msgid "Email address" -msgstr "E-mailadresse" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:33 +msgid "››" +msgstr "" -msgid "Confirm email address" -msgstr "Bekræft e-mailadresse" +#: themes/custom/hoeringsportal/templates/views/views-view--all-citizen-proposals.html.twig:55 +msgid "The proposal list is empty" +msgstr "" -msgid "Address" -msgstr "Adresse" +#: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:55 +msgid "The hearing list is empty" +msgstr "" -msgid "My address is secret" -msgstr "Min adresse er hemmelig" +#: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:57 +msgid "Show all hearings" +msgstr "" -msgid "I represent" -msgstr "Jeg udtaler mig som" +#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:55 +msgid "The meeting list is empty" +msgstr "" -msgid "Organization" -msgstr "Organisation" +#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:57 +msgid "Show all meetings" +msgstr "" -msgid "Subject" -msgstr "Emne" +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:45 +msgid "Search and results will show up here" +msgstr "" -msgid "Message" -msgstr "Besked" +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:53 +msgid "Search for %search_terms returned no results" +msgstr "" -msgid "Select a file" -msgstr "Vælg en fil" +#: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:54 +msgid "Try with less words or to phrase it differently" +msgstr "" -msgid "I have red the terms and give my consent" -msgstr "Jeg har læst betingelserne og giver mit samtykke" From 56c1b216971796e05444673450f1452e67953f79 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 11:30:27 +0100 Subject: [PATCH 02/14] Added config translation module --- Taskfile.yml | 35 +++++++++++++++++++++++++++++++++-- composer.json | 1 + 2 files changed, 34 insertions(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 23f5aea41..a4a84729c 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -14,10 +14,41 @@ vars: PRETIX_ORGANIZER: '{{.TASK_PRETIX_ORGANIZER | default "dpl-cms"}}' CUSTOM_MODULES: - sh: ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml' + # Run `ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this list + - aarhus_hero + + - 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 CUSTOM_THEMES: - sh: ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml' + # Run `ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this [] + - hoeringsportal + - hoeringsportal_admin + + # During testing and development, you can override CUSTOM_MODULES and CUSTOM_THEMES to not process all modules and themes, e.g. + # + # CUSTOM_MODULES: + # - hoeringsportal_citizen_proposal + # + # CUSTOM_THEMES: [] tasks: default: diff --git a/composer.json b/composer.json index 6fcdb23a2..8bd8663e6 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": "^1.0", "drupal/core": "^10.0", "drupal/core-composer-scaffold": "^10.0", "drupal/core-project-message": "^10.0", From a5fbebb0088af179dc9dc60905b05af727f07173 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 15:15:29 +0100 Subject: [PATCH 03/14] config_translation_po --- config/sync/core.extension.yml | 2 ++ 1 file changed, 2 insertions(+) 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 From ac163ac697d786c7317395a52a492ab4bc7d389a Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 16:28:45 +0100 Subject: [PATCH 04/14] Added Config Translation PO --- Taskfile.yml | 15 + composer.json | 11 +- translations/config-translations.da.po | 9008 ++++++++++++++++++++++++ 3 files changed, 9032 insertions(+), 2 deletions(-) create mode 100644 translations/config-translations.da.po diff --git a/Taskfile.yml b/Taskfile.yml index a4a84729c..d4a8853fb 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -346,6 +346,21 @@ tasks: - task drush -- --yes pm:uninstall potx silent: true + config-translations:export: + cmds: + - task drush -- config_translation_po:export da > translations/config-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/config-translations.da.po' + silent: true + + config-translations:import: + cmds: + # Note: We use an empty type to import as not-customized. + - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po + 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? diff --git a/composer.json b/composer.json index 8bd8663e6..ab093c18f 100755 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "drupal/color_field": "^3.0", "drupal/config_ignore": "^3.2", "drupal/config_import_locale": "^2.0", - "drupal/config_translation_po": "^1.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", @@ -104,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", @@ -190,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/translations/config-translations.da.po b/translations/config-translations.da.po new file mode 100644 index 000000000..949d2d8cb --- /dev/null +++ b/translations/config-translations.da.po @@ -0,0 +1,9008 @@ +# da translation of Deltag Aarhus – Aarhus kommune +# +msgid "" +msgstr "" +"Project-Id-Version: PROJECT VERSION\n" +"POT-Creation-Date: 2025-03-27 16:25+0100\n" +"PO-Revision-Date: 2025-03-27 16:25+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" + +msgctxt "advancedqueue.advancedqueue_queue.default:label" +msgid "Default" +msgstr "Default" + +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" +msgid "Citizen proposal archiving" +msgstr "Citizen proposal archiving" + +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_deskpro:label" +msgid "Deskpro" +msgstr "Deskpro" + +msgctxt "block.block.aarhushero:settings:label" +msgid "Aarhus hero" +msgstr "Aarhus hero" + +msgctxt "block.block.breadcrumbs:settings:label" +msgid "Breadcrumbs" +msgstr "Breadcrumbs" + +msgctxt "block.block.claro_breadcrumbs:settings:label" +msgid "Breadcrumbs" +msgstr "Breadcrumbs" + +msgctxt "block.block.claro_content:settings:label" +msgid "Main page content" +msgstr "Main page content" + +msgctxt "block.block.claro_local_actions:settings:label" +msgid "Primary admin actions" +msgstr "Primary admin actions" + +msgctxt "block.block.claro_messages:settings:label" +msgid "Status messages" +msgstr "Status messages" + +msgctxt "block.block.claro_page_title:settings:label" +msgid "Page title" +msgstr "Page title" + +msgctxt "block.block.claro_primary_local_tasks:settings:label" +msgid "Primary tabs" +msgstr "Primary tabs" + +msgctxt "block.block.claro_secondary_local_tasks:settings:label" +msgid "Secondary tabs" +msgstr "Secondary tabs" + +msgctxt "block.block.hoeringsportal_branding:settings:label" +msgid "Aarhus kommune" +msgstr "Aarhus kommune" + +msgctxt "block.block.hoeringsportal_messages:settings:label" +msgid "Status messages" +msgstr "Status messages" + +msgctxt "block.block.itkadminlinks:settings:label" +msgid "ITK Admin links" +msgstr "ITK Admin links" + +msgctxt "block.block.mainpagecontent:settings:label" +msgid "Main page content" +msgstr "Main page content" + +msgctxt "block.block.messages:settings:label" +msgid "Status messages" +msgstr "Status messages" + +msgctxt "block.block.pagetitle:settings:label" +msgid "Page title" +msgstr "Page title" + +msgctxt "block.block.primaernavigation:settings:label" +msgid "Primær navigation" +msgstr "Primær navigation" + +msgctxt "block.block.primaryadminactions:settings:label" +msgid "Primary admin actions" +msgstr "Primary admin actions" + +msgctxt "block.block.sekundaernavigation:settings:label" +msgid "Sekundær navigation" +msgstr "Sekundær navigation" + +msgctxt "block.block.sidefod:settings:label" +msgid "Sidefod" +msgstr "Sidefod" + +msgctxt "block.block.stark_admin:settings:label" +msgid "Administration" +msgstr "Administration" + +msgctxt "block.block.stark_branding:settings:label" +msgid "Site branding" +msgstr "Site branding" + +msgctxt "block.block.stark_local_actions:settings:label" +msgid "Primære adminsitratorhandlinger" +msgstr "Primære adminsitratorhandlinger" + +msgctxt "block.block.stark_local_tasks:settings:label" +msgid "Faner" +msgstr "Faner" + +msgctxt "block.block.stark_login:settings:label" +msgid "User login" +msgstr "User login" + +msgctxt "block.block.stark_messages:settings:label" +msgid "Statusmeddelelser" +msgstr "Statusmeddelelser" + +msgctxt "block.block.stark_page_title:settings:label" +msgid "Sidetitel" +msgstr "Sidetitel" + +msgctxt "block.block.stark_tools:settings:label" +msgid "Værktøjer" +msgstr "Værktøjer" + +msgctxt "block.block.tabs:settings:label" +msgid "Primary tabs" +msgstr "Primary tabs" + +msgctxt "block.block.tabs_2:settings:label" +msgid "Secondary tabs" +msgstr "Secondary tabs" + +msgctxt "block_content.type.aside_contact_info:label" +msgid "Aside contact info" +msgstr "Aside contact info" + +msgctxt "block_content.type.aside_contact_info:description" +msgid "Used to show contact info on a page" +msgstr "Used to show contact info on a page" + +msgctxt "block_content.type.aside_link_box:label" +msgid "Aside link box" +msgstr "Aside link box" + +msgctxt "block_content.type.aside_link_box:description" +msgid "Used to create a link box in the right column." +msgstr "Used to create a link box in the right column." + +msgctxt "captcha.captcha_point.contact_message_feedback_form:label" +msgid "contact_message_feedback_form" +msgstr "contact_message_feedback_form" + +msgctxt "captcha.captcha_point.contact_message_personal_form:label" +msgid "contact_message_personal_form" +msgstr "contact_message_personal_form" + +msgctxt "captcha.captcha_point.hearing_add_form:label" +msgid "hearing_add_form" +msgstr "hearing_add_form" + +msgctxt "captcha.captcha_point.node_hearing_form:label" +msgid "node_hearing_form" +msgstr "node_hearing_form" + +msgctxt "captcha.captcha_point.node_landing_page_form:label" +msgid "node_landing_page_form" +msgstr "node_landing_page_form" + +msgctxt "captcha.captcha_point.node_project_form:label" +msgid "node_project_form" +msgstr "node_project_form" + +msgctxt "captcha.captcha_point.node_static_page_form:label" +msgid "node_static_page_form" +msgstr "node_static_page_form" + +msgctxt "captcha.captcha_point.user_login_form:label" +msgid "user_login_form" +msgstr "user_login_form" + +msgctxt "captcha.captcha_point.user_pass:label" +msgid "user_pass" +msgstr "user_pass" + +msgctxt "captcha.captcha_point.user_register_form:label" +msgid "user_register_form" +msgstr "user_register_form" + +msgctxt "captcha.settings:description" +msgid "" +"Please type the text you see in the captcha image to prove you are " +"human" +msgstr "" +"Please type the text you see in the captcha image to prove you are " +"human" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:label" +msgid "Promoted to front page" +msgstr "Promoted to front page" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:on_label" +msgid "On" +msgstr "On" + +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:off_label" +msgid "Off" +msgstr "Off" + +msgctxt "core.base_field_override.node.citizen_proposal.status:label" +msgid "Published" +msgstr "Published" + +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:on_label" +msgid "On" +msgstr "On" + +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:off_label" +msgid "Off" +msgstr "Off" + +msgctxt "core.base_field_override.node.hearing.promote:label" +msgid "Forfremmet til forside" +msgstr "Forfremmet til forside" + +msgctxt "core.base_field_override.node.hearing.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "core.base_field_override.node.hearing.promote:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "core.base_field_override.node.landing_page.promote:label" +msgid "Forfremmet til forside" +msgstr "Forfremmet til forside" + +msgctxt "core.base_field_override.node.landing_page.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "core.base_field_override.node.landing_page.promote:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "core.base_field_override.node.project.promote:label" +msgid "Forfremmet til forside" +msgstr "Forfremmet til forside" + +msgctxt "core.base_field_override.node.project.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "core.base_field_override.node.project.promote:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "core.base_field_override.node.static_page.promote:label" +msgid "Forfremmet til forside" +msgstr "Forfremmet til forside" + +msgctxt "core.base_field_override.node.static_page.promote:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "core.base_field_override.node.static_page.promote:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "core.date_format.fallback:label" +msgid "Reservedatoformat" +msgstr "Reservedatoformat" + +msgctxt "core.date_format.hoeringsportal_date:label" +msgid "Høringsportalen – dato" +msgstr "Høringsportalen – dato" + +msgctxt "core.date_format.hoeringsportal_date:pattern" +msgid "d/m/Y" +msgstr "d/m/Y" + +msgctxt "core.date_format.hoeringsportal_datetime:label" +msgid "Høringsportalen – dato og tid" +msgstr "Høringsportalen – dato og tid" + +msgctxt "core.date_format.hoeringsportal_datetime:pattern" +msgid "d/m/Y H:i" +msgstr "d/m/Y H:i" + +msgctxt "core.date_format.hoeringsportal_date_long:label" +msgid "Høringsportalen – dato (lang)" +msgstr "Høringsportalen – dato (lang)" + +msgctxt "core.date_format.hoeringsportal_date_long:pattern" +msgid "l \\d. j. F Y" +msgstr "l \\d. j. F Y" + +msgctxt "core.date_format.hoeringsportal_time:label" +msgid "Høringsportalen – tid" +msgstr "Høringsportalen – tid" + +msgctxt "core.date_format.hoeringsportal_time:pattern" +msgid "H:i" +msgstr "H:i" + +msgctxt "core.date_format.html_date:label" +msgid "HTML Date" +msgstr "HTML Date" + +msgctxt "core.date_format.html_datetime:label" +msgid "HTML Datetime" +msgstr "HTML Datetime" + +msgctxt "core.date_format.html_month:label" +msgid "HTML Month" +msgstr "HTML Month" + +msgctxt "core.date_format.html_time:label" +msgid "HTML Time" +msgstr "HTML Time" + +msgctxt "core.date_format.html_week:label" +msgid "HTML Week" +msgstr "HTML Week" + +msgctxt "core.date_format.html_year:label" +msgid "HTML Year" +msgstr "HTML Year" + +msgctxt "core.date_format.html_yearless_date:label" +msgid "HTML Yearless date" +msgstr "HTML Yearless date" + +msgctxt "core.date_format.long:label" +msgid "Standard lang dato" +msgstr "Standard lang dato" + +msgctxt "core.date_format.long:pattern" +msgid "l, j. F Y - H:i" +msgstr "l, j. F Y - H:i" + +msgctxt "core.date_format.medium:label" +msgid "Standard mellem dato" +msgstr "Standard mellem dato" + +msgctxt "core.date_format.medium:pattern" +msgid "D, d/m/Y - H:i" +msgstr "D, d/m/Y - H:i" + +msgctxt "core.date_format.short:label" +msgid "Standard kort dato" +msgstr "Standard kort dato" + +msgctxt "core.date_format.short:pattern" +msgid "d/m/Y - H:i" +msgstr "d/m/Y - H:i" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +msgctxt "core.entity_form_display.node.citizen_proposal.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" +msgstr "GetOrganized" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" +msgstr "Informationer" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "Systemindstillinger" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_deskpro:label" +msgid "Deskpro" +msgstr "Deskpro" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_edoc:label" +msgid "eDoc" +msgstr "eDoc" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" +msgstr "Kontakt" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_more_info:label" +msgid "Vil du vide mere?" +msgstr "Vil du vide mere?" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" +msgstr "GetOrganized" + +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_hearing_ticket_system:label" +msgid "Høringssvarsystem" +msgstr "Høringssvarsystem" + +msgctxt "core.entity_form_display.node.hearing.default:content:field_hearing_ticket_add:settings:placeholder_title" +msgid " " +msgstr " " + +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title" +msgid "sektion" +msgstr "sektion" + +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title_plural" +msgid "sektioner" +msgstr "sektioner" + +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "Systemindstillinger" + +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_timeline:label" +msgid "Tidslinje" +msgstr "Tidslinje" + +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title" +msgid "Paragraph" +msgstr "Paragraph" + +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title_plural" +msgid "Paragraphs" +msgstr "Paragraphs" + +msgctxt "core.entity_form_display.node.project_main_page.default:third_party_settings:field_group:group_project_area:label" +msgid "Project area" +msgstr "Project area" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" +msgstr "Paragraph" + +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" +msgstr "Paragraphs" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" +msgstr "Paragraph" + +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" +msgstr "Paragraphs" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" +msgstr "Informationer" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "Systemindstillinger" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" +msgstr "Kontakt" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "Tilmelding" + +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_cancellation:label" +msgid "Cancellation" +msgstr "Cancellation" + +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title" +msgid "Paragraph" +msgstr "Paragraph" + +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title_plural" +msgid "Paragraphs" +msgstr "Paragraphs" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_sidebar:label" +msgid "Sidebar" +msgstr "Sidebar" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" +msgstr "Systemindstillinger" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:format_settings:label" +msgid "Systemindstillinger" +msgstr "Systemindstillinger" + +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_teaser_display:label" +msgid "Teaser visning" +msgstr "Teaser visning" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title" +msgid "Paragraph" +msgstr "Paragraph" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title_plural" +msgid "Paragraphs" +msgstr "Paragraphs" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette" +msgid "1" +msgstr "1" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:palette" +msgid "[\"#008486\",\"#333333\", \"#B2DADA\"]" +msgstr "[\"#008486\",\"#333333\", \"#B2DADA\"]" + +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette_only" +msgid "1" +msgstr "1" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +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 "" +"Content limited to @limit characters, remaining: " +"@remaining" + +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette" +msgid "1" +msgstr "1" + +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 "[\"#008486\",\"#673ab7\",\"#3661d8\",\"#2b3ba2\",\"#B2DADA\",\"#008850\",\"#ffe13d\",\"#d32f2f\",\"#333333\"]" + +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette_only" +msgid "1" +msgstr "1" + +msgctxt "core.entity_form_mode.media.image:label" +msgid "Image" +msgstr "Image" + +msgctxt "core.entity_form_mode.user.register:label" +msgid "Opret konto" +msgstr "Opret konto" + +msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "Tilmelding" + +msgctxt "core.entity_view_display.node.public_meeting.search_result:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" +msgstr "Tilmelding" + +msgctxt "core.entity_view_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:format" +msgid "hex" +msgstr "hex" + +msgctxt "core.entity_view_mode.block.token:label" +msgid "Token" +msgstr "Token" + +msgctxt "core.entity_view_mode.block_content.full:label" +msgid "Fuld" +msgstr "Fuld" + +msgctxt "core.entity_view_mode.entity_subqueue.token:label" +msgid "Token" +msgstr "Token" + +msgctxt "core.entity_view_mode.file.token:label" +msgid "Token" +msgstr "Token" + +msgctxt "core.entity_view_mode.media.content_display:label" +msgid "Content display" +msgstr "Content display" + +msgctxt "core.entity_view_mode.media.full:label" +msgid "Full content" +msgstr "Full content" + +msgctxt "core.entity_view_mode.media.material_display:label" +msgid "Material display" +msgstr "Material display" + +msgctxt "core.entity_view_mode.media.node_form_display:label" +msgid "Node form display" +msgstr "Node form display" + +msgctxt "core.entity_view_mode.media.project_gallery_display:label" +msgid "Project gallery display" +msgstr "Project gallery display" + +msgctxt "core.entity_view_mode.media.teaser_display:label" +msgid "Teaser display" +msgstr "Teaser display" + +msgctxt "core.entity_view_mode.node.citizen_proposal_add:label" +msgid "Citizen proposal add" +msgstr "Citizen proposal add" + +msgctxt "core.entity_view_mode.node.citizen_proposal_approval:label" +msgid "Citizen proposal approval" +msgstr "Citizen proposal approval" + +msgctxt "core.entity_view_mode.node.full:label" +msgid "Fuldt indhold" +msgstr "Fuldt indhold" + +msgctxt "core.entity_view_mode.node.hearing_ticket_add:label" +msgid "Hearing ticket add" +msgstr "Hearing ticket add" + +msgctxt "core.entity_view_mode.node.hearing_ticket_view:label" +msgid "Hearing ticket view" +msgstr "Hearing ticket view" + +msgctxt "core.entity_view_mode.node.list_display:label" +msgid "List display" +msgstr "List display" + +msgctxt "core.entity_view_mode.node.revision:label" +msgid "Version" +msgstr "Version" + +msgctxt "core.entity_view_mode.node.search_result:label" +msgid "Search result" +msgstr "Search result" + +msgctxt "core.entity_view_mode.node.teaser:label" +msgid "Smagsprøve" +msgstr "Smagsprøve" + +msgctxt "core.entity_view_mode.paragraph.preview:label" +msgid "Gennemse" +msgstr "Gennemse" + +msgctxt "core.entity_view_mode.taxonomy_term.full:label" +msgid "Termside" +msgstr "Termside" + +msgctxt "core.entity_view_mode.user.compact:label" +msgid "Kompakt" +msgstr "Kompakt" + +msgctxt "core.entity_view_mode.user.full:label" +msgid "Brugerkonto" +msgstr "Brugerkonto" + +msgctxt "core.entity_view_mode.user.token:label" +msgid "Token" +msgstr "Token" + +msgctxt "crop.type.content_display:label" +msgid "Indholdsvisning" +msgstr "Indholdsvisning" + +msgctxt "crop.type.content_display:description" +msgid "" +"Visningen der anvendes når billedet vises på det fulde " +"indholdselement" +msgstr "" +"Visningen der anvendes når billedet vises på det fulde " +"indholdselement" + +msgctxt "crop.type.medium_squared:label" +msgid "Medium kvadratisk" +msgstr "Medium kvadratisk" + +msgctxt "crop.type.medium_squared:description" +msgid "Anvendt til visning af materialer" +msgstr "Anvendt til visning af materialer" + +msgctxt "crop.type.teaser_display:label" +msgid "Teaser display" +msgstr "Teaser display" + +msgctxt "crop.type.teaser_display:description" +msgid "Visningen der anvendes når billedet vises som del af en teaser" +msgstr "Visningen der anvendes når billedet vises som del af en teaser" + +msgctxt "entity_browser.browser.itk_document_browser:label" +msgid "ITK document browser" +msgstr "ITK document browser" + +msgctxt "entity_browser.browser.itk_document_browser:display_configuration:link_text" +msgid "Vælg fil" +msgstr "Vælg fil" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:label" +msgid "Overblik" +msgstr "Overblik" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:settings:submit_text" +msgid "Vælg fil" +msgstr "Vælg fil" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:label" +msgid "Upload new document" +msgstr "Upload new document" + +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:settings:submit_text" +msgid "Upload document to media library" +msgstr "Upload document to media library" + +msgctxt "entity_browser.browser.itk_image_browser:label" +msgid "ITK image browser" +msgstr "ITK image browser" + +msgctxt "entity_browser.browser.itk_image_browser:display_configuration:link_text" +msgid "Vælg fil" +msgstr "Vælg fil" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:label" +msgid "Overblik" +msgstr "Overblik" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:settings:submit_text" +msgid "Vælg fil" +msgstr "Vælg fil" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:label" +msgid "Upload new image" +msgstr "Upload new image" + +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:settings:submit_text" +msgid "Upload image to media library" +msgstr "Upload image to media library" + +msgctxt "field.field.block_content.aside_contact_info.field_address:label" +msgid "Address" +msgstr "Address" + +msgctxt "field.field.block_content.aside_contact_info.field_address:description" +msgid "Used to add address" +msgstr "Used to add address" + +msgctxt "field.field.block_content.aside_contact_info.field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "field.field.block_content.aside_contact_info.field_department:description" +msgid "Used as the name of the department" +msgstr "Used as the name of the department" + +msgctxt "field.field.block_content.aside_contact_info.field_email:label" +msgid "Email" +msgstr "Email" + +msgctxt "field.field.block_content.aside_contact_info.field_email:description" +msgid "Used to show the email address" +msgstr "Used to show the email address" + +msgctxt "field.field.block_content.aside_contact_info.field_image:label" +msgid "Image" +msgstr "Image" + +msgctxt "field.field.block_content.aside_contact_info.field_image:description" +msgid "Used to add image to the top of the box" +msgstr "Used to add image to the top of the box" + +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:label" +msgid "Phone number" +msgstr "Phone number" + +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:description" +msgid "Used to show the phone number" +msgstr "Used to show the phone number" + +msgctxt "field.field.block_content.aside_contact_info.field_title:label" +msgid "Title" +msgstr "Title" + +msgctxt "field.field.block_content.aside_contact_info.field_title:description" +msgid "Used to show the title" +msgstr "Used to show the title" + +msgctxt "field.field.block_content.aside_link_box.field_color:label" +msgid "Color" +msgstr "Color" + +msgctxt "field.field.block_content.aside_link_box.field_color:description" +msgid "Used to set the color of the box" +msgstr "Used to set the color of the box" + +msgctxt "field.field.block_content.aside_link_box.field_link:label" +msgid "Link" +msgstr "Link" + +msgctxt "field.field.block_content.aside_link_box.field_link:description" +msgid "Used to point to a target for the link box" +msgstr "Used to point to a target for the link box" + +msgctxt "field.field.block_content.aside_link_box.field_title:label" +msgid "Title" +msgstr "Title" + +msgctxt "field.field.block_content.aside_link_box.field_title:description" +msgid "Used to show the title" +msgstr "Used to show the title" + +msgctxt "field.field.media.document.field_itk_media_file_upload:label" +msgid "File upload" +msgstr "File upload" + +msgctxt "field.field.media.document.field_itk_media_mime_type:label" +msgid "Mime type" +msgstr "Mime type" + +msgctxt "field.field.media.document.field_itk_media_size:label" +msgid "Size" +msgstr "Size" + +msgctxt "field.field.media.document.field_itk_media_tag:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "field.field.media.document.field_itk_media_tag:description" +msgid "The tag will help you navigate in your media library" +msgstr "The tag will help you navigate in your media library" + +msgctxt "field.field.media.image.field_itk_media_height:label" +msgid "Højde" +msgstr "Højde" + +msgctxt "field.field.media.image.field_itk_media_image_upload:label" +msgid "Image upload" +msgstr "Image upload" + +msgctxt "field.field.media.image.field_itk_media_mime_type:label" +msgid "Mime type" +msgstr "Mime type" + +msgctxt "field.field.media.image.field_itk_media_tag:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "field.field.media.image.field_itk_media_width:label" +msgid "Bredde" +msgstr "Bredde" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:label" +msgid "Allow email" +msgstr "Allow email" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:description" +msgid "Author accepts receiving emails." +msgstr "Author accepts receiving emails." + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:on_label" +msgid "On" +msgstr "On" + +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:off_label" +msgid "Off" +msgstr "Off" + +msgctxt "field.field.node.citizen_proposal.field_author_email:label" +msgid "Email" +msgstr "Email" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:label" +msgid "Author email display" +msgstr "Author email display" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:on_label" +msgid "On" +msgstr "On" + +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:off_label" +msgid "Off" +msgstr "Off" + +msgctxt "field.field.node.citizen_proposal.field_author_name:label" +msgid "Navn" +msgstr "Navn" + +msgctxt "field.field.node.citizen_proposal.field_author_phone:label" +msgid "Phone" +msgstr "Phone" + +msgctxt "field.field.node.citizen_proposal.field_author_uuid:label" +msgid "Author UUID" +msgstr "Author UUID" + +msgctxt "field.field.node.citizen_proposal.field_content_state:label" +msgid "Content state" +msgstr "Content state" + +msgctxt "field.field.node.citizen_proposal.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" +msgstr "GetOrganized-sags-ID" + +msgctxt "field.field.node.citizen_proposal.field_more_info:label" +msgid "Vil du vide mere?" +msgstr "Vil du vide mere?" + +msgctxt "field.field.node.citizen_proposal.field_proposal:label" +msgid "Forslaget" +msgstr "Forslaget" + +msgctxt "field.field.node.citizen_proposal.field_remarks:label" +msgid "Bemærkninger" +msgstr "Bemærkninger" + +msgctxt "field.field.node.citizen_proposal.field_vote_end:label" +msgid "Afstemning afslutningsdato" +msgstr "Afstemning afslutningsdato" + +msgctxt "field.field.node.citizen_proposal.field_vote_start:label" +msgid "Afstemning start" +msgstr "Afstemning start" + +msgctxt "field.field.node.hearing.field_area:label" +msgid "Område" +msgstr "Område" + +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 "" +"Vælg områder som høringen dækker. Markér alle hvis høringen " +"dækker hele kommunen." + +msgctxt "field.field.node.hearing.field_contact:label" +msgid "Kontakt" +msgstr "Kontakt" + +msgctxt "field.field.node.hearing.field_content_state:label" +msgid "Content state" +msgstr "Content state" + +msgctxt "field.field.node.hearing.field_content_state:description" +msgid "Høringens status." +msgstr "Høringens status." + +msgctxt "field.field.node.hearing.field_delete_date:label" +msgid "Dato for sletning af høringssvar" +msgstr "Dato for sletning af høringssvar" + +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 "" +"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" + +msgctxt "field.field.node.hearing.field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "field.field.node.hearing.field_description:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "field.field.node.hearing.field_description:description" +msgid "Beskrivelse af høringen." +msgstr "Beskrivelse af høringen." + +msgctxt "field.field.node.hearing.field_deskpro_agent_email:label" +msgid "Sagsbehandler" +msgstr "Sagsbehandler" + +msgctxt "field.field.node.hearing.field_deskpro_agent_email:description" +msgid "Vælg sagsbehandler for høringen." +msgstr "Vælg sagsbehandler for høringen." + +msgctxt "field.field.node.hearing.field_deskpro_department_id:label" +msgid "Afdeling" +msgstr "Afdeling" + +msgctxt "field.field.node.hearing.field_deskpro_department_id:description" +msgid "Vælg afdeling for høringen." +msgstr "Vælg afdeling for høringen." + +msgctxt "field.field.node.hearing.field_edoc_casefile_id:label" +msgid "eDoc-sagsnr." +msgstr "eDoc-sagsnr." + +msgctxt "field.field.node.hearing.field_edoc_casefile_id:description" +msgid "Indtast eDoc-sagsnr. for høringen." +msgstr "Indtast eDoc-sagsnr. for høringen." + +msgctxt "field.field.node.hearing.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" +msgstr "GetOrganized-sags-ID" + +msgctxt "field.field.node.hearing.field_getorganized_case_id:description" +msgid "Indtast GetOrganized-sags-ID for høringen." +msgstr "Indtast GetOrganized-sags-ID for høringen." + +msgctxt "field.field.node.hearing.field_hearing_ticket_add:label" +msgid "Tilføj høringssvar" +msgstr "Tilføj høringssvar" + +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 "" +"Her kan du linke til tilføjelse af høringssvar i et eksternt " +"høringssvarsystem" + +msgctxt "field.field.node.hearing.field_hearing_ticket_list:label" +msgid "Vis høringssvar" +msgstr "Vis høringssvar" + +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 "" +"Her kan du linke til visning af høringssvar i et eksternt " +"høringssvarsystem" + +msgctxt "field.field.node.hearing.field_lokalplaner:label" +msgid "Lokalplaner" +msgstr "Lokalplaner" + +msgctxt "field.field.node.hearing.field_lokalplaner:description" +msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgstr "https://visplaner.plandata.dk/visplaner/lokalplaner.html" + +msgctxt "field.field.node.hearing.field_map:label" +msgid "Kortvisning" +msgstr "Kortvisning" + +msgctxt "field.field.node.hearing.field_map:description" +msgid "Vælg kortvisning for høringen." +msgstr "Vælg kortvisning for høringen." + +msgctxt "field.field.node.hearing.field_map_display:label" +msgid "Kortvisning" +msgstr "Kortvisning" + +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 "" +"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." + +msgctxt "field.field.node.hearing.field_media_document:label" +msgid "Dokumenter" +msgstr "Dokumenter" + +msgctxt "field.field.node.hearing.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." +msgstr "Vælg dokumenter der beskriver høringen." + +msgctxt "field.field.node.hearing.field_media_image:label" +msgid "Billeder" +msgstr "Billeder" + +msgctxt "field.field.node.hearing.field_media_image:description" +msgid "Vælg billeder der skal vises på høringssiden." +msgstr "Vælg billeder der skal vises på høringssiden." + +msgctxt "field.field.node.hearing.field_more_info:label" +msgid "Vil du vide mere?" +msgstr "Vil du vide mere?" + +msgctxt "field.field.node.hearing.field_project_reference:label" +msgid "Projekttidslinje" +msgstr "Projekttidslinje" + +msgctxt "field.field.node.hearing.field_project_reference:description" +msgid "Vælg den projekttidslinje som høringen er tilknyttet." +msgstr "Vælg den projekttidslinje som høringen er tilknyttet." + +msgctxt "field.field.node.hearing.field_reply_deadline:label" +msgid "Svarfrist" +msgstr "Svarfrist" + +msgctxt "field.field.node.hearing.field_reply_deadline:description" +msgid "Vælg hvornår der er svarfrist for høringen." +msgstr "Vælg hvornår der er svarfrist for høringen." + +msgctxt "field.field.node.hearing.field_start_date:label" +msgid "Startdato" +msgstr "Startdato" + +msgctxt "field.field.node.hearing.field_start_date:description" +msgid "Vælg startdato for høringen." +msgstr "Vælg startdato for høringen." + +msgctxt "field.field.node.hearing.field_tags:label" +msgid "Emneord" +msgstr "Emneord" + +msgctxt "field.field.node.hearing.field_tags:description" +msgid "Vælg emneord for høringen." +msgstr "Vælg emneord for høringen." + +msgctxt "field.field.node.hearing.field_teaser:label" +msgid "Teaser/indledning" +msgstr "Teaser/indledning" + +msgctxt "field.field.node.hearing.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" +msgstr "Kort tekst der vises i teasers og i toppen af indholdsviningen" + +msgctxt "field.field.node.hearing.field_type:label" +msgid "Type" +msgstr "Type" + +msgctxt "field.field.node.hearing.field_video_embed:label" +msgid "Video embed" +msgstr "Video embed" + +msgctxt "field.field.node.hearing.field_video_embed:description" +msgid "" +"Tilføj video embed code.\r\n" +"Det er redaktørens ansvar at videoen " +"overholder kommunens GDPR retningslinjer. \r\n" +"Hvis du er i tvivl kan " +"du spørge den GDPR ansvarlige i din afdeling." +msgstr "" +"Tilføj video embed code.\r\n" +"Det er redaktørens ansvar at videoen " +"overholder kommunens GDPR retningslinjer. \r\n" +"Hvis du er i tvivl kan " +"du spørge den GDPR ansvarlige i din afdeling." + +msgctxt "field.field.node.landing_page.field_media_image_single:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "field.field.node.landing_page.field_section:label" +msgid "Indholds region" +msgstr "Indholds region" + +msgctxt "field.field.node.landing_page.field_section:description" +msgid "Vælg den type indhold du ønsker at indsætte" +msgstr "Vælg den type indhold du ønsker at indsætte" + +msgctxt "field.field.node.landing_page.field_teaser:label" +msgid "Teaser/indledning" +msgstr "Teaser/indledning" + +msgctxt "field.field.node.landing_page.field_teaser:description" +msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "Kort tekst der vises i teasers og ved siden af billede på indhold." + +msgctxt "field.field.node.page_map.field_map_configuration:label" +msgid "Map configuration" +msgstr "Map configuration" + +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.\r\n" +"The " +"value can also be a URL pointing to a JSON map configuration." +msgstr "" +"Map configuration as JSON or YAML or a path (relative to the site's " +"files folder) of a file containing JSON or YAML.\r\n" +"The " +"value can also be a URL pointing to a JSON map configuration." + +msgctxt "field.field.node.page_map.field_map_type:label" +msgid "Map type" +msgstr "Map type" + +msgctxt "field.field.node.project.field_description:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +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 "" +"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun i " +"backend som eventuel hjælp til redaktørerne." + +msgctxt "field.field.node.project.field_project_finish:label" +msgid "Projektafslutning" +msgstr "Projektafslutning" + +msgctxt "field.field.node.project.field_project_finish:description" +msgid "Vælg afslutningsdato for projektet." +msgstr "Vælg afslutningsdato for projektet." + +msgctxt "field.field.node.project.field_project_start:label" +msgid "Projekt start" +msgstr "Projekt start" + +msgctxt "field.field.node.project.field_project_start:description" +msgid "Vælg startdato for projektet." +msgstr "Vælg startdato for projektet." + +msgctxt "field.field.node.project.field_timeline_items:label" +msgid "Tidslinjepunkter" +msgstr "Tidslinjepunkter" + +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.\r\n" +"Du kan bruge dette felt til " +"at plotte flere relevante punkter ind." +msgstr "" +"Start og slut dato og alle høringer og borgermøde fra systemet " +"plottes automatisk ind på tidslinjen.\r\n" +"Du kan bruge dette felt til " +"at plotte flere relevante punkter ind." + +msgctxt "field.field.node.project_main_page.field_area:label" +msgid "Område" +msgstr "Område" + +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 "" +"Vælg områder som projektet vedrører. Markér alle hvis projektet " +"dækker hele kommunen." + +msgctxt "field.field.node.project_main_page.field_content_sections:label" +msgid "Content sections" +msgstr "Content sections" + +msgctxt "field.field.node.project_main_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" +msgstr "Used to create page sections with the Drupal Paragraphs module" + +msgctxt "field.field.node.project_main_page.field_project_category:label" +msgid "Project category" +msgstr "Project category" + +msgctxt "field.field.node.project_main_page.field_project_category:description" +msgid "" +"Used to categorize the project. Create " +"new categories here" +msgstr "" +"Used to categorize the project. Create " +"new categories here" + +msgctxt "field.field.node.project_main_page.field_project_image:label" +msgid "Project image" +msgstr "Project image" + +msgctxt "field.field.node.project_main_page.field_project_image:description" +msgid "Used to show project image" +msgstr "Used to show project image" + +msgctxt "field.field.node.project_main_page.field_short_description:label" +msgid "Short description" +msgstr "Short description" + +msgctxt "field.field.node.project_main_page.field_short_description:description" +msgid "Short description of the project." +msgstr "Short description of the project." + +msgctxt "field.field.node.project_page.field_content_sections:label" +msgid "Content sections" +msgstr "Content sections" + +msgctxt "field.field.node.project_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" +msgstr "Used to create page sections with the Drupal Paragraphs module" + +msgctxt "field.field.node.project_page.field_project_category:label" +msgid "Project category" +msgstr "Project category" + +msgctxt "field.field.node.project_page.field_project_category:description" +msgid "" +"Used to categorize the project. Create " +"new categories here" +msgstr "" +"Used to categorize the project. Create " +"new categories here" + +msgctxt "field.field.node.public_meeting.field_area:label" +msgid "Område" +msgstr "Område" + +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 "" +"Vælg områder som borgermødet dækker. Markér alle hvis " +"borgermødet dækker hele kommunen." + +msgctxt "field.field.node.public_meeting.field_cancelled_date:label" +msgid "Cancelled date" +msgstr "Cancelled date" + +msgctxt "field.field.node.public_meeting.field_cancelled_text:label" +msgid "Cancelled text" +msgstr "Cancelled text" + +msgctxt "field.field.node.public_meeting.field_contact:label" +msgid "Kontakt" +msgstr "Kontakt" + +msgctxt "field.field.node.public_meeting.field_content_state:label" +msgid "Content state" +msgstr "Content state" + +msgctxt "field.field.node.public_meeting.field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "field.field.node.public_meeting.field_description:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "field.field.node.public_meeting.field_description:description" +msgid "Beskrivelse af borgemødet." +msgstr "Beskrivelse af borgemødet." + +msgctxt "field.field.node.public_meeting.field_email_address:label" +msgid "Email address" +msgstr "Email address" + +msgctxt "field.field.node.public_meeting.field_email_address:description" +msgid "Enter the contact email address." +msgstr "Enter the contact email address." + +msgctxt "field.field.node.public_meeting.field_first_meeting_time:label" +msgid "First meeting time" +msgstr "First meeting time" + +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 "" +"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." + +msgctxt "field.field.node.public_meeting.field_hidden_signup:label" +msgid "Skjul tilmelding" +msgstr "Skjul tilmelding" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:description" +msgid "Check denne boks hvis du ønsker at skjule tilmelding i frontend" +msgstr "Check denne boks hvis du ønsker at skjule tilmelding i frontend" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "field.field.node.public_meeting.field_last_meeting_time:label" +msgid "Mødedato" +msgstr "Mødedato" + +msgctxt "field.field.node.public_meeting.field_last_meeting_time_end:label" +msgid "Sluttidspunkt" +msgstr "Sluttidspunkt" + +msgctxt "field.field.node.public_meeting.field_map:label" +msgid "Kortvisning" +msgstr "Kortvisning" + +msgctxt "field.field.node.public_meeting.field_media_document:label" +msgid "Dokumenter" +msgstr "Dokumenter" + +msgctxt "field.field.node.public_meeting.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." +msgstr "Vælg dokumenter der beskriver høringen." + +msgctxt "field.field.node.public_meeting.field_media_image_single:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "field.field.node.public_meeting.field_media_image_single:description" +msgid "Vælg billeder der skal vises i teaservisningen." +msgstr "Vælg billeder der skal vises i teaservisningen." + +msgctxt "field.field.node.public_meeting.field_pretix_dates:label" +msgid "Tilmelding" +msgstr "Tilmelding" + +msgctxt "field.field.node.public_meeting.field_pretix_event_settings:label" +msgid "pretix-indstillinger" +msgstr "pretix-indstillinger" + +msgctxt "field.field.node.public_meeting.field_project_reference:label" +msgid "Projekttidslinje" +msgstr "Projekttidslinje" + +msgctxt "field.field.node.public_meeting.field_project_reference:description" +msgid "Vælg tidslinje som borgermødet er knyttet til." +msgstr "Vælg tidslinje som borgermødet er knyttet til." + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:label" +msgid "Cancelled" +msgstr "Cancelled" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:description" +msgid "Check this box if the meeting is cancelled" +msgstr "Check this box if the meeting is cancelled" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:on_label" +msgid "Tilsluttet" +msgstr "Tilsluttet" + +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:off_label" +msgid "Afbrudt" +msgstr "Afbrudt" + +msgctxt "field.field.node.public_meeting.field_registration_deadline:label" +msgid "Tilmeldingsfrist" +msgstr "Tilmeldingsfrist" + +msgctxt "field.field.node.public_meeting.field_section:label" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "field.field.node.public_meeting.field_signup_link:label" +msgid "Tilmeldingslink" +msgstr "Tilmeldingslink" + +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 "" +"Skiv en god og præcis linktekst der forklarer hvad der sker når man " +"trykker på linket, fx “Gå til tilmelding på NemTilmeld”." + +msgctxt "field.field.node.public_meeting.field_signup_selection:label" +msgid "Vælg tilmeldingstype" +msgstr "Vælg tilmeldingstype" + +msgctxt "field.field.node.public_meeting.field_signup_selection:description" +msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." +msgstr "Bemærk at du ikke kan ændre tilmeldingstypen senere." + +msgctxt "field.field.node.public_meeting.field_signup_text:label" +msgid "Tilmeldingstekst" +msgstr "Tilmeldingstekst" + +msgctxt "field.field.node.public_meeting.field_signup_text:description" +msgid "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." +msgstr "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." + +msgctxt "field.field.node.public_meeting.field_teaser:label" +msgid "Teaser/indledning" +msgstr "Teaser/indledning" + +msgctxt "field.field.node.public_meeting.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsvisningen" +msgstr "Kort tekst der vises i teasers og i toppen af indholdsvisningen" + +msgctxt "field.field.node.public_meeting.field_type:label" +msgid "Type" +msgstr "Type" + +msgctxt "field.field.node.static_page.field_media_image_single:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "field.field.node.static_page.field_media_image_single:description" +msgid "Billede til visning i header" +msgstr "Billede til visning i header" + +msgctxt "field.field.node.static_page.field_section:label" +msgid "Indholds region" +msgstr "Indholds region" + +msgctxt "field.field.node.static_page.field_sidebar:label" +msgid "Sidebar" +msgstr "Sidebar" + +msgctxt "field.field.node.static_page.field_sidebar:description" +msgid "Tekst til visning i højre side på fuldskærmsvisning" +msgstr "Tekst til visning i højre side på fuldskærmsvisning" + +msgctxt "field.field.node.static_page.field_teaser:label" +msgid "Teaser/indledning" +msgstr "Teaser/indledning" + +msgctxt "field.field.node.static_page.field_teaser:description" +msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "Kort tekst der vises i teasers og ved siden af billede på indhold." + +msgctxt "field.field.node.static_page.field_teaser_color:label" +msgid "Teaser color" +msgstr "Teaser color" + +msgctxt "field.field.paragraph.content_block.field_content_block_text:label" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "field.field.paragraph.content_block.field_paragraph_image:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "field.field.paragraph.content_block.field_paragraph_title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "field.field.paragraph.content_list.field_content_list:label" +msgid "Indholdsliste" +msgstr "Indholdsliste" + +msgctxt "field.field.paragraph.content_list.field_list_title:label" +msgid "Liste titel" +msgstr "Liste titel" + +msgctxt "field.field.paragraph.files.field_files:label" +msgid "Files" +msgstr "Files" + +msgctxt "field.field.paragraph.files.field_files:description" +msgid "Used to reference the files" +msgstr "Used to reference the files" + +msgctxt "field.field.paragraph.files.field_title:label" +msgid "Title" +msgstr "Title" + +msgctxt "field.field.paragraph.files.field_title:description" +msgid "Used for the title" +msgstr "Used for the title" + +msgctxt "field.field.paragraph.image.field_paragraph_image:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "field.field.paragraph.info_box.field_content_block_text:label" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "field.field.paragraph.info_box.field_paragraph_title:label" +msgid "Overskrift" +msgstr "Overskrift" + +msgctxt "field.field.paragraph.info_box.field_variant:label" +msgid "Variant" +msgstr "Variant" + +msgctxt "field.field.paragraph.info_box.field_variant:description" +msgid "Used to set the variant style for the info box." +msgstr "Used to set the variant style for the info box." + +msgctxt "field.field.paragraph.introduction.field_intro_body:label" +msgid "Introduktion" +msgstr "Introduktion" + +msgctxt "field.field.paragraph.introduction.field_intro_link:label" +msgid "Link" +msgstr "Link" + +msgctxt "field.field.paragraph.introduction.field_paragraph_title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_external_link:label" +msgid "Eksternt link" +msgstr "Eksternt link" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" +msgid "Billedegalleri" +msgstr "Billedegalleri" + +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 "" +"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." + +msgctxt "field.field.paragraph.teaser_row.field_content:label" +msgid "Content" +msgstr "Content" + +msgctxt "field.field.paragraph.teaser_row.field_content:description" +msgid "Used to select up to 3 content items to show in the row" +msgstr "Used to select up to 3 content items to show in the row" + +msgctxt "field.field.paragraph.teaser_row.field_paragraph_title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "field.field.paragraph.text.field_content_block_text:label" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "field.field.paragraph.text.field_external_link:label" +msgid "Link" +msgstr "Link" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:label" +msgid "Abstract" +msgstr "Abstract" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:description" +msgid "Used to quickly introduce the overall article content." +msgstr "Used to quickly introduce the overall article content." + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:label" +msgid "Aside block" +msgstr "Aside block" + +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 "" +"Used to add a block with contact information. The blocks can be managed under the blocks section" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:label" +msgid "Body" +msgstr "Body" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:description" +msgid "Used for the body text" +msgstr "Used for the body text" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:label" +msgid "Title" +msgstr "Title" + +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:description" +msgid "Used for the title" +msgstr "Used for the title" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_date:label" +msgid "Dato" +msgstr "Dato" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_description:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_link:label" +msgid "Link" +msgstr "Link" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_taxonomy_type:label" +msgid "Type" +msgstr "Type" + +msgctxt "field.field.paragraph.timeline_items.field_timeline_title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_date:label" +msgid "Dato" +msgstr "Dato" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_description:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_end_date:label" +msgid "Slutdato" +msgstr "Slutdato" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_link:label" +msgid "Link" +msgstr "Link" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_taxonomy_type:label" +msgid "Type" +msgstr "Type" + +msgctxt "field.field.paragraph.timeline_period.field_timeline_title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "field.field.taxonomy_term.area.field_area_id:label" +msgid "Postnummer" +msgstr "Postnummer" + +msgctxt "field.field.taxonomy_term.department.field_claim_value:label" +msgid "Claim value" +msgstr "Claim value" + +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 "" +"The claim value to match. If not set, the name of the term itself will " +"be used." + +msgctxt "field.field.taxonomy_term.timeline_item_types.field_timeline_item_color:label" +msgid "Punktfarve" +msgstr "Punktfarve" + +msgctxt "field.field.user.user.field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:0:label" +msgid "Mint" +msgstr "Mint" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:1:label" +msgid "Peach" +msgstr "Peach" + +msgctxt "field.storage.block_content.field_color:settings:allowed_values:2:label" +msgid "Stone" +msgstr "Stone" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:0:label" +msgid "Kommende" +msgstr "Kommende" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:1:label" +msgid "I gang" +msgstr "I gang" + +msgctxt "field.storage.node.field_content_state:settings:allowed_values:2:label" +msgid "Afsluttet" +msgstr "Afsluttet" + +msgctxt "field.storage.node.field_map_type:settings:allowed_values:0:label" +msgid "Septima Widget" +msgstr "Septima Widget" + +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:0:label" +msgid "Benyt tilmeldingssystem" +msgstr "Benyt tilmeldingssystem" + +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:1:label" +msgid "Benyt ikke tilmeldingssystem" +msgstr "Benyt ikke tilmeldingssystem" + +msgctxt "field.storage.node.field_teaser_color:settings:format" +msgid "#HEXHEX" +msgstr "#HEXHEX" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:0:label" +msgid "Danger" +msgstr "Danger" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:1:label" +msgid "Warning" +msgstr "Warning" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:2:label" +msgid "Info" +msgstr "Info" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:3:label" +msgid "Petroleum light" +msgstr "Petroleum light" + +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:4:label" +msgid "Petroleum" +msgstr "Petroleum" + +msgctxt "field.storage.taxonomy_term.field_timeline_item_color:settings:format" +msgid "#HEXHEX" +msgstr "#HEXHEX" + +msgctxt "filter.format.citizen_proposal_content:name" +msgid "Citizen proposal content" +msgstr "Citizen proposal content" + +msgctxt "filter.format.email_html:name" +msgid "Email HTML" +msgstr "Email HTML" + +msgctxt "filter.format.filtered_html:name" +msgid "Filtered html" +msgstr "Filtered html" + +msgctxt "filter.format.hearing_description:name" +msgid "Hearing description" +msgstr "Hearing description" + +msgctxt "filter.format.plain_text:name" +msgid "Ren tekst" +msgstr "Ren tekst" + +msgctxt "image.style.carousel_300x168:label" +msgid "Carousel 576x322" +msgstr "Carousel 576x322" + +msgctxt "image.style.crop_thumbnail:label" +msgid "Crop thumbnail" +msgstr "Crop thumbnail" + +msgctxt "image.style.hero:label" +msgid "Hero (1440w) - Crop" +msgstr "Hero (1440w) - Crop" + +msgctxt "image.style.medium:label" +msgid "Mellem (220×220)" +msgstr "Mellem (220×220)" + +msgctxt "image.style.responsive_large_default:label" +msgid "Responsive large default" +msgstr "Responsive large default" + +msgctxt "image.style.responsive_large_default_x2:label" +msgid "Responsive large default (x2)" +msgstr "Responsive large default (x2)" + +msgctxt "image.style.responsive_medium_default:label" +msgid "Responsive medium default" +msgstr "Responsive medium default" + +msgctxt "image.style.responsive_medium_default_x2:label" +msgid "Responsive medium default (x2)" +msgstr "Responsive medium default (x2)" + +msgctxt "image.style.responsive_small_default:label" +msgid "Responsive small default" +msgstr "Responsive small default" + +msgctxt "image.style.responsive_small_default_x2:label" +msgid "Responsive small default (x2)" +msgstr "Responsive small default (x2)" + +msgctxt "image.style.responsive_small_teaser:label" +msgid "Responsive small teaser" +msgstr "Responsive small teaser" + +msgctxt "image.style.responsive_small_teaser_x2:label" +msgid "Responsive small teaser (x2)" +msgstr "Responsive small teaser (x2)" + +msgctxt "image.style.responsive_xsmall_default:label" +msgid "Responsive xsmall default" +msgstr "Responsive xsmall default" + +msgctxt "image.style.responsive_xsmall_default_x2:label" +msgid "Responsive xsmall default (x2)" +msgstr "Responsive xsmall default (x2)" + +msgctxt "image.style.responsive_xsmall_teaser:label" +msgid "Responsive xsmall teaser" +msgstr "Responsive xsmall teaser" + +msgctxt "image.style.responsive_xsmall_teaser_x2:label" +msgid "Responsive xsmall teaser (x2)" +msgstr "Responsive xsmall teaser (x2)" + +msgctxt "image.style.thumbnail:label" +msgid "Thumbnail (100×100)" +msgstr "Thumbnail (100×100)" + +msgctxt "language.entity.da:label" +msgid "Danish" +msgstr "Danish" + +msgctxt "language.entity.und:label" +msgid "Ikke angivet" +msgstr "Ikke angivet" + +msgctxt "language.entity.zxx:label" +msgid "ikke relevant" +msgstr "ikke relevant" + +msgctxt "media.type.document:label" +msgid "Document" +msgstr "Document" + +msgctxt "media.type.document:description" +msgid "A document to be stored in the media library" +msgstr "A document to be stored in the media library" + +msgctxt "media.type.image:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "media.type.image:description" +msgid "An image to be stored in the media library" +msgstr "An image to be stored in the media library" + +msgctxt "node.type.citizen_proposal:name" +msgid "Borgerforslag" +msgstr "Borgerforslag" + +msgctxt "node.type.citizen_proposal:description" +msgid "Et borgerforslag" +msgstr "Et borgerforslag" + +msgctxt "node.type.hearing:name" +msgid "Høring" +msgstr "Høring" + +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 "" +"En høring knyttes til et eksisterende projekt. Alle høringer har en " +"reference til Deskpro, så data kan hentes ind." + +msgctxt "node.type.landing_page:name" +msgid "Oversigtsside" +msgstr "Oversigtsside" + +msgctxt "node.type.landing_page:description" +msgid "" +"Oversigtsside til opsamling af alt indhold indenfor en " +"kategori.\r\n" +"Eksempler: Forside, Projekter, Høringer." +msgstr "" +"Oversigtsside til opsamling af alt indhold indenfor en " +"kategori.\r\n" +"Eksempler: Forside, Projekter, Høringer." + +msgctxt "node.type.page_map:name" +msgid "Kort" +msgstr "Kort" + +msgctxt "node.type.page_map:description" +msgid "Side med et stort kort" +msgstr "Side med et stort kort" + +msgctxt "node.type.project:name" +msgid "Projekttidslinje" +msgstr "Projekttidslinje" + +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 "" +"En projekttidslinje der samler relaterede borgermøder og initiativer " +"i en kronologi. Det er muligt at tilføje ekstra tidslinje punkter." + +msgctxt "node.type.project_main_page:name" +msgid "Project" +msgstr "Project" + +msgctxt "node.type.project_main_page:description" +msgid "Use this to create a project page" +msgstr "Use this to create a project page" + +msgctxt "node.type.project_page:name" +msgid "Project page" +msgstr "Project page" + +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 "" +"Used to create sub pages for projects. Fx. faq page, image gallery " +"page, process page and more. " + +msgctxt "node.type.public_meeting:name" +msgid "Begivenhed" +msgstr "Begivenhed" + +msgctxt "node.type.public_meeting:description" +msgid "En begivenhed" +msgstr "En begivenhed" + +msgctxt "node.type.static_page:name" +msgid "Statisk side" +msgstr "Statisk side" + +msgctxt "node.type.static_page:description" +msgid "" +"Bruges til indhold der sjældent ændres.\r\n" +"Eksempler: Cookie " +"politik, \"Om\" side, FAQ" +msgstr "" +"Bruges til indhold der sjældent ændres.\r\n" +"Eksempler: Cookie " +"politik, \"Om\" side, FAQ" + +msgctxt "paragraphs.paragraphs_type.content_block:label" +msgid "Indholdsblok" +msgstr "Indholdsblok" + +msgctxt "paragraphs.paragraphs_type.content_block:description" +msgid "" +"En indholdsblok til visning af kort text med mulighed for at tilknytte " +"et billede." +msgstr "" +"En indholdsblok til visning af kort text med mulighed for at tilknytte " +"et billede." + +msgctxt "paragraphs.paragraphs_type.content_list:label" +msgid "Indholdsliste" +msgstr "Indholdsliste" + +msgctxt "paragraphs.paragraphs_type.content_list:description" +msgid "" +"Vælg en færdigbygget liste af indholdselementer der automatisk " +"opdateres med nyt indhold." +msgstr "" +"Vælg en færdigbygget liste af indholdselementer der automatisk " +"opdateres med nyt indhold." + +msgctxt "paragraphs.paragraphs_type.files:label" +msgid "Files" +msgstr "Files" + +msgctxt "paragraphs.paragraphs_type.files:description" +msgid "Used to upload files that the user can download" +msgstr "Used to upload files that the user can download" + +msgctxt "paragraphs.paragraphs_type.image:label" +msgid "Billede" +msgstr "Billede" + +msgctxt "paragraphs.paragraphs_type.image:description" +msgid "Et billede til visning i fuld bredde" +msgstr "Et billede til visning i fuld bredde" + +msgctxt "paragraphs.paragraphs_type.info_box:label" +msgid "Infoboks" +msgstr "Infoboks" + +msgctxt "paragraphs.paragraphs_type.introduction:label" +msgid "Introduktion" +msgstr "Introduktion" + +msgctxt "paragraphs.paragraphs_type.introduction:description" +msgid "En simpel introduktionstekst med mulighed for header og link" +msgstr "En simpel introduktionstekst med mulighed for header og link" + +msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:label" +msgid "Initiativ billede galleri" +msgstr "Initiativ billede galleri" + +msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:description" +msgid "" +"Mulighed for visning af billeder galleri og link til ekstern " +"billedeservice.\r\n" +"For at få den bedste visuelle effekt bør der " +"vises minimum et billede og gerne flere." +msgstr "" +"Mulighed for visning af billeder galleri og link til ekstern " +"billedeservice.\r\n" +"For at få den bedste visuelle effekt bør der " +"vises minimum et billede og gerne flere." + +msgctxt "paragraphs.paragraphs_type.teaser_row:label" +msgid "Teaser række" +msgstr "Teaser række" + +msgctxt "paragraphs.paragraphs_type.teaser_row:description" +msgid "En række teasers der linker til andet indhold" +msgstr "En række teasers der linker til andet indhold" + +msgctxt "paragraphs.paragraphs_type.text:label" +msgid "Tekst" +msgstr "Tekst" + +msgctxt "paragraphs.paragraphs_type.text:description" +msgid "Et tekstfelt med en wysiwyg editor" +msgstr "Et tekstfelt med en wysiwyg editor" + +msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:label" +msgid "Text + aside blocks (2 column)" +msgstr "Text + aside blocks (2 column)" + +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 "" +"Used to create a content section with texts and aside blocks in 2 " +"columns." + +msgctxt "paragraphs.paragraphs_type.timeline_items:label" +msgid "Tidslinje punkter" +msgstr "Tidslinje punkter" + +msgctxt "paragraphs.paragraphs_type.timeline_items:description" +msgid "Tilføj ekstra punkter til tidslinjen" +msgstr "Tilføj ekstra punkter til tidslinjen" + +msgctxt "paragraphs.paragraphs_type.timeline_period:label" +msgid "Tidslinje periode" +msgstr "Tidslinje periode" + +msgctxt "paragraphs.paragraphs_type.timeline_period:description" +msgid "Tilføj perioder til tidslinjen" +msgstr "Tilføj perioder til tidslinjen" + +msgctxt "pathauto.pattern.hearings:label" +msgid "Hearings" +msgstr "Hearings" + +msgctxt "pathauto.pattern.initiative:label" +msgid "Initiative" +msgstr "Initiative" + +msgctxt "pathauto.pattern.overview_page:label" +msgid "Overview page" +msgstr "Overview page" + +msgctxt "pathauto.pattern.project:label" +msgid "Project" +msgstr "Project" + +msgctxt "pathauto.pattern.static_page:label" +msgid "Static page" +msgstr "Static page" + +msgctxt "responsive_image.styles.content_image:label" +msgid "Content image" +msgstr "Content image" + +msgctxt "responsive_image.styles.teaser_image:label" +msgid "Teaser image" +msgstr "Teaser image" + +msgctxt "search_api.index.content:name" +msgid "content" +msgstr "content" + +msgctxt "search_api.server.local:name" +msgid "local" +msgstr "local" + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:label" +msgid "Search Block" +msgstr "Search Block" + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:noResultLabel" +msgid "No results found for [search-phrase]. Click to perform full search." +msgstr "No results found for [search-phrase]. Click to perform full search." + +msgctxt "search_autocomplete.autocompletion_configuration.search_block:moreResultsLabel" +msgid "View all results for [search-phrase]." +msgstr "View all results for [search-phrase]." + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:label" +msgid "Search Form (content tab)" +msgstr "Search Form (content tab)" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:noResultLabel" +msgid "No results found containing the word [search-phrase]." +msgstr "No results found containing the word [search-phrase]." + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:moreResultsLabel" +msgid "View all results containg term [search-phrase]." +msgstr "View all results containg term [search-phrase]." + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:label" +msgid "Search Form (users tab)" +msgstr "Search Form (users tab)" + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:noResultLabel" +msgid "No users found for [search-phrase]. Click to perform full search." +msgstr "No users found for [search-phrase]. Click to perform full search." + +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:moreResultsLabel" +msgid "View all users for [search-phrase]." +msgstr "View all users for [search-phrase]." + +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_subject:value" +msgid "Tak for dit borgerforslag på [site:url]" +msgstr "Tak for dit borgerforslag på [site:url]" + +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_theme:theme" +msgid "_active_fallback" +msgstr "_active_fallback" + +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 "" +"

You have mail

\n" +"

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

\n" +"

Have a great {{ day }}!

\n" +"

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

" + +msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_subject:value" +msgid "Test email from [site:name]" +msgstr "Test email from [site:name]" + +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" +"{% for message in messages %}\n" +"
  • {{ message " +"}}
  • \n" +"{% endfor %}\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 "" +"

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

\n" +"
    \n" +"{% for message in messages %}\n" +"
  • {{ message " +"}}
  • \n" +"{% endfor %}\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.

" + +msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_subject:value" +msgid "New release(s) available for {{ site_name }}" +msgstr "New release(s) available for {{ site_name }}" + +msgctxt "symfony_mailer.mailer_policy.user.cancel_confirm:configuration:email_subject:value" +msgid "Account cancellation request for [user:display-name] at [site:name]" +msgstr "Account cancellation request for [user:display-name] at [site:name]" + +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 "" +"

[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.

" + +msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_subject:value" +msgid "Replacement login information for [user:display-name] at [site:name]" +msgstr "Replacement login information for [user:display-name] at [site:name]" + +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 "" +"

[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.

" + +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 "An administrator created an account for you at [site:name]" + +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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" +msgstr "" +"

[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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" + +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 "Account details for [user:display-name] at [site:name]" + +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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" +msgstr "" +"

[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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" + +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 "" +"Account details for [user:display-name] at [site:name] (pending admin " +"approval)" + +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 "" +"

[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.

" + +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 "" +"Account details for [user:display-name] at [site:name] (pending admin " +"approval)" + +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 "" +"

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

" + +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 "" +"Your account details for [user:display-name] at [site:name] " +"([site:url])" + +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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" +msgstr "" +"

[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" +"
    \n" +"
  • username: [user:account-name]
  • \n" +" " +"
  • password: Your password
  • \n" +"
" + +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "Account details for [user:display-name] at [site:name] (blocked)" + +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 "" +"

[user:display-name],

\n" +"

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

" + +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" +msgstr "Notification disabled in settings" + +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_subject:value" +msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "Account details for [user:display-name] at [site:name] (canceled)" + +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 "" +"

[user:display-name],

\n" +"

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

" + +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" +msgstr "Notification disabled in settings" + +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 "Account details for [user:display-name] at [site:name]" + +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" +"
    \n" +"
  • username: " +"[user:account-name]
  • \n" +"
  • password: Your password
  • \n" +"
" +msgstr "" +"

[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" +"
    \n" +"
  • username: " +"[user:account-name]
  • \n" +"
  • password: Your password
  • \n" +"
" + +msgctxt "symfony_mailer.mailer_policy._:configuration:email_theme:theme" +msgid "_active_fallback" +msgstr "_active_fallback" + +msgctxt "symfony_mailer.mailer_transport.sendmail:label" +msgid "Sendmail" +msgstr "Sendmail" + +msgctxt "symfony_mailer.mailer_transport.smtp:label" +msgid "SMTP" +msgstr "SMTP" + +msgctxt "system.action.media_delete_action:label" +msgid "Delete media" +msgstr "Delete media" + +msgctxt "system.action.media_publish_action:label" +msgid "Publish media" +msgstr "Publish media" + +msgctxt "system.action.media_save_action:label" +msgid "Save media" +msgstr "Save media" + +msgctxt "system.action.media_unpublish_action:label" +msgid "Unpublish media" +msgstr "Unpublish media" + +msgctxt "system.action.node_make_sticky_action:label" +msgid "Gør indhold klæbrigt" +msgstr "Gør indhold klæbrigt" + +msgctxt "system.action.node_make_unsticky_action:label" +msgid "Fjern klæbrighed" +msgstr "Fjern klæbrighed" + +msgctxt "system.action.node_promote_action:label" +msgid "Vis indhold på forsiden" +msgstr "Vis indhold på forsiden" + +msgctxt "system.action.node_publish_action:label" +msgid "Udgiv indhold" +msgstr "Udgiv indhold" + +msgctxt "system.action.node_save_action:label" +msgid "Gem indhold" +msgstr "Gem indhold" + +msgctxt "system.action.node_unpromote_action:label" +msgid "Fjern indhold fra forsiden" +msgstr "Fjern indhold fra forsiden" + +msgctxt "system.action.node_unpublish_action:label" +msgid "Afpubliceer indhold" +msgstr "Afpubliceer indhold" + +msgctxt "system.action.pathauto_update_alias_node:label" +msgid "Opdatér alternativ URL" +msgstr "Opdatér alternativ URL" + +msgctxt "system.action.pathauto_update_alias_user:label" +msgid "Opdatér alternativ URL" +msgstr "Opdatér alternativ URL" + +msgctxt "system.action.redirect_delete_action:label" +msgid "Delete redirect" +msgstr "Delete redirect" + +msgctxt "system.action.user_add_role_action.administrator:label" +msgid "Add the Administrator role to the selected user(s)" +msgstr "Add the Administrator role to the selected user(s)" + +msgctxt "system.action.user_add_role_action.citizen_proposal_editor:label" +msgid "Add the Citizen proposal editor role to the selected user(s)" +msgstr "Add the Citizen proposal editor role to the selected user(s)" + +msgctxt "system.action.user_add_role_action.editor:label" +msgid "Add the Redaktør role to the selected user(s)" +msgstr "Add the Redaktør role to the selected user(s)" + +msgctxt "system.action.user_add_role_action.hearing_editor:label" +msgid "Add the hearing editor role to the selected user(s)" +msgstr "Add the hearing editor role to the selected user(s)" + +msgctxt "system.action.user_add_role_action.project_editor:label" +msgid "Add the Project editor role to the selected user(s)" +msgstr "Add the Project editor role to the selected user(s)" + +msgctxt "system.action.user_add_role_action.public_meeting_editor:label" +msgid "Add the public meeting editor role to the selected user(s)" +msgstr "Add the public meeting editor role to the selected user(s)" + +msgctxt "system.action.user_block_user_action:label" +msgid "Blokér de(n) valgte bruger(e)" +msgstr "Blokér de(n) valgte bruger(e)" + +msgctxt "system.action.user_cancel_user_action:label" +msgid "Opsig de valgte brugerkonti" +msgstr "Opsig de valgte brugerkonti" + +msgctxt "system.action.user_remove_role_action.administrator:label" +msgid "Remove the Administrator role from the selected user(s)" +msgstr "Remove the Administrator role from the selected user(s)" + +msgctxt "system.action.user_remove_role_action.citizen_proposal_editor:label" +msgid "Remove the Citizen proposal editor role from the selected user(s)" +msgstr "Remove the Citizen proposal editor role from the selected user(s)" + +msgctxt "system.action.user_remove_role_action.editor:label" +msgid "Remove the Redaktør role from the selected user(s)" +msgstr "Remove the Redaktør role from the selected user(s)" + +msgctxt "system.action.user_remove_role_action.hearing_editor:label" +msgid "Remove the hearing editor role from the selected user(s)" +msgstr "Remove the hearing editor role from the selected user(s)" + +msgctxt "system.action.user_remove_role_action.project_editor:label" +msgid "Remove the Project editor role from the selected user(s)" +msgstr "Remove the Project editor role from the selected user(s)" + +msgctxt "system.action.user_remove_role_action.public_meeting_editor:label" +msgid "Remove the public meeting editor role from the selected user(s)" +msgstr "Remove the public meeting editor role from the selected user(s)" + +msgctxt "system.action.user_unblock_user_action:label" +msgid "Fjern blokering af de(n) valgte bruger(e)" +msgstr "Fjern blokering af de(n) valgte bruger(e)" + +msgctxt "system.action.webform_archive_action:label" +msgid "Archive webform" +msgstr "Archive webform" + +msgctxt "system.action.webform_close_action:label" +msgid "Close webform" +msgstr "Close webform" + +msgctxt "system.action.webform_delete_action:label" +msgid "Delete webform" +msgstr "Delete webform" + +msgctxt "system.action.webform_open_action:label" +msgid "Open webform" +msgstr "Open webform" + +msgctxt "system.action.webform_submission_delete_action:label" +msgid "Delete submission" +msgstr "Delete submission" + +msgctxt "system.action.webform_submission_make_lock_action:label" +msgid "Lock submission" +msgstr "Lock submission" + +msgctxt "system.action.webform_submission_make_sticky_action:label" +msgid "Star/flag submission" +msgstr "Star/flag submission" + +msgctxt "system.action.webform_submission_make_unlock_action:label" +msgid "Unlock submission" +msgstr "Unlock submission" + +msgctxt "system.action.webform_submission_make_unsticky_action:label" +msgid "Unstar/unflag submission" +msgstr "Unstar/unflag submission" + +msgctxt "system.action.webform_unarchive_action:label" +msgid "Restore webform" +msgstr "Restore webform" + +msgctxt "system.maintenance:message" +msgid "" +"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " +"tålmodighed." +msgstr "" +"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " +"tålmodighed." + +msgctxt "system.menu.account:label" +msgid "Brugerkontomenu" +msgstr "Brugerkontomenu" + +msgctxt "system.menu.account:description" +msgid "Links relateret til den aktive brugerkonto" +msgstr "Links relateret til den aktive brugerkonto" + +msgctxt "system.menu.admin:label" +msgid "Administration" +msgstr "Administration" + +msgctxt "system.menu.admin:description" +msgid "Links til administrative opgaver" +msgstr "Links til administrative opgaver" + +msgctxt "system.menu.footer:label" +msgid "Sidefod" +msgstr "Sidefod" + +msgctxt "system.menu.footer:description" +msgid "Links til informationen om sitet" +msgstr "Links til informationen om sitet" + +msgctxt "system.menu.main:label" +msgid "Primær navigation" +msgstr "Primær navigation" + +msgctxt "system.menu.main:description" +msgid "Links til sitets sektioner" +msgstr "Links til sitets sektioner" + +msgctxt "system.menu.secondary-navigation:label" +msgid "Sekundær navigation" +msgstr "Sekundær navigation" + +msgctxt "system.menu.secondary-navigation:description" +msgid "Lille menu til højre i header" +msgstr "Lille menu til højre i header" + +msgctxt "system.menu.tools:label" +msgid "Værktøjer" +msgstr "Værktøjer" + +msgctxt "system.menu.tools:description" +msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" +msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" + +msgctxt "system.site:name" +msgid "Deltag Aarhus – Aarhus kommune" +msgstr "Deltag Aarhus – Aarhus kommune" + +msgctxt "taxonomy.vocabulary.area:name" +msgid "Område" +msgstr "Område" + +msgctxt "taxonomy.vocabulary.area:description" +msgid "" +"Området vises i teaservisningen og kan bruges som filter på " +"oversigter" +msgstr "" +"Området vises i teaservisningen og kan bruges som filter på " +"oversigter" + +msgctxt "taxonomy.vocabulary.department:name" +msgid "Afdeling" +msgstr "Afdeling" + +msgctxt "taxonomy.vocabulary.department:description" +msgid "Afdeling (Magistrat) for brugere og indhold" +msgstr "Afdeling (Magistrat) for brugere og indhold" + +msgctxt "taxonomy.vocabulary.hearing_type:name" +msgid "Høringstype" +msgstr "Høringstype" + +msgctxt "taxonomy.vocabulary.hearing_type:description" +msgid "" +"De forskellige høringstyper der kan vælges imellem når en høring " +"oprettes" +msgstr "" +"De forskellige høringstyper der kan vælges imellem når en høring " +"oprettes" + +msgctxt "taxonomy.vocabulary.media_library:name" +msgid "Medie bibliotek" +msgstr "Medie bibliotek" + +msgctxt "taxonomy.vocabulary.media_library:description" +msgid "En taksonomi der kan bruges til at strukturere mediebiblioteket" +msgstr "En taksonomi der kan bruges til at strukturere mediebiblioteket" + +msgctxt "taxonomy.vocabulary.project_categories:name" +msgid "Project categories" +msgstr "Project categories" + +msgctxt "taxonomy.vocabulary.project_categories:description" +msgid "Used to categorize project pages" +msgstr "Used to categorize project pages" + +msgctxt "taxonomy.vocabulary.tags:name" +msgid "Emneord" +msgstr "Emneord" + +msgctxt "taxonomy.vocabulary.tags:description" +msgid "En liste af emneord der kan bruges til at tagge indhold" +msgstr "En liste af emneord der kan bruges til at tagge indhold" + +msgctxt "taxonomy.vocabulary.timeline_item_types:name" +msgid "Tidslinje punkttyper" +msgstr "Tidslinje punkttyper" + +msgctxt "taxonomy.vocabulary.timeline_item_types:description" +msgid "Typer af tidslinje punkter" +msgstr "Typer af tidslinje punkter" + +msgctxt "taxonomy.vocabulary.type:name" +msgid "Type" +msgstr "Type" + +msgctxt "user.mail:cancel_confirm:subject" +msgid "" +"Anmodning om opsigelse af konto for [user:display-name] på " +"[site:name]" +msgstr "" +"Anmodning om opsigelse af konto for [user:display-name] på " +"[site:name]" + +msgctxt "user.mail:cancel_confirm:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:password_reset:subject" +msgid "Ny login-information for [user:display-name] på [site:name]" +msgstr "Ny login-information for [user:display-name] på [site:name]" + +msgctxt "user.mail:password_reset:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:register_admin_created:subject" +msgid "En administrator har oprettet en konto til dig på [site:name]" +msgstr "En administrator har oprettet en konto til dig på [site:name]" + +msgctxt "user.mail:register_admin_created:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:register_no_approval_required:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" + +msgctxt "user.mail:register_no_approval_required:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:register_pending_approval:subject" +msgid "" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" +msgstr "" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" + +msgctxt "user.mail:register_pending_approval:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:register_pending_approval_admin:subject" +msgid "" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" +msgstr "" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" + +msgctxt "user.mail:register_pending_approval_admin:body" +msgid "" +"[user:display-name] has applied for an " +"account.\r\n" +"\r\n" +"[user:edit-url]" +msgstr "" +"[user:display-name] has applied for an " +"account.\r\n" +"\r\n" +"[user:edit-url]" + +msgctxt "user.mail:status_activated:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" + +msgctxt "user.mail:status_activated:body" +msgid "" +"[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" +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" + +msgctxt "user.mail:status_blocked:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" + +msgctxt "user.mail:status_blocked:body" +msgid "" +"[user:display-name],\r\n" +"\r\n" +"Your account on [site:name] has been " +"blocked.\r\n" +"\r\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" + +msgctxt "user.mail:status_canceled:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" + +msgctxt "user.mail:status_canceled:body" +msgid "" +"[user:display-name],\r\n" +"\r\n" +"Your account on [site:name] has been " +"canceled.\r\n" +"\r\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" + +msgctxt "user.role.administrator:label" +msgid "Administrator" +msgstr "Administrator" + +msgctxt "user.role.anonymous:label" +msgid "Anonym bruger" +msgstr "Anonym bruger" + +msgctxt "user.role.authenticated:label" +msgid "Godkendt bruger" +msgstr "Godkendt bruger" + +msgctxt "user.role.citizen_proposal_editor:label" +msgid "Citizen proposal editor" +msgstr "Citizen proposal editor" + +msgctxt "user.role.editor:label" +msgid "Redaktør" +msgstr "Redaktør" + +msgctxt "user.role.hearing_editor:label" +msgid "Hearing editor" +msgstr "Hearing editor" + +msgctxt "user.role.project_editor:label" +msgid "Project editor" +msgstr "Project editor" + +msgctxt "user.role.public_meeting_editor:label" +msgid "Public meeting editor" +msgstr "Public meeting editor" + +msgctxt "user.settings:anonymous" +msgid "Anonym" +msgstr "Anonym" + +msgctxt "views.view.advancedqueue_jobs:label" +msgid "Advanced queue jobs" +msgstr "Advanced queue jobs" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:title" +msgid "Jobs" +msgstr "Jobs" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:job_id:label" +msgid "Job ID" +msgstr "Job ID" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:alter:text" +msgid "Number of retries: {{ num_retries }}" +msgstr "Number of retries: {{ num_retries }}" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:label" +msgid "State" +msgstr "State" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:alter:text" +msgid "" +"{{ state }}\n" +"\n" +"{{ num_retries }}" +msgstr "" +"{{ state }}\n" +"\n" +"{{ num_retries }}" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:type:label" +msgid "Job type" +msgstr "Job type" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:payload:label" +msgid "Payload" +msgstr "Payload" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:available:label" +msgid "Available date" +msgstr "Available date" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:label" +msgid "Processed date" +msgstr "Processed date" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:alter:text" +msgid "" +"{{ processed }}\n" +"\n" +"{{ message }}" +msgstr "" +"{{ processed }}\n" +"\n" +"{{ message }}" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:label" +msgid "Høringssvar" +msgstr "Høringssvar" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:alter:text" +msgid "Message: {{ message }}" +msgstr "Message: {{ message }}" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" +msgid "No jobs found" +msgstr "No jobs found" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" +msgid "Job type" +msgstr "Job type" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:state:expose:label" +msgid "State" +msgstr "State" + +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:available:expose:label" +msgid "Available date" +msgstr "Available date" + +msgctxt "views.view.advancedqueue_jobs:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.all_citizen_proposals:label" +msgid "Alle borgerforslag" +msgstr "Alle borgerforslag" + +msgctxt "views.view.all_citizen_proposals:description" +msgid "En liste af alle høringer" +msgstr "En liste af alle høringer" + +msgctxt "views.view.all_citizen_proposals:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" +msgstr "Sortér" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "filtered_html" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "Advanced options" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "basic_html" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Afstemning start Desc|Nyeste\r\n" +"Afstemning start Asc|Ældste" +msgstr "" +"Afstemning start Desc|Nyeste\r\n" +"Afstemning start Asc|Ældste" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "Sort options" + +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\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afstemning " +"afsluttet\r\n" +"I gang|Afstemning aktiv\r\n" +"Kommende|" +msgstr "" +"- Any -|Alle\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afstemning " +"afsluttet\r\n" +"I gang|Afstemning aktiv\r\n" +"Kommende|" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" +"" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" +msgid "Afstemning start" +msgstr "Afstemning start" + +msgctxt "views.view.all_citizen_proposals:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.all_hearings:label" +msgid "Alle høringer" +msgstr "Alle høringer" + +msgctxt "views.view.all_hearings:description" +msgid "En liste af alle høringer" +msgstr "En liste af alle høringer" + +msgctxt "views.view.all_hearings:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "filtered_html" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "Advanced options" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "basic_html" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\r\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" +"Svarfrist Asc|Først kommende\r\n" +"Svarfrist Desc|Sidst kommende" + +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "Sort options" + +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\r\n" +"- Enhver -|Vis alle områder" +msgstr "" +"- Any -|Område\r\n" +"- Enhver -|Vis alle områder" + +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\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afsluttede\r\n" +"I " +"gang|Aktive" +msgstr "" +"- Any -|Alle\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afsluttede\r\n" +"I " +"gang|Aktive" + +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\r\n" +"- Enhver -|Vælg type" +msgstr "" +"- Any -|Alle typer\r\n" +"- Enhver -|Vælg type" + +msgctxt "views.view.all_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" +"" + +msgctxt "views.view.all_hearings:display:default:display_options:sorts:field_reply_deadline_value:expose:label" +msgid "Svarfrist" +msgstr "Svarfrist" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" +msgstr "Område" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.all_meetings:label" +msgid "Alle begivenheder" +msgstr "Alle begivenheder" + +msgctxt "views.view.all_meetings:description" +msgid "En liste af alle begivenheder" +msgstr "En liste af alle begivenheder" + +msgctxt "views.view.all_meetings:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Ønsket rækkefølge?" +msgstr "Ønsket rækkefølge?" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "filtered_html" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "Advanced options" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "basic_html" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\r\n" +"Svarfrist Desc|Sidst kommende" +msgstr "" +"Svarfrist Asc|Først kommende\r\n" +"Svarfrist Desc|Sidst kommende" + +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" +msgstr "Sort options" + +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\r\n" +"- Enhver -|Vis alle områder" +msgstr "" +"- Any -|Område\r\n" +"- Enhver -|Vis alle områder" + +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\r\n" +"Afsluttet|Afsluttede\r\n" +"Kommende|Aktive" +msgstr "" +"- Enhver -|Alle\r\n" +"Afsluttet|Afsluttede\r\n" +"Kommende|Aktive" + +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\r\n" +"- Enhver -|Vælg type" +msgstr "" +"- Any -|Alle typer\r\n" +"- Enhver -|Vælg type" + +msgctxt "views.view.all_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" +"" + +msgctxt "views.view.all_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" +msgid "Svarfrist" +msgstr "Svarfrist" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Hvor i kommunen?" +msgstr "Hvor i kommunen?" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Hvilken status?" +msgstr "Hvilken status?" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:label" +msgid "Content state (field_content_state)" +msgstr "Content state (field_content_state)" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:1:title" +msgid "Kommende" +msgstr "Kommende" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:2:title" +msgid "Afsluttet" +msgstr "Afsluttet" + +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.all_projects:label" +msgid "Alle projekter" +msgstr "Alle projekter" + +msgctxt "views.view.all_projects:description" +msgid "En liste af alle projekter" +msgstr "En liste af alle projekter" + +msgctxt "views.view.all_projects:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +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 "Vælg et filter og klik på Anvend for at se resultater" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "filtered_html" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Avancerede indstillinger" +msgstr "Avancerede indstillinger" + +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 "Vælg et filter og klik på Anvend for at se resultater" + +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "basic_html" + +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\r\n" +"- Enhver -|Vælg område" +msgstr "" +"- Any -|Område\r\n" +"- Enhver -|Vælg område" + +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\r\n" +"- Enhver -|Alle" +msgstr "" +"- Any -|Alle\r\n" +"- Enhver -|Alle" + +msgctxt "views.view.all_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" +"" + +msgctxt "views.view.all_projects:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" +msgstr "Område" + +msgctxt "views.view.archive:label" +msgid "Arkiv" +msgstr "Arkiv" + +msgctxt "views.view.archive:description" +msgid "Alt indhold, efter måned." +msgstr "Alt indhold, efter måned." + +msgctxt "views.view.archive:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.archive:display:default:display_options:title" +msgid "Månedsarkiv" +msgstr "Månedsarkiv" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.archive:display:default:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" +msgstr "{{ arguments.created_year_month }}" + +msgctxt "views.view.archive:display:block_1:display_title" +msgid "Blok" +msgstr "Blok" + +msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" +msgstr "{{ arguments.created_year_month }}" + +msgctxt "views.view.archive:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.authmap:label" +msgid "External authentication links" +msgstr "External authentication links" + +msgctxt "views.view.authmap:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.authmap:display:default:display_options:title" +msgid "External authentication links" +msgstr "External authentication links" + +msgctxt "views.view.authmap:display:default:display_options:fields:authname:label" +msgid "Authentication Name" +msgstr "Authentication Name" + +msgctxt "views.view.authmap:display:default:display_options:fields:uid:label" +msgid "Drupal User ID" +msgstr "Drupal User ID" + +msgctxt "views.view.authmap:display:default:display_options:fields:uid:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.authmap:display:default:display_options:fields:name:label" +msgid "Drupal User Name" +msgstr "Drupal User Name" + +msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:label" +msgid "delete" +msgstr "delete" + +msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:text" +msgid "delete" +msgstr "delete" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.authmap:display:default:display_options:empty:area_text_custom:content" +msgid "No links (from Authentication name to Drupal user) found." +msgstr "No links (from Authentication name to Drupal user) found." + +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:title" +msgid "Links for {{ arguments.provider_field }}" +msgstr "Links for {{ arguments.provider_field }}" + +msgctxt "views.view.authmap:display:default:display_options:filters:authname:expose:label" +msgid "Authentication name" +msgstr "Authentication name" + +msgctxt "views.view.authmap:display:default:display_options:filters:uid:expose:label" +msgid "Drupal user" +msgstr "Drupal user" + +msgctxt "views.view.authmap:display:page:display_title" +msgid "Page" +msgstr "Page" + +msgctxt "views.view.authmap:display:page:display_options:menu:title" +msgid "External" +msgstr "External" + +msgctxt "views.view.autocompletion_callbacks_nodes:label" +msgid "Nodes Autocompletion Callbacks" +msgstr "Nodes Autocompletion Callbacks" + +msgctxt "views.view.autocompletion_callbacks_nodes:description" +msgid "" +"This vew is used to store default nodes autocompletion callbacks for " +"Search Autocomplete module." +msgstr "" +"This vew is used to store default nodes autocompletion callbacks for " +"Search Autocomplete module." + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:fields:nothing:alter:text" +msgid "by {{ name }} | {{ created }}" +msgstr "by {{ name }} | {{ created }}" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:next" +msgid "næste ›" +msgstr "næste ›" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" +msgstr "‹ forrige" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:first" +msgid "« første" +msgstr "« første" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:last" +msgid "sidste »" +msgstr "sidste »" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:filters:combine:expose:label" +msgid "Search" +msgstr "Search" + +msgctxt "views.view.autocompletion_callbacks_nodes:display:nodes_autocompletion_callback:display_title" +msgid "Nodes Autocompletion Callback" +msgstr "Nodes Autocompletion Callback" + +msgctxt "views.view.block_content:label" +msgid "Brugerdefineret blokbibliotek" +msgstr "Brugerdefineret blokbibliotek" + +msgctxt "views.view.block_content:description" +msgid "Find og håndtér brugerdefinerede blokke." +msgstr "Find og håndtér brugerdefinerede blokke." + +msgctxt "views.view.block_content:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.block_content:display:default:display_options:title" +msgid "Brugerdefineret blokbibliotek" +msgstr "Brugerdefineret blokbibliotek" + +msgctxt "views.view.block_content:display:default:display_options:fields:info:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "views.view.block_content:display:default:display_options:fields:type:label" +msgid "Bloktype" +msgstr "Bloktype" + +msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "Opdateret" + +msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "Handlinger" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "‹ Forrige" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.block_content:display:default:display_options:empty:area_text_custom:content" +msgid "There are no custom blocks available." +msgstr "There are no custom blocks available." + +msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" +msgid "Beskrivelse" +msgstr "Beskrivelse" + +msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" +msgid "Bloktype" +msgstr "Bloktype" + +msgctxt "views.view.block_content:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.block_content:display:page_1:display_options:menu:title" +msgid "Brugerdefineret blokbibliotek" +msgstr "Brugerdefineret blokbibliotek" + +msgctxt "views.view.block_content:display:page_1:display_options:menu:description" +msgid "Create and edit block content." +msgstr "Create and edit block content." + +msgctxt "views.view.citizen_proposal_support:label" +msgid "Citizen proposal support" +msgstr "Citizen proposal support" + +msgctxt "views.view.citizen_proposal_support:display:default:display_title" +msgid "Default" +msgstr "Default" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:title" +msgid "Citizen proposal support" +msgstr "Citizen proposal support" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_name:label" +msgid "Navn" +msgstr "Navn" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_email:label" +msgid "E-mail" +msgstr "E-mail" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:label" +msgid "Tillad e-mail" +msgstr "Tillad e-mail" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 'ja' }}" +msgstr "{{ allow_email ? 'ja' }}" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:label" +msgid "Dato og tid" +msgstr "Dato og tid" + +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 "{{ created|date('Y-m-d H:i:s', 'Europe/Copenhagen') }}" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:arguments:node_id:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.citizen_proposal_support:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" +msgstr "Displaying @start - @end of @total" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_title" +msgid "Data export (XLSX)" +msgstr "Data export (XLSX)" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_name:label" +msgid "Navn" +msgstr "Navn" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_email:label" +msgid "E-mail" +msgstr "E-mail" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:label" +msgid "Tillad e-mail" +msgstr "Tillad e-mail" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 1 }}" +msgstr "{{ allow_email ? 1 }}" + +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.citizen_proposal_support:display:page_1:display_title" +msgid "Page" +msgstr "Page" + +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 "

Dette borgerforslag har endnu ingen støtter.

" + +msgctxt "views.view.content:label" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "views.view.content:description" +msgid "Find og håndtér indhold." +msgstr "Find og håndtér indhold." + +msgctxt "views.view.content:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.content:display:default:display_options:title" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "views.view.content:display:default:display_options:fields:title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "views.view.content:display:default:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "Indholdstype" + +msgctxt "views.view.content:display:default:display_options:fields:field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "views.view.content:display:default:display_options:fields:name:label" +msgid "Forfatter" +msgstr "Forfatter" + +msgctxt "views.view.content:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" +msgstr "Ikke udgivet" + +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "Udgivet" + +msgctxt "views.view.content:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "Opdateret" + +msgctxt "views.view.content:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "Handlinger" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "‹ Forrige" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "« Første" + +msgctxt "views.view.content:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "Sidste »" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." +msgstr "Der er intet indhold at vise." + +msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "views.view.content:display:default:display_options:filters:type:expose:label" +msgid "Indholdstype" +msgstr "Indholdstype" + +msgctxt "views.view.content:display:default:display_options:filters:status:expose:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:label" +msgid "Publiceringsstatus" +msgstr "Publiceringsstatus" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Udgivet" +msgstr "Udgivet" + +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Ikke udgivet" +msgstr "Ikke udgivet" + +msgctxt "views.view.content:display:default:display_options:filters:langcode:expose:label" +msgid "Sprog" +msgstr "Sprog" + +msgctxt "views.view.content:display:data_export_1:display_title" +msgid "Data export" +msgstr "Data export" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:node_bulk_form:action_title" +msgid "Handling" +msgstr "Handling" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "Indholdstype" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:name:label" +msgid "Forfatter" +msgstr "Forfatter" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" +msgstr "Ikke udgivet" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "Udgivet" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "Opdateret" + +msgctxt "views.view.content:display:data_export_1:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "Handlinger" + +msgctxt "views.view.content:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.content:display:page_1:display_options:menu:title" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "views.view.content:display:page_1:display_options:tab_options:title" +msgid "Indhold" +msgstr "Indhold" + +msgctxt "views.view.content:display:page_1:display_options:tab_options:description" +msgid "Find og håndtér indhold" +msgstr "Find og håndtér indhold" + +msgctxt "views.view.content_recent:label" +msgid "Seneste indhold" +msgstr "Seneste indhold" + +msgctxt "views.view.content_recent:description" +msgid "Seneste indhold." +msgstr "Seneste indhold." + +msgctxt "views.view.content_recent:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.content_recent:display:default:display_options:title" +msgid "Seneste indhold" +msgstr "Seneste indhold" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.content_recent:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." +msgstr "Der er intet indhold at vise." + +msgctxt "views.view.content_recent:display:default:display_options:use_more_text" +msgid "Mere" +msgstr "Mere" + +msgctxt "views.view.content_recent:display:block_1:display_title" +msgid "Blok" +msgstr "Blok" + +msgctxt "views.view.files:label" +msgid "Filer" +msgstr "Filer" + +msgctxt "views.view.files:description" +msgid "Find og håndtér filer." +msgstr "Find og håndtér filer." + +msgctxt "views.view.files:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.files:display:default:display_options:title" +msgid "Filer" +msgstr "Filer" + +msgctxt "views.view.files:display:default:display_options:fields:fid:label" +msgid "Fid" +msgstr "Fid" + +msgctxt "views.view.files:display:default:display_options:fields:filename:label" +msgid "Navn" +msgstr "Navn" + +msgctxt "views.view.files:display:default:display_options:fields:filemime:label" +msgid "MIME type" +msgstr "MIME type" + +msgctxt "views.view.files:display:default:display_options:fields:filesize:label" +msgid "Størrelse" +msgstr "Størrelse" + +msgctxt "views.view.files:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Midlertidig" +msgstr "Midlertidig" + +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Permanent" +msgstr "Permanent" + +msgctxt "views.view.files:display:default:display_options:fields:created:label" +msgid "Upload-dato" +msgstr "Upload-dato" + +msgctxt "views.view.files:display:default:display_options:fields:changed:label" +msgid "Ændringsdato" +msgstr "Ændringsdato" + +msgctxt "views.view.files:display:default:display_options:fields:count:label" +msgid "Brugt i" +msgstr "Brugt i" + +msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" +msgid "admin/content/files/usage/{{ fid }}" +msgstr "admin/content/files/usage/{{ fid }}" + +msgctxt "views.view.files:display:default:display_options:fields:count:format_plural_string" +msgid "1 place\003@count places" +msgstr "1 place\003@count places" + +msgctxt "views.view.files:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.files:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "‹ Forrige" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.files:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" +msgid "Ingen tilgængelige filer." +msgstr "Ingen tilgængelige filer." + +msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" +msgid "Filnavn" +msgstr "Filnavn" + +msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" +msgid "MIME type" +msgstr "MIME type" + +msgctxt "views.view.files:display:default:display_options:filters:status:expose:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.files:display:page_1:display_title" +msgid "Filoversigt" +msgstr "Filoversigt" + +msgctxt "views.view.files:display:page_1:display_options:menu:title" +msgid "Filer" +msgstr "Filer" + +msgctxt "views.view.files:display:page_2:display_title" +msgid "File usage" +msgstr "File usage" + +msgctxt "views.view.files:display:page_2:display_options:title" +msgid "File usage" +msgstr "File usage" + +msgctxt "views.view.files:display:page_2:display_options:fields:entity_label:label" +msgid "Entity" +msgstr "Entity" + +msgctxt "views.view.files:display:page_2:display_options:fields:type:label" +msgid "Entity-type" +msgstr "Entity-type" + +msgctxt "views.view.files:display:page_2:display_options:fields:module:label" +msgid "Registrerer modul" +msgstr "Registrerer modul" + +msgctxt "views.view.files:display:page_2:display_options:fields:count:label" +msgid "Brug antal" +msgstr "Brug antal" + +msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" +msgid "1\003@count" +msgstr "1\003@count" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "‹ Forrige" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:exception:title" +msgid "Alle" +msgstr "Alle" + +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" +msgid "Information om brug af filen {{ arguments.fid }}" +msgstr "Information om brug af filen {{ arguments.fid }}" + +msgctxt "views.view.form_list_active_projects:label" +msgid "Form list - Active projects" +msgstr "Form list - Active projects" + +msgctxt "views.view.form_list_active_projects:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:fields:nid:alter:text" +msgid "(Indholds ID: {{ nid }})" +msgstr "(Indholds ID: {{ nid }})" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.form_list_active_projects:display:entity_reference_1:display_title" +msgid "Entity Reference" +msgstr "Entity Reference" + +msgctxt "views.view.glossary:label" +msgid "Ordliste" +msgstr "Ordliste" + +msgctxt "views.view.glossary:description" +msgid "Alt indhold efter forbogstav." +msgstr "Alt indhold efter forbogstav." + +msgctxt "views.view.glossary:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.glossary:display:default:display_options:fields:title:label" +msgid "Titel" +msgstr "Titel" + +msgctxt "views.view.glossary:display:default:display_options:fields:name:label" +msgid "Forfatter" +msgstr "Forfatter" + +msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" +msgid "Seneste opdatering" +msgstr "Seneste opdatering" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.glossary:display:attachment_1:display_title" +msgid "Bilag" +msgstr "Bilag" + +msgctxt "views.view.glossary:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.glossary:display:page_1:display_options:menu:title" +msgid "Ordliste" +msgstr "Ordliste" + +msgctxt "views.view.hearings_related_to_project:label" +msgid "Hearings related to project" +msgstr "Hearings related to project" + +msgctxt "views.view.hearings_related_to_project:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:title" +msgid "Hearings related to project" +msgstr "Hearings related to project" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.hearings_related_to_project:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.hearings_related_to_project:display:block_1:display_title" +msgid "Block" +msgstr "Block" + +msgctxt "views.view.heyloyalty_feed:label" +msgid "Heyloyalty feed" +msgstr "Heyloyalty feed" + +msgctxt "views.view.heyloyalty_feed:display:default:display_title" +msgid "Default" +msgstr "Default" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:view_node:text" +msgid "vis" +msgstr "vis" + +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 "{{ url('')|render ~ field_itk_media_image_upload|trim('/') }}" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:field_itk_media_image_upload:alter:path" +msgid "{{ field_itk_media_image_upload }}" +msgstr "{{ field_itk_media_image_upload }}" + +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 "{{ url('')|render ~ field_itk_media_image_upload_1|trim('/') }}" + +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 %}\r\n" +"Tom\r\n" +"{% else " +"%}\r\n" +"{{ url('')|render }}{{ " +"field_itk_media_image_upload|trim('/') }}{{ " +"field_itk_media_image_upload_1|trim('/') }}\r\n" +"{% endif %}" +msgstr "" +"{% if field_itk_media_image_upload is empty and " +"field_itk_media_image_upload_1 is empty %}\r\n" +"Tom\r\n" +"{% else " +"%}\r\n" +"{{ url('')|render }}{{ " +"field_itk_media_image_upload|trim('/') }}{{ " +"field_itk_media_image_upload_1|trim('/') }}\r\n" +"{% endif %}" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.heyloyalty_feed:display:rest_export_1:display_title" +msgid "REST export" +msgstr "REST export" + +msgctxt "views.view.itk_media:label" +msgid "ITK Media" +msgstr "ITK Media" + +msgctxt "views.view.itk_media:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.itk_media:display:default:display_options:title" +msgid "Medier" +msgstr "Medier" + +msgctxt "views.view.itk_media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" +msgstr "Thumbnail" + +msgctxt "views.view.itk_media:display:default:display_options:fields:name:label" +msgid "Medie navn" +msgstr "Medie navn" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_file_upload:alter:text" +msgid "{{ 'Document'|t }}" +msgstr "{{ 'Document'|t }}" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:alter:text" +msgid "{{ 'Image'|t }}" +msgstr "{{ 'Image'|t }}" + +msgctxt "views.view.itk_media:display:default:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "Opdateret" + +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Mærkat" +msgstr "Mærkat" + +msgctxt "views.view.itk_media:display:default:display_options:fields:operations:label" +msgid "Funktioner" +msgstr "Funktioner" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Tidligere" +msgstr "‹ Tidligere" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "« Første" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "Sidste »" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filtrér" +msgstr "Filtrér" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.itk_media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." +msgstr "No content available." + +msgctxt "views.view.itk_media:display:default:display_options:filters:name:expose:label" +msgid "Medie navn" +msgstr "Medie navn" + +msgctxt "views.view.itk_media:display:default:display_options:filters:bundle:expose:label" +msgid "Medie type" +msgstr "Medie type" + +msgctxt "views.view.itk_media:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Mærkat" +msgstr "Mærkat" + +msgctxt "views.view.itk_media:display:media_page_list:display_title" +msgid "Medier" +msgstr "Medier" + +msgctxt "views.view.itk_media:display:media_page_list:display_options:menu:title" +msgid "Medier" +msgstr "Medier" + +msgctxt "views.view.itk_media_browser:label" +msgid "ITK media browser" +msgstr "ITK media browser" + +msgctxt "views.view.itk_media_browser:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.itk_media_browser:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil søgning" +msgstr "Nulstil søgning" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.itk_media_browser:display:default:display_options:filters:combine:expose:label" +msgid "Search for documents" +msgstr "Search for documents" + +msgctxt "views.view.itk_media_browser:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_title" +msgid "Entity browser" +msgstr "Entity browser" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:combine:expose:label" +msgid "Search for documents" +msgstr "Search for documents" + +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_title" +msgid "Image browser" +msgstr "Image browser" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:name_1:label" +msgid "Navn" +msgstr "Navn" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:combine:expose:label" +msgid "Search for images" +msgstr "Search for images" + +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Tag" +msgstr "Tag" + +msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" +msgid "File browser" +msgstr "File browser" + +msgctxt "views.view.media:label" +msgid "Media" +msgstr "Media" + +msgctxt "views.view.media:display:default:display_title" +msgid "Default" +msgstr "Default" + +msgctxt "views.view.media:display:default:display_options:title" +msgid "Media" +msgstr "Media" + +msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" +msgstr "Thumbnail" + +msgctxt "views.view.media:display:default:display_options:fields:name:label" +msgid "Media name" +msgstr "Media name" + +msgctxt "views.view.media:display:default:display_options:fields:bundle:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.media:display:default:display_options:fields:uid:label" +msgid "Author" +msgstr "Author" + +msgctxt "views.view.media:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Unpublished" +msgstr "Unpublished" + +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Published" +msgstr "Published" + +msgctxt "views.view.media:display:default:display_options:fields:changed:label" +msgid "Updated" +msgstr "Updated" + +msgctxt "views.view.media:display:default:display_options:fields:operations:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" +msgid "Next ›" +msgstr "Next ›" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Previous" +msgstr "‹ Previous" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." +msgstr "No content available." + +msgctxt "views.view.media:display:default:display_options:filters:status:expose:label" +msgid "Sandt" +msgstr "Sandt" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" +msgid "Published status" +msgstr "Published status" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Published" +msgstr "Published" + +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Unpublished" +msgstr "Unpublished" + +msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.media:display:default:display_options:filters:name:expose:label" +msgid "Media name" +msgstr "Media name" + +msgctxt "views.view.media:display:default:display_options:filters:langcode:expose:label" +msgid "Language" +msgstr "Language" + +msgctxt "views.view.media:display:media_page_list:display_title" +msgid "Media" +msgstr "Media" + +msgctxt "views.view.media:display:media_page_list:display_options:menu:title" +msgid "Media" +msgstr "Media" + +msgctxt "views.view.nearest_hearings:label" +msgid "Nearest hearings" +msgstr "Nearest hearings" + +msgctxt "views.view.nearest_hearings:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.nearest_hearings:display:default:display_options:title" +msgid "Nearest hearings" +msgstr "Nearest hearings" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.nearest_hearings:display:block_1:display_title" +msgid "Block" +msgstr "Block" + +msgctxt "views.view.redirect:label" +msgid "Redirect" +msgstr "Redirect" + +msgctxt "views.view.redirect:description" +msgid "List of redirects" +msgstr "List of redirects" + +msgctxt "views.view.redirect:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.redirect:display:default:display_options:title" +msgid "Redirect" +msgstr "Redirect" + +msgctxt "views.view.redirect:display:default:display_options:fields:redirect_bulk_form:action_title" +msgid "With selection" +msgstr "With selection" + +msgctxt "views.view.redirect:display:default:display_options:fields:redirect_source__path:label" +msgid "Fra" +msgstr "Fra" + +msgctxt "views.view.redirect:display:default:display_options:fields:created:label" +msgid "Oprettet" +msgstr "Oprettet" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:next" +msgid "næste ›" +msgstr "næste ›" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" +msgstr "‹ forrige" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:first" +msgid "« første" +msgstr "« første" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:last" +msgid "sidste »" +msgstr "sidste »" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.redirect:display:default:display_options:empty:area_text_custom:content" +msgid "There is no redirect yet." +msgstr "There is no redirect yet." + +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_source__path:expose:label" +msgid "Fra" +msgstr "Fra" + +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_redirect__uri:expose:label" +msgid "Til" +msgstr "Til" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:expose:label" +msgid "Status code" +msgstr "Status code" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:label" +msgid "Status code" +msgstr "Status code" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:1:title" +msgid "300 Multiple Choices" +msgstr "300 Multiple Choices" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:2:title" +msgid "301 Moved Permanently" +msgstr "301 Moved Permanently" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:3:title" +msgid "302 Found" +msgstr "302 Found" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:4:title" +msgid "303 See Other" +msgstr "303 See Other" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:5:title" +msgid "304 Not Modified" +msgstr "304 Not Modified" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:6:title" +msgid "305 Use Proxy" +msgstr "305 Use Proxy" + +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:7:title" +msgid "307 Temporary Redirect" +msgstr "307 Temporary Redirect" + +msgctxt "views.view.redirect:display:default:display_options:filters:language:expose:label" +msgid "Originalt sprog" +msgstr "Originalt sprog" + +msgctxt "views.view.redirect:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.search_db:label" +msgid "search_db" +msgstr "search_db" + +msgctxt "views.view.search_db:display:default:display_title" +msgid "Default" +msgstr "Default" + +msgctxt "views.view.search_db:display:default:display_options:title" +msgid "Search" +msgstr "Search" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:submit_button" +msgid "Søg" +msgstr "Søg" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil" +msgstr "Nulstil" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +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 "Select any filter and click on Apply to see results" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "citizen_proposal_content" +msgstr "citizen_proposal_content" + +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "Advanced options" + +msgctxt "views.view.search_db:display:default:display_options:empty:display_link:label" +msgid "No results" +msgstr "No results" + +msgctxt "views.view.search_db:display:default:display_options:sorts:search_api_relevance:expose:label" +msgid "Relevance" +msgstr "Relevance" + +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:label" +msgid "Søg" +msgstr "Søg" + +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:placeholder" +msgid "Søg …" +msgstr "Søg …" + +msgctxt "views.view.search_db:display:default:display_options:header:result:content" +msgid "Displaying @start–@end of @total" +msgstr "Displaying @start–@end of @total" + +msgctxt "views.view.search_db:display:page_1:display_title" +msgid "Page" +msgstr "Page" + +msgctxt "views.view.taxonomy_term:label" +msgid "Ord i ordforråd" +msgstr "Ord i ordforråd" + +msgctxt "views.view.taxonomy_term:description" +msgid "Indhold som er knyttet til en bestemt term." +msgstr "Indhold som er knyttet til en bestemt term." + +msgctxt "views.view.taxonomy_term:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:exception:title" +msgid "Alle" +msgstr "Alle" + +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:title" +msgid "{{ arguments.tid }}" +msgstr "{{ arguments.tid }}" + +msgctxt "views.view.taxonomy_term:display:feed_1:display_title" +msgid "Feed" +msgstr "Feed" + +msgctxt "views.view.taxonomy_term:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.timeline_related_items:label" +msgid "Timeline related items" +msgstr "Timeline related items" + +msgctxt "views.view.timeline_related_items:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.timeline_related_items:display:default:display_options:title" +msgid "Timeline related items" +msgstr "Timeline related items" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.timeline_related_items:display:block_1:display_title" +msgid "Block" +msgstr "Block" + +msgctxt "views.view.user_admin_people:label" +msgid "Personer" +msgstr "Personer" + +msgctxt "views.view.user_admin_people:description" +msgid "Find og håndtér personer som bruger dit site." +msgstr "Find og håndtér personer som bruger dit site." + +msgctxt "views.view.user_admin_people:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.user_admin_people:display:default:display_options:title" +msgid "Personer" +msgstr "Personer" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:user_bulk_form:label" +msgid "Masseopdatering" +msgstr "Masseopdatering" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:name:label" +msgid "Brugernavn" +msgstr "Brugernavn" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Blokeret" +msgstr "Blokeret" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Aktiv" +msgstr "Aktiv" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" +msgid "Roller" +msgstr "Roller" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" +msgid "Medlem i" +msgstr "Medlem i" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" +msgid "Seneste tilgang" +msgstr "Seneste tilgang" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "@interval hence" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "@interval ago" + +msgctxt "views.view.user_admin_people:display:default:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "Handlinger" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" +msgstr "Næste ›" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" +msgstr "‹ Forrige" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:first" +msgid "« Første" +msgstr "« Første" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" +msgstr "Sidste »" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" +msgstr "Antal elementer" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" +msgstr "- Alle -" + +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" +msgstr "Forskydning" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.user_admin_people:display:default:display_options:empty:area_text_custom:content" +msgid "Ingen personer til rådighed." +msgstr "Ingen personer til rådighed." + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" +msgid "Navn eller e-mail indeholder" +msgstr "Navn eller e-mail indeholder" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Aktiv" +msgstr "Aktiv" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Blokeret" +msgstr "Blokeret" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" +msgid "Rolle" +msgstr "Rolle" + +msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" +msgid "Tilladelse" +msgstr "Tilladelse" + +msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" +msgid "mere" +msgstr "mere" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_title" +msgid "Data export (CSV)" +msgstr "Data export (CSV)" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:name:label" +msgid "Username" +msgstr "Username" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" +msgstr "Blocked" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Active" +msgstr "Active" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:roles_target_id:label" +msgid "Roles" +msgstr "Roles" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:label" +msgid "Member for" +msgstr "Member for" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:label" +msgid "Last access" +msgstr "Last access" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "@interval hence" + +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "@interval ago" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_title" +msgid "Data export (XLSX)" +msgstr "Data export (XLSX)" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:name:label" +msgid "Username" +msgstr "Username" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:label" +msgid "Status" +msgstr "Status" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" +msgstr "Blocked" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Active" +msgstr "Active" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:roles_target_id:label" +msgid "Roles" +msgstr "Roles" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:field_department:label" +msgid "Department" +msgstr "Department" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:label" +msgid "Member for" +msgstr "Member for" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:future_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:past_format" +msgid "@interval" +msgstr "@interval" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:label" +msgid "Last access" +msgstr "Last access" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:future_format" +msgid "@interval hence" +msgstr "@interval hence" + +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:past_format" +msgid "@interval ago" +msgstr "@interval ago" + +msgctxt "views.view.user_admin_people:display:page_1:display_title" +msgid "Side" +msgstr "Side" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" +msgid "Vis" +msgstr "Vis" + +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 "Find og håndtér personer som bruger dit site." + +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" +msgid "Personer" +msgstr "Personer" + +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" +msgid "Håndtér brugerkonti, roller og tilladelser." +msgstr "Håndtér brugerkonti, roller og tilladelser." + +msgctxt "views.view.video_display:label" +msgid "Video display" +msgstr "Video display" + +msgctxt "views.view.video_display:description" +msgid "Display a video attached to a node" +msgstr "Display a video attached to a node" + +msgctxt "views.view.video_display:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.video_display:display:default:display_options:arguments:nid:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.video_display:display:default:display_options:arguments:delta:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.video_display:display:page_1:display_title" +msgid "Page" +msgstr "Page" + +msgctxt "views.view.watchdog:label" +msgid "Watchdog" +msgstr "Watchdog" + +msgctxt "views.view.watchdog:description" +msgid "Recent log messages" +msgstr "Recent log messages" + +msgctxt "views.view.watchdog:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.watchdog:display:default:display_options:title" +msgid "Recent log messages" +msgstr "Recent log messages" + +msgctxt "views.view.watchdog:display:default:display_options:fields:nothing:admin_label" +msgid "Icon" +msgstr "Icon" + +msgctxt "views.view.watchdog:display:default:display_options:fields:wid:label" +msgid "WID" +msgstr "WID" + +msgctxt "views.view.watchdog:display:default:display_options:fields:severity:label" +msgid "Severity" +msgstr "Severity" + +msgctxt "views.view.watchdog:display:default:display_options:fields:type:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.watchdog:display:default:display_options:fields:timestamp:label" +msgid "Date" +msgstr "Date" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:label" +msgid "Message" +msgstr "Message" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:path" +msgid "admin/reports/dblog/event/{{ wid }}" +msgstr "admin/reports/dblog/event/{{ wid }}" + +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:alt" +msgid "{{ message }}" +msgstr "{{ message }}" + +msgctxt "views.view.watchdog:display:default:display_options:fields:name:label" +msgid "User" +msgstr "User" + +msgctxt "views.view.watchdog:display:default:display_options:fields:link:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "Filter" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.watchdog:display:default:display_options:empty:area:admin_label" +msgid "No log messages available." +msgstr "No log messages available." + +msgctxt "views.view.watchdog:display:default:display_options:empty:area:content" +msgid "No log messages available." +msgstr "No log messages available." + +msgctxt "views.view.watchdog:display:default:display_options:filters:type:expose:label" +msgid "Type" +msgstr "Type" + +msgctxt "views.view.watchdog:display:default:display_options:filters:severity:expose:label" +msgid "Severity" +msgstr "Severity" + +msgctxt "views.view.watchdog:display:page:display_title" +msgid "Page" +msgstr "Page" + +msgctxt "views.view.webform_submissions:label" +msgid "Webform submissions" +msgstr "Webform submissions" + +msgctxt "views.view.webform_submissions:description" +msgid "Default webform submissions views." +msgstr "Default webform submissions views." + +msgctxt "views.view.webform_submissions:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.webform_submissions:display:default:display_options:title" +msgid "Webform submissions" +msgstr "Webform submissions" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:sid:label" +msgid "#" +msgstr "#" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "Draft" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:created:label" +msgid "Oprettet" +msgstr "Oprettet" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "IP address" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "view" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "« First" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "Last »" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" +msgstr "Items per page" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" +msgstr "- All -" + +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "Offset" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "Apply" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" +msgstr "Sort by" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "Asc" + +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "Desc" + +msgctxt "views.view.webform_submissions:display:default:display_options:empty:area_text_custom:content" +msgid "No submissions available." +msgstr "No submissions available." + +msgctxt "views.view.webform_submissions:display:default:display_options:arguments:in_draft:exception:title" +msgid "All" +msgstr "All" + +msgctxt "views.view.webform_submissions:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" +msgstr "Displaying @start - @end of @total" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_title" +msgid "Embed: Administer" +msgstr "Embed: Administer" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" +msgstr "Webform submission operations bulk form" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" +msgstr "Handling" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sid:label" +msgid "#" +msgstr "#" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "Draft" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:locked:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:created:label" +msgid "Oprettet" +msgstr "Oprettet" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:completed:label" +msgid "Completed" +msgstr "Completed" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "IP address" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:operations:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "Is draft" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:display_description" +msgid "Administer submissions." +msgstr "Administer submissions." + +msgctxt "views.view.webform_submissions:display:embed_default:display_title" +msgid "Embed: Default" +msgstr "Embed: Default" + +msgctxt "views.view.webform_submissions:display:embed_default:display_options:display_description" +msgid "Display submissions." +msgstr "Display submissions." + +msgctxt "views.view.webform_submissions:display:embed_manage:display_title" +msgid "Embed: Manage" +msgstr "Embed: Manage" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" +msgstr "Webform submission operations bulk form" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" +msgstr "Handling" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sid:label" +msgid "#" +msgstr "#" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "Draft" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:locked:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:created:label" +msgid "Oprettet" +msgstr "Oprettet" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:completed:label" +msgid "Completed" +msgstr "Completed" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "IP address" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "view" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:text" +msgid "edit" +msgstr "edit" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "Is draft" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:display_description" +msgid "Manage submissions." +msgstr "Manage submissions." + +msgctxt "views.view.webform_submissions:display:embed_review:display_title" +msgid "Embed: Review" +msgstr "Embed: Review" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sid:label" +msgid "#" +msgstr "#" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:in_draft:label" +msgid "Draft" +msgstr "Draft" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sticky:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:locked:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:created:label" +msgid "Oprettet" +msgstr "Oprettet" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:completed:label" +msgid "Completed" +msgstr "Completed" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:remote_addr:label" +msgid "IP address" +msgstr "IP address" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:label" +msgid "Operations" +msgstr "Operations" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:text" +msgid "view" +msgstr "view" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:in_draft:expose:label" +msgid "Is draft" +msgstr "Is draft" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:sticky:expose:label" +msgid "Sticky" +msgstr "Sticky" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:locked:expose:label" +msgid "Locked" +msgstr "Locked" + +msgctxt "views.view.webform_submissions:display:embed_review:display_options:display_description" +msgid "Review submissions." +msgstr "Review submissions." + +msgctxt "views.view.who_s_new:label" +msgid "Nye brugere" +msgstr "Nye brugere" + +msgctxt "views.view.who_s_new:description" +msgid "Viser en liste af de nyeste brugerkonti på sitet." +msgstr "Viser en liste af de nyeste brugerkonti på sitet." + +msgctxt "views.view.who_s_new:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.who_s_new:display:default:display_options:title" +msgid "Nye brugere" +msgstr "Nye brugere" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.who_s_new:display:block_1:display_title" +msgid "Nye brugere" +msgstr "Nye brugere" + +msgctxt "views.view.who_s_new:display:block_1:display_options:display_description" +msgid "En liste af nye brugere" +msgstr "En liste af nye brugere" + +msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" +msgid "Nye brugere" +msgstr "Nye brugere" + +msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" +msgid "Bruger" +msgstr "Bruger" + +msgctxt "views.view.who_s_online:label" +msgid "Who's online block" +msgstr "Who's online block" + +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 "" +"Viser navnene på de brugere, der senste har været aktive, og det " +"totale antal af aktive brugere." + +msgctxt "views.view.who_s_online:display:default:display_title" +msgid "Master" +msgstr "Master" + +msgctxt "views.view.who_s_online:display:default:display_options:title" +msgid "Hvem er online" +msgstr "Hvem er online" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" +msgstr "Udfør" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" +msgstr "Gendan" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" +msgstr "Sortér efter" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" +msgstr "Stigende" + +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" +msgstr "Faldende" + +msgctxt "views.view.who_s_online:display:default:display_options:empty:area_text_custom:content" +msgid "Der er i øjeblikket 0 brugere online." +msgstr "Der er i øjeblikket 0 brugere online." + +msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" +msgid "Seneste tilgang" +msgstr "Seneste tilgang" + +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 "" +"En bruger bliver opfattet som online i dette tidsrum efter hun sidst " +"har set en side." + +msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" +msgid "Der er i øjeblikket @total brugere online." +msgstr "Der er i øjeblikket @total brugere online." + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" +msgid "Hvem er online" +msgstr "Hvem er online" + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:display_description" +msgid "En liste af indloggede brugere." +msgstr "En liste af indloggede brugere." + +msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" +msgid "Hvem er online" +msgstr "Hvem er online" + +msgctxt "webform.settings:settings:default_submit_button_label" +msgid "Submit" +msgstr "Submit" + +msgctxt "webform.settings:settings:default_reset_button_label" +msgid "Reset" +msgstr "Reset" + +msgctxt "webform.settings:settings:default_delete_button_label" +msgid "Delete" +msgstr "Delete" + +msgctxt "webform.settings:settings:default_form_open_message" +msgid "This form has not yet been opened to submissions." +msgstr "This form has not yet been opened to submissions." + +msgctxt "webform.settings:settings:default_form_close_message" +msgid "Sorry… This form is closed to new submissions." +msgstr "Sorry… This form is closed to new submissions." + +msgctxt "webform.settings:settings:default_form_exception_message" +msgid "Unable to display this webform. Please contact the site administrator." +msgstr "Unable to display this webform. Please contact the site administrator." + +msgctxt "webform.settings:settings:default_form_confidential_message" +msgid "" +"This form is confidential. You must Log " +"out to submit it." +msgstr "" +"This form is confidential. You must Log " +"out to submit it." + +msgctxt "webform.settings:settings:default_form_access_denied_message" +msgid "Please login to access this form." +msgstr "Please login to access this form." + +msgctxt "webform.settings:settings:default_form_required_label" +msgid "Indicates required field" +msgstr "Indicates required field" + +msgctxt "webform.settings:settings:default_wizard_prev_button_label" +msgid "< Previous" +msgstr "< Previous" + +msgctxt "webform.settings:settings:default_wizard_next_button_label" +msgid "Next >" +msgstr "Next >" + +msgctxt "webform.settings:settings:default_wizard_start_label" +msgid "Start" +msgstr "Start" + +msgctxt "webform.settings:settings:default_wizard_confirmation_label" +msgid "Complete" +msgstr "Complete" + +msgctxt "webform.settings:settings:default_wizard_toggle_show_label" +msgid "Show all" +msgstr "Show all" + +msgctxt "webform.settings:settings:default_wizard_toggle_hide_label" +msgid "Hide all" +msgstr "Hide all" + +msgctxt "webform.settings:settings:default_preview_next_button_label" +msgid "Gennemse" +msgstr "Gennemse" + +msgctxt "webform.settings:settings:default_preview_prev_button_label" +msgid "< Previous" +msgstr "< Previous" + +msgctxt "webform.settings:settings:default_preview_label" +msgid "Gennemse" +msgstr "Gennemse" + +msgctxt "webform.settings:settings:default_preview_title" +msgid "[webform:title]: Preview" +msgstr "[webform:title]: Preview" + +msgctxt "webform.settings:settings:default_preview_message" +msgid "" +"Please review your submission. Your submission is not complete until " +"you press the \"Submit\" button!" +msgstr "" +"Please review your submission. Your submission is not complete until " +"you press the \"Submit\" button!" + +msgctxt "webform.settings:settings:default_draft_button_label" +msgid "Save Draft" +msgstr "Save Draft" + +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 "" +"Submission saved. You may return to this form later and it will " +"restore the current values." + +msgctxt "webform.settings:settings:default_draft_loaded_message" +msgid "" +"A partially-completed form was found. Please complete the remaining " +"portions." +msgstr "" +"A partially-completed form was found. Please complete the remaining " +"portions." + +msgctxt "webform.settings:settings:default_draft_pending_single_message" +msgid "" +"You have a pending draft for this webform. Load your " +"pending draft." +msgstr "" +"You have a pending draft for this webform. Load your " +"pending draft." + +msgctxt "webform.settings:settings:default_draft_pending_multiple_message" +msgid "" +"You have pending drafts for this webform. View your " +"pending drafts." +msgstr "" +"You have pending drafts for this webform. View your " +"pending drafts." + +msgctxt "webform.settings:settings:default_confirmation_message" +msgid "New submission added to [webform:title]." +msgstr "New submission added to [webform:title]." + +msgctxt "webform.settings:settings:default_confirmation_back_label" +msgid "Back to form" +msgstr "Back to form" + +msgctxt "webform.settings:settings:default_limit_total_message" +msgid "No more submissions are permitted." +msgstr "No more submissions are permitted." + +msgctxt "webform.settings:settings:default_limit_user_message" +msgid "No more submissions are permitted." +msgstr "No more submissions are permitted." + +msgctxt "webform.settings:settings:default_submission_label" +msgid "" +"[webform_submission:submitted-to]: Submission " +"#[webform_submission:serial]" +msgstr "" +"[webform_submission:submitted-to]: Submission " +"#[webform_submission:serial]" + +msgctxt "webform.settings:settings:default_submission_access_denied_message" +msgid "Please login to access this submission." +msgstr "Please login to access this submission." + +msgctxt "webform.settings:settings:default_submission_exception_message" +msgid "" +"Unable to process this submission. Please contact the site " +"administrator." +msgstr "" +"Unable to process this submission. Please contact the site " +"administrator." + +msgctxt "webform.settings:settings:default_submission_locked_message" +msgid "This submission has been locked." +msgstr "This submission has been locked." + +msgctxt "webform.settings:settings:default_previous_submission_message" +msgid "" +"You have already submitted this webform. View your " +"previous submission." +msgstr "" +"You have already submitted this webform. View your " +"previous submission." + +msgctxt "webform.settings:settings:default_previous_submissions_message" +msgid "" +"You have already submitted this webform. View your " +"previous submissions." +msgstr "" +"You have already submitted this webform. View your " +"previous submissions." + +msgctxt "webform.settings:settings:default_autofill_message" +msgid "This submission has been autofilled with your previous submission." +msgstr "This submission has been autofilled with your previous submission." + +msgctxt "webform.settings:settings:dialog_options:narrow:title" +msgid "Narrow" +msgstr "Narrow" + +msgctxt "webform.settings:settings:dialog_options:normal:title" +msgid "Normal" +msgstr "Normal" + +msgctxt "webform.settings:settings:dialog_options:wide:title" +msgid "Wide" +msgstr "Wide" + +msgctxt "webform.settings:element:empty_message" +msgid "{Empty}" +msgstr "{Empty}" + +msgctxt "webform.settings:element:default_more_title" +msgid "More" +msgstr "More" + +msgctxt "webform.settings:element:default_section_title_tag" +msgid "h2" +msgstr "h2" + +msgctxt "webform.settings:file:file_private_redirect_message" +msgid "Please login to access the uploaded file." +msgstr "Please login to access the uploaded file." + +msgctxt "webform.settings:mail:default_from_name" +msgid "[site:name]" +msgstr "[site:name]" + +msgctxt "webform.settings:mail:default_subject" +msgid "Webform submission from: [webform_submission:source-title]" +msgstr "Webform submission from: [webform_submission:source-title]" + +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 "" +"Submitted on [webform_submission:created]\n" +"Submitted by: " +"[webform_submission:user]\n" +"\n" +"Submitted values " +"are:\n" +"[webform_submission:values]\n" +"" + +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 "" +"

Submitted on [webform_submission:created]

\n" +"

Submitted by: " +"[webform_submission:user]

\n" +"

Submitted values " +"are:

\n" +"[webform_submission:values]\n" +"" + +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 "" +"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" +"" + +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 "" +"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" +"" + +msgctxt "webform.webform.alder:title" +msgid "Alder" +msgstr "Alder" + +msgctxt "webform.webform.alder:description" +msgid "10-14 år" +msgstr "10-14 år" + +msgctxt "webform.webform.alder:categories:0" +msgid "14-16" +msgstr "14-16" + +msgctxt "webform.webform.alder:elements" +msgid "" +"hvor_gammel_er_du_:\n" +" '#type': checkbox\n" +" '#title': 'Er du over 15 " +"år?'\n" +"skriv_lidt_om_dig_selv:\n" +" '#type': textfield\n" +" '#title': " +"'Skriv lidt om dig selv'" +msgstr "" +"hvor_gammel_er_du_:\n" +" '#type': checkbox\n" +" '#title': 'Er du over 15 " +"år?'\n" +"skriv_lidt_om_dig_selv:\n" +" '#type': textfield\n" +" '#title': " +"'Skriv lidt om dig selv'" + +msgctxt "webform.webform.skriv_lidt_om_dig_selv:title" +msgid "Skriv lidt om dig selv" +msgstr "Skriv lidt om dig selv" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:title" +msgid "Spørgsmål til forslagsstillere" +msgstr "Spørgsmål til forslagsstillere" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:description" +msgid "Denne formular er til forslagsstillere" +msgstr "Denne formular er til forslagsstillere" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:elements" +msgid "" +"hvad_er_din_alder_1:\n" +" '#type': select\n" +" '#title': 'Hvad er din " +"alder?'\n" +" '#options':\n" +" '15-20 år': '15-20 år'\n" +" '21-30 " +"år': '21-30 år'\n" +" '31-40 år': '31-40 år'\n" +" '41-50 år ': " +"'41-50 år '\n" +" '51-60 år ': '51-60 år '\n" +" '61-70 år ': " +"'61-70 år '\n" +" '71 + år ': '71 + år '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"hvad_er_din_laengst_gennemfoerte_uddannelse_hvis_du_er_i_gang_me:\n" +" " +" '#type': select\n" +" '#title': 'Hvad er din længst gennemførte " +"uddannelse? Hvis du er i gang med en uddannelse, skal du vælge den " +"uddannelse, du er i gang med. '\n" +" '#options':\n" +" 'Grundskole, fx " +"folkeskolen ': 'Grundskole, fx folkeskolen '\n" +" 'Gymnasial " +"uddannelse ': 'Gymnasial uddannelse '\n" +" 'Erhvervsuddannelse ': " +"'Erhvervsuddannelse '\n" +" 'Kort eller mellemlang videregående " +"uddannelse ': 'Kort eller mellemlang videregående uddannelse '\n" +" " +"'Lang videregående uddannelse ': 'Lang videregående uddannelse '\n" +" " +" 'Andet ': 'Andet '\n" +" 'Ved ikke': 'Ved ikke'\n" +" '#empty_option': " +"'- Ingen - " +"'\n" +"hvor_stor_tillid_har_du_i_almindelighed_til_aarhus_kommune_:\n" +" " +"'#type': select\n" +" '#title': 'Hvor stor tillid har du i almindelighed " +"til Aarhus Kommune? '\n" +" '#options':\n" +" 'Meget stor tillid ': " +"'Meget stor tillid '\n" +" 'Ret stor tillid ': 'Ret stor tillid '\n" +" " +" 'Ret begrænset tillid ': 'Ret begrænset tillid '\n" +" 'Meget " +"begrænset tillid ': 'Meget begrænset tillid '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"i_hvor_hoej_grad_forventer_du_at_borgerforslag_styrker_din_mulig:\n" +" " +" '#type': select\n" +" '#title': 'I hvor høj grad forventer du, at " +"borgerforslag styrker din mulighed for at få indflydelse? '\n" +" " +"'#options':\n" +" 'I høj grad': 'I høj grad'\n" +" 'I meget høj " +"grad ': 'I meget høj grad '\n" +" 'I lav grad ': 'I lav grad '\n" +" " +"'I meget lav grad ': 'I meget lav grad '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"hvad_forventer_du_konkret_at_du_opnaar_ved_at_stille_et_borgerfo:\n" +" " +" '#type': select\n" +" '#title': 'Hvad forventer du konkret at opnå ved " +"at stille et borgerforslag? Vælg den mulighed der passer bedst. '\n" +" " +"'#options':\n" +" 'At forslaget bliver gennemført ': 'At forslaget " +"bliver gennemført '\n" +" 'At byrådet drøfter forslaget ': 'At " +"byrådet drøfter forslaget '\n" +" 'At skabe en offentlig debat ': " +"'At skabe en offentlig debat '\n" +" 'At gøre kommunen opmærksom på " +"et problem ': 'At gøre kommunen opmærksom på et problem '\n" +" " +"'Ingenting ': 'Ingenting '\n" +" Andet: Andet\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - '\n" +"borgerforslag:\n" +" '#type': " +"entity_autocomplete\n" +" '#title': Borgerforslag\n" +" '#target_type': " +"node\n" +" '#selection_handler': 'default:node'\n" +" " +"'#selection_settings':\n" +" target_bundles:\n" +" citizen_proposal: " +"citizen_proposal" +msgstr "" +"hvad_er_din_alder_1:\n" +" '#type': select\n" +" '#title': 'Hvad er din " +"alder?'\n" +" '#options':\n" +" '15-20 år': '15-20 år'\n" +" '21-30 " +"år': '21-30 år'\n" +" '31-40 år': '31-40 år'\n" +" '41-50 år ': " +"'41-50 år '\n" +" '51-60 år ': '51-60 år '\n" +" '61-70 år ': " +"'61-70 år '\n" +" '71 + år ': '71 + år '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"hvad_er_din_laengst_gennemfoerte_uddannelse_hvis_du_er_i_gang_me:\n" +" " +" '#type': select\n" +" '#title': 'Hvad er din længst gennemførte " +"uddannelse? Hvis du er i gang med en uddannelse, skal du vælge den " +"uddannelse, du er i gang med. '\n" +" '#options':\n" +" 'Grundskole, fx " +"folkeskolen ': 'Grundskole, fx folkeskolen '\n" +" 'Gymnasial " +"uddannelse ': 'Gymnasial uddannelse '\n" +" 'Erhvervsuddannelse ': " +"'Erhvervsuddannelse '\n" +" 'Kort eller mellemlang videregående " +"uddannelse ': 'Kort eller mellemlang videregående uddannelse '\n" +" " +"'Lang videregående uddannelse ': 'Lang videregående uddannelse '\n" +" " +" 'Andet ': 'Andet '\n" +" 'Ved ikke': 'Ved ikke'\n" +" '#empty_option': " +"'- Ingen - " +"'\n" +"hvor_stor_tillid_har_du_i_almindelighed_til_aarhus_kommune_:\n" +" " +"'#type': select\n" +" '#title': 'Hvor stor tillid har du i almindelighed " +"til Aarhus Kommune? '\n" +" '#options':\n" +" 'Meget stor tillid ': " +"'Meget stor tillid '\n" +" 'Ret stor tillid ': 'Ret stor tillid '\n" +" " +" 'Ret begrænset tillid ': 'Ret begrænset tillid '\n" +" 'Meget " +"begrænset tillid ': 'Meget begrænset tillid '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"i_hvor_hoej_grad_forventer_du_at_borgerforslag_styrker_din_mulig:\n" +" " +" '#type': select\n" +" '#title': 'I hvor høj grad forventer du, at " +"borgerforslag styrker din mulighed for at få indflydelse? '\n" +" " +"'#options':\n" +" 'I høj grad': 'I høj grad'\n" +" 'I meget høj " +"grad ': 'I meget høj grad '\n" +" 'I lav grad ': 'I lav grad '\n" +" " +"'I meget lav grad ': 'I meget lav grad '\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - " +"'\n" +"hvad_forventer_du_konkret_at_du_opnaar_ved_at_stille_et_borgerfo:\n" +" " +" '#type': select\n" +" '#title': 'Hvad forventer du konkret at opnå ved " +"at stille et borgerforslag? Vælg den mulighed der passer bedst. '\n" +" " +"'#options':\n" +" 'At forslaget bliver gennemført ': 'At forslaget " +"bliver gennemført '\n" +" 'At byrådet drøfter forslaget ': 'At " +"byrådet drøfter forslaget '\n" +" 'At skabe en offentlig debat ': " +"'At skabe en offentlig debat '\n" +" 'At gøre kommunen opmærksom på " +"et problem ': 'At gøre kommunen opmærksom på et problem '\n" +" " +"'Ingenting ': 'Ingenting '\n" +" Andet: Andet\n" +" 'Ved ikke': 'Ved " +"ikke'\n" +" '#empty_option': '- Ingen - '\n" +"borgerforslag:\n" +" '#type': " +"entity_autocomplete\n" +" '#title': Borgerforslag\n" +" '#target_type': " +"node\n" +" '#selection_handler': 'default:node'\n" +" " +"'#selection_settings':\n" +" target_bundles:\n" +" citizen_proposal: " +"citizen_proposal" + +msgctxt "webform.webform_options.country_codes:label" +msgid "Country codes" +msgstr "Country codes" + +msgctxt "webform.webform_options.country_codes:category" +msgid "Geographic" +msgstr "Geographic" + +msgctxt "webform.webform_options.country_names:label" +msgid "Country names" +msgstr "Country names" + +msgctxt "webform.webform_options.country_names:category" +msgid "Geographic" +msgstr "Geographic" + +msgctxt "webform.webform_options.days:label" +msgid "Days" +msgstr "Days" + +msgctxt "webform.webform_options.days:category" +msgid "Date and time" +msgstr "Date and time" + +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 "" +"Sunday: Sunday\n" +"Monday: Monday\n" +"Tuesday: Tuesday\n" +"Wednesday: " +"Wednesday\n" +"Thursday: Thursday\n" +"Friday: Friday\n" +"Saturday: " +"Saturday\n" +"" + +msgctxt "webform.webform_options.education:label" +msgid "Education" +msgstr "Education" + +msgctxt "webform.webform_options.education:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"High School: High School\n" +"Associate Degree: Associate " +"Degree\n" +"Graduate or Professional Degree: Graduate or Professional " +"Degree\n" +"Some College: Some College\n" +"" + +msgctxt "webform.webform_options.employment_status:label" +msgid "Employment status" +msgstr "Employment status" + +msgctxt "webform.webform_options.employment_status:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"'Full Time': 'Full Time'\n" +"'Part Time': 'Part Time'\n" +"'Military': " +"'Military'\n" +"Unemployed: Unemployed\n" +"Retired: Retired\n" +"" + +msgctxt "webform.webform_options.ethnicity:label" +msgid "Ethnicity" +msgstr "Ethnicity" + +msgctxt "webform.webform_options.ethnicity:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.gender:label" +msgid "Gender" +msgstr "Gender" + +msgctxt "webform.webform_options.gender:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.industry:label" +msgid "Industry" +msgstr "Industry" + +msgctxt "webform.webform_options.industry:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.languages:label" +msgid "Languages" +msgstr "Languages" + +msgctxt "webform.webform_options.languages:category" +msgid "Language" +msgstr "Language" + +msgctxt "webform.webform_options.likert_agreement:label" +msgid "Likert: Agreement" +msgstr "Likert: Agreement" + +msgctxt "webform.webform_options.likert_agreement:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Strongly Disagree\n" +"2: Disagree\n" +"3: Neutral\n" +"4: Agree\n" +"5: " +"Strongly Agree\n" +"" + +msgctxt "webform.webform_options.likert_comparison:label" +msgid "Likert: Comparison" +msgstr "Likert: Comparison" + +msgctxt "webform.webform_options.likert_comparison:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Much Worse\n" +"2: Somewhat Worse\n" +"3: About the Same\n" +"4: Somewhat " +"Better\n" +"5: Much Better\n" +"" + +msgctxt "webform.webform_options.likert_importance:label" +msgid "Likert: Importance" +msgstr "Likert: Importance" + +msgctxt "webform.webform_options.likert_importance:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Not at all Important\n" +"2: Somewhat Important\n" +"3: Neutral\n" +"4: " +"Important\n" +"5: Very Important\n" +"" + +msgctxt "webform.webform_options.likert_quality:label" +msgid "Likert: Quality" +msgstr "Likert: Quality" + +msgctxt "webform.webform_options.likert_quality:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Poor\n" +"2: Fair\n" +"3: Good\n" +"4: Very good\n" +"5: Excellent\n" +"" + +msgctxt "webform.webform_options.likert_satisfaction:label" +msgid "Likert: Satisfaction" +msgstr "Likert: Satisfaction" + +msgctxt "webform.webform_options.likert_satisfaction:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Very Unsatisfied\n" +"2: Unsatisfied\n" +"3: Neutral\n" +"4: Satisfied\n" +"5: " +"Very Satisfied\n" +"" + +msgctxt "webform.webform_options.likert_ten_scale:label" +msgid "Likert: Ten Scale" +msgstr "Likert: Ten Scale" + +msgctxt "webform.webform_options.likert_ten_scale:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.likert_would_you:label" +msgid "Likert: Would You" +msgstr "Likert: Would You" + +msgctxt "webform.webform_options.likert_would_you:category" +msgid "Likert" +msgstr "Likert" + +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 "" +"1: Definitely Not\n" +"2: Probably Not\n" +"3: Not Sure\n" +"4: Probably\n" +"5: " +"Definitely\n" +"" + +msgctxt "webform.webform_options.marital_status:label" +msgid "Marital status" +msgstr "Marital status" + +msgctxt "webform.webform_options.marital_status:category" +msgid "Demographic" +msgstr "Demographic" + +msgctxt "webform.webform_options.marital_status:options" +msgid "" +"Single: Single\n" +"Married: Married\n" +"Divorced: Divorced\n" +"Widowed: " +"Widowed\n" +"" +msgstr "" +"Single: Single\n" +"Married: Married\n" +"Divorced: Divorced\n" +"Widowed: " +"Widowed\n" +"" + +msgctxt "webform.webform_options.months:label" +msgid "Months" +msgstr "Months" + +msgctxt "webform.webform_options.months:category" +msgid "Date and time" +msgstr "Date and time" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.phone_types:label" +msgid "Phone type" +msgstr "Phone type" + +msgctxt "webform.webform_options.phone_types:category" +msgid "Demographic" +msgstr "Demographic" + +msgctxt "webform.webform_options.phone_types:options" +msgid "" +"Home: Home\n" +"Office: Office\n" +"Cell: Cell\n" +"" +msgstr "" +"Home: Home\n" +"Office: Office\n" +"Cell: Cell\n" +"" + +msgctxt "webform.webform_options.province_codes:label" +msgid "Province codes" +msgstr "Province codes" + +msgctxt "webform.webform_options.province_codes:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.province_names:label" +msgid "Province names" +msgstr "Province names" + +msgctxt "webform.webform_options.province_names:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.relationship:label" +msgid "Relationship" +msgstr "Relationship" + +msgctxt "webform.webform_options.relationship:category" +msgid "Demographic" +msgstr "Demographic" + +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 "" +"Parent: Parent\n" +"'Significant Other': 'Significant Other'\n" +"Sibling: " +"Sibling\n" +"Child: Child\n" +"Friend: Friend\n" +"" + +msgctxt "webform.webform_options.sex:label" +msgid "Sex" +msgstr "Sex" + +msgctxt "webform.webform_options.sex:category" +msgid "Demographic" +msgstr "Demographic" + +msgctxt "webform.webform_options.sex:options" +msgid "" +"Male: Male\n" +"Female: Female\n" +"" +msgstr "" +"Male: Male\n" +"Female: Female\n" +"" + +msgctxt "webform.webform_options.sex_icao:label" +msgid "Sex - International Civil Aviation Organization (ICAO)" +msgstr "Sex - International Civil Aviation Organization (ICAO)" + +msgctxt "webform.webform_options.sex_icao:category" +msgid "Demographic" +msgstr "Demographic" + +msgctxt "webform.webform_options.sex_icao:options" +msgid "" +"M: Male\n" +"F: Female\n" +"X: Unspecified\n" +"" +msgstr "" +"M: Male\n" +"F: Female\n" +"X: Unspecified\n" +"" + +msgctxt "webform.webform_options.size:label" +msgid "Size" +msgstr "Size" + +msgctxt "webform.webform_options.size:category" +msgid "General" +msgstr "General" + +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 "" +"Extra Small: Extra Small\n" +"Small: Small\n" +"Medium: Medium\n" +"Large: " +"Large\n" +"Extra Large: Extra Large\n" +"" + +msgctxt "webform.webform_options.state_codes:label" +msgid "State codes" +msgstr "State codes" + +msgctxt "webform.webform_options.state_codes:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.state_names:label" +msgid "State names" +msgstr "State names" + +msgctxt "webform.webform_options.state_names:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.state_province_codes:label" +msgid "State/Province codes" +msgstr "State/Province codes" + +msgctxt "webform.webform_options.state_province_codes:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.state_province_names:label" +msgid "State/Province names" +msgstr "State/Province names" + +msgctxt "webform.webform_options.state_province_names:category" +msgid "Geographic" +msgstr "Geographic" + +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 "" +"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" +"" + +msgctxt "webform.webform_options.time_zones:label" +msgid "Time zones" +msgstr "Time zones" + +msgctxt "webform.webform_options.time_zones:category" +msgid "Date and time" +msgstr "Date and time" + +msgctxt "webform.webform_options.titles:label" +msgid "Titles" +msgstr "Titles" + +msgctxt "webform.webform_options.titles:category" +msgid "Demographic" +msgstr "Demographic" + +msgctxt "webform.webform_options.titles:options" +msgid "" +"Miss: Miss\n" +"Ms: Ms\n" +"Mr: Mr\n" +"Mrs: Mrs\n" +"Dr: Dr\n" +"" +msgstr "" +"Miss: Miss\n" +"Ms: Ms\n" +"Mr: Mr\n" +"Mrs: Mrs\n" +"Dr: Dr\n" +"" + +msgctxt "webform.webform_options.translations:label" +msgid "Translations" +msgstr "Translations" + +msgctxt "webform.webform_options.translations:category" +msgid "Language" +msgstr "Language" + +msgctxt "webform.webform_options.yes_no:label" +msgid "Yes/No" +msgstr "Yes/No" + +msgctxt "webform.webform_options.yes_no:category" +msgid "General" +msgstr "General" + +msgctxt "webform.webform_options.yes_no:options" +msgid "" +"Yes: Yes\n" +"No: No\n" +"" +msgstr "" +"Yes: Yes\n" +"No: No\n" +"" + From 41b37d9cf6aeafd63178fe03aab283c206fd5af8 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 16:28:58 +0100 Subject: [PATCH 05/14] Cleaned up commands --- Taskfile.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index d4a8853fb..fbc31a3bf 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -282,15 +282,16 @@ tasks: 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)));"' + - task drush -- locale:import --type=not-customized --override=not-customized 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)' + # @todo Which types should we use here? + - task 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 From 041ae33b2ade4bc5abb0b6dabb6482b7810dab3e Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Thu, 27 Mar 2025 21:52:53 +0100 Subject: [PATCH 06/14] Updated translations --- .github/workflows/pr.yaml | 20 ++++ Taskfile.yml | 14 ++- translations/config-translations.da.po | 8 +- .../translations/aarhus_hero.da.po | 74 ++++++++++-- .../hoeringsportal_citizen_proposal.da.po | 69 +++++------ ...ngsportal_citizen_proposal_archiving.da.po | 14 +-- .../hoeringsportal_config_settings.da.po | 6 +- .../hoeringsportal_content_access.da.po | 4 +- .../hoeringsportal_content_blocks.da.po | 28 ++--- .../translations/hoeringsportal_data.da.po | 10 +- .../translations/hoeringsportal_deskpro.da.po | 39 +++++-- .../translations/hoeringsportal_forms.da.po | 4 +- .../translations/hoeringsportal_hearing.da.po | 44 +++++-- .../hoeringsportal_openid_connect.da.po | 4 +- .../hoeringsportal_project_timeline.da.po | 6 +- .../hoeringsportal_public_meeting.da.po | 109 +++++------------- .../hoeringsportal_quicklinks.da.po | 4 +- ...ringsportal_test_delta_sync_fixtures.da.po | 4 +- .../itk_admin/translations/itk_admin.da.po | 64 ++++++++-- .../translations/itk_admin_links.da.po | 45 ++++++-- .../translations/hoeringsportal.da.po | 105 ++++++++--------- 21 files changed, 407 insertions(+), 268 deletions(-) mode change 100755 => 100644 web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po mode change 100755 => 100644 web/modules/custom/itk_admin/translations/itk_admin.da.po mode change 100755 => 100644 web/modules/custom/itk_admin_links/translations/itk_admin_links.da.po diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index ee80649fd..b5d68f241 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -392,3 +392,23 @@ jobs: - run: | task translations:diff + + check-config-translations: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - 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 config translations + run: | + task config-translations:export + + - run: | + task translations:diff diff --git a/Taskfile.yml b/Taskfile.yml index fbc31a3bf..2bc175803 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -17,7 +17,9 @@ vars: # Run `ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this list - aarhus_hero - - hoeringsportal_base_fixtures + # Only used for development. + # - hoeringsportal_base_fixtures + - hoeringsportal_citizen_proposal - hoeringsportal_citizen_proposal_archiving - hoeringsportal_config_settings @@ -35,13 +37,15 @@ vars: - itk_admin - itk_admin_links - - itk_media_entity - - migrate_subject_data + + # - itk_media_entity + # - migrate_subject_data CUSTOM_THEMES: # Run `ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this [] - hoeringsportal - - hoeringsportal_admin + + # - hoeringsportal_admin # During testing and development, you can override CUSTOM_MODULES and CUSTOM_THEMES to not process all modules and themes, e.g. # @@ -337,7 +341,7 @@ tasks: # # "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' web/*/custom/*/translations + - git diff --exit-code --ignore-blank-lines --ignore-matching-lines='^"PO.*-Date' web/*/custom/*/translations translations translations:extract: cmds: diff --git a/translations/config-translations.da.po b/translations/config-translations.da.po index 949d2d8cb..67f64c98f 100644 --- a/translations/config-translations.da.po +++ b/translations/config-translations.da.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-27 16:25+0100\n" -"PO-Revision-Date: 2025-03-27 16:25+0100\n" +"POT-Creation-Date: 2025-03-27 22:33+0100\n" +"PO-Revision-Date: 2025-03-27 22:33+0100\n" "Last-Translator: NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -3357,8 +3357,8 @@ msgid "Apply" msgstr "Apply" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" -msgstr "Reset" +msgid "Nulstil" +msgstr "Nulstil" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" 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..34a50421c --- 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,73 @@ -# 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-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/aarhus_hero.info.yml:0 +msgid "Adds a config page and a block for the hero." +msgstr "" + +#: modules/custom/aarhus_hero/aarhus_hero.info.yml:0 +msgid "Aarhus modules" +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/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:46 +msgid "Hero title" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:55 +msgid "Hero text" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:64 +msgid "Hero image" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:73 +msgid "Hero button text" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:83 +msgid "URL" +msgstr "" + +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:90 +msgid "Save changes" +msgstr "" + +#: modules/custom/aarhus_hero/src/Plugin/Block/AarhusHero.php:8 +msgid "Aarhus hero" +msgstr "Aarhus hero" -msgid "Villa plots" -msgstr "Villa grunde" \ No newline at end of file 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 index 152990317..6e796dfa8 100644 --- 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 @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:17+0100\n" -"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"POT-Creation-Date: 2025-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -70,7 +70,7 @@ msgstr "" #: 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 "" +msgstr "Opret borgerforslag" #: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 msgid "Administer citizen proposal" @@ -92,10 +92,6 @@ msgstr "" msgid "Citizen access denied" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:54 -msgid "Cannot get CPR (@cprClaim) from user claims" -msgstr "" - #: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:65 msgid "Citizen access check exception: @message" msgstr "" @@ -234,7 +230,7 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:267 msgid "Sidebar" -msgstr "" +msgstr "Sidebar" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:272 msgid "Sidebar text" @@ -318,47 +314,50 @@ msgstr "Navn" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:72 msgid "Phone" -msgstr "" +msgstr "Telefonnummer" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:83 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:94 msgid "Email" -msgstr "" +msgstr "Email" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:92 msgid "Display email" -msgstr "" +msgstr "Ja, vis min e-mail på mit borgerforslag" #: 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 "" +msgstr " Ja, I må gerne kontakte mig." #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:120 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:95 msgid "Title" -msgstr "Overskrift" +msgstr "Titel" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:127;145;163 msgid "@remaining characters left." -msgstr "" +msgstr "@remaining tegn tilbage" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:138 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:102 msgid "Proposal" -msgstr "" +msgstr "Forslag" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:156 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:109 msgid "Remarks" -msgstr "" +msgstr "Begrundelse" #: 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:182 msgid "Update proposal" -msgstr "" +msgstr "Opdater 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 "" +msgstr "Opret borgerforslag" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:223;236;240 msgid "Too many characters used." @@ -366,27 +365,27 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:73 msgid "(Not shown on proposal)" -msgstr "" +msgstr "Ikke synligt for andre" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:75 msgid "E-mail" -msgstr "" +msgstr "E-mail" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:87 msgid "Phone number" -msgstr "" +msgstr "Telefonnummer" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:140 msgid "Approve proposal" -msgstr "" +msgstr "Godkend borgerforslag" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:145 msgid "Edit proposal" -msgstr "" +msgstr "Ret borgerforslag" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:153 msgid "Cancel proposal" -msgstr "" +msgstr "Fortryd borgerforslag" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:170 msgid "Thank you for your submission." @@ -394,11 +393,11 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:188 msgid "Your submission has been cancelled." -msgstr "" +msgstr "Dit borgerforslag er blevet slettet" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:200 msgid "Could not find a proposal to approve." -msgstr "" +msgstr "Ikke muligt at finde et forslag at godkende" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:70 msgid "Authenticate with MitID" @@ -406,11 +405,11 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:89 msgid "You're currently authenticated as @name" -msgstr "" +msgstr "Du er logget ind som @name" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:93 msgid "Sign out" -msgstr "" +msgstr "Log ud" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:29 msgid "You have to authenticate to support a proposal" @@ -419,22 +418,24 @@ 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/ProposalFormSupport.php:71 msgid "You're supporting @label on behalf of a citizen" -msgstr "" +msgstr "Du støtter nu @label på vegne af en borger " #: 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 "" +msgstr "Støt forslaget" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:185 msgid "Thank you for your support." -msgstr "" +msgstr "Tak for din støtte" #: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:191 msgid "Something went wrong. Your support was not registered." -msgstr "" +msgstr "Noget gik galt, din støtte er ikke gået igennem. Prøv igen senere" #: modules/custom/hoeringsportal_citizen_proposal/src/Helper/CitizenAccessChecker.php:59 msgid "Citizen access @granted: @values" @@ -462,9 +463,9 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal/templates/citizen-proposal-support-counter.html.twig:13 msgid "Number of supporters" -msgstr "" +msgstr "Antal støtter" #: modules/custom/hoeringsportal_citizen_proposal/templates/form--proposal-support-form.html.twig:19 msgid "Support the proposal" -msgstr "" +msgstr "Støt borgerforslaget" 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 index 3d6cc1edc..60d6eb11d 100644 --- 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 @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:17+0100\n" -"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"POT-Creation-Date: 2025-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -86,11 +86,11 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:16 msgid "Proposal" -msgstr "" +msgstr "Forslag" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:19 msgid "Remarks" -msgstr "" +msgstr "Begrundelse" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:23 msgid "Author" @@ -102,11 +102,11 @@ msgstr "Navn" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:30 msgid "Email" -msgstr "" +msgstr "Email" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:33 msgid "Phone" -msgstr "" +msgstr "Telefonnummer" #: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:37 msgid "Details" @@ -130,5 +130,5 @@ msgstr "" #: modules/custom/hoeringsportal_citizen_proposal_archiving/config/install/advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving.yml:0 msgid "Citizen proposal archiving" -msgstr "" +msgstr "Citizen proposal archiving" 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 index f7aad90f0..e60d8e504 100644 --- 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 @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:17+0100\n" -"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"POT-Creation-Date: 2025-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -55,7 +55,7 @@ msgstr "" #: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 msgid "General" -msgstr "" +msgstr "General" #: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 msgid "Hearing" 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 index dd764dca8..900215122 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:17+0100\n" -"PO-Revision-Date: 2025-03-12 15:17+0100\n" +"POT-Creation-Date: 2025-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" 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 index cfd81b63c..45b1829a0 100644 --- 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 @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:00+0100\n" +"PO-Revision-Date: 2025-03-28 11:00+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -52,27 +52,23 @@ msgstr "" msgid "Node public meeting warning" msgstr "" -#: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:14;20;26 modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:14;17 -msgid "Note!" -msgstr "" - #: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:14 -msgid "Hearing deadline has passed." -msgstr "" +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 "This hearing has not started yet" -msgstr "" +msgid "Note! This hearing has not started yet" +msgstr "Note! Denne høring er ikke startet endnu." #: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-hearing-warning.html.twig:26 -msgid "Hearing deadline approaching." -msgstr "" +msgid "Note! Hearing deadline approaching." +msgstr "Note! Hørings tidsfristen nærmer sig." #: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:14 -msgid "This public meeting has been held." -msgstr "" +msgid "Note! This public meeting has been held." +msgstr "Denne begivenhed er afholdt" #: modules/custom/hoeringsportal_content_blocks/templates/hoeringsportal-meeting-warning.html.twig:17 -msgid "This public meeting has been cancelled." -msgstr "" +msgid "Note! This public meeting has been cancelled." +msgstr "Note! Denne begivenhed er aflyst" diff --git a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po index 09fae376e..4d9aa64d4 100644 --- a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po +++ b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" #: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0;0;0 msgid "Hearings" -msgstr "" +msgstr "Hearings" #: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 msgid "Hearing tickets" @@ -92,7 +92,7 @@ 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 "" +msgstr "Type" #: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/LocalplanItem.php:52 modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:67 msgid "Data" @@ -153,5 +153,5 @@ msgstr "" #: modules/custom/hoeringsportal_data/src/Plugin/Validation/Constraint/MapConfiguration.php:7 msgctxt "Validation" msgid "Map configuration" -msgstr "" +msgstr "Map configuration" diff --git a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po index fbfca1790..50c3b5368 100644 --- a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po +++ b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -99,7 +99,7 @@ msgstr "" #: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 msgid "Hearings" -msgstr "" +msgstr "Hearings" #: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketsBlock.php:7 msgid "Hearing tickets" @@ -187,7 +187,7 @@ msgstr "" #: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:231 msgid "Languages" -msgstr "" +msgstr "Languages" #: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:232 msgid "Map Drupal node language to Deskpro ticket language" @@ -305,7 +305,7 @@ msgstr "" #: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:231 msgid "Your name cannot contain numbers." -msgstr "" +msgstr "Dit navn må ikke indeholde tal." #: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:236 msgid "Confirmation email does not match email." @@ -322,6 +322,8 @@ msgstr "" #: 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:337 msgid "Error submitting hearing ticket" @@ -337,7 +339,7 @@ msgstr "" #: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 msgid "Hearing ticket add" -msgstr "" +msgstr "Hearing ticket add" #: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php:7 msgid "Hearing ticket author" @@ -402,19 +404,40 @@ msgstr "Tilføj høringssvar" #: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:18 msgid "Show hearing tickets" -msgstr "" +msgstr "Vis indkomne svar" #: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:47 msgid "The hearing replies were deleted on @date" -msgstr "" +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\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

" #: 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/templates/block/hoeringsportal-hearing-tickets.html.twig:97 msgid "@ticket_ref by @person_name" diff --git a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po index 4960d15e3..6eaeffbbc 100644 --- a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po +++ b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po index 7309a03db..ff5c36b01 100644 --- a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po +++ b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po @@ -7,13 +7,14 @@ # 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-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -21,23 +22,19 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:25 +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:24 msgid "About" msgstr "Om" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:26 +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:25 msgid "Hearings" -msgstr "" - -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:41 -msgid "Add hearing reply" -msgstr "" +msgstr "Hearings" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:79 +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:55 msgid "Hearing deadline: @deadline" msgstr "" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:83 +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:59 msgid "Hearing deadline has passed" msgstr "Høringsfristen er overskredet" @@ -80,3 +77,28 @@ 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/src/Helper/FormHelper.php:27 +msgid "Add hearing reply" +msgstr "Tilføj høringssvar" + +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:80 +msgid "The start date must not be in the past" +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:87 +msgid "The reply deadline must not be before the start date" +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:94 +msgid "The delete date must not be before the reply deadline" +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 index a1cc86ce7..100505d58 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" 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 index 71a8fd1aa..df0a1c2c6 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -33,7 +33,7 @@ msgstr "" #: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:54 msgid "Start" -msgstr "" +msgstr "Start" #: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:63 msgid "Project 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 index 4b77d4203..39223c5a0 100644 --- 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 @@ -5,7 +5,6 @@ # 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/hoeringsportal_public_meeting.routing.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 # @@ -13,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -22,59 +21,55 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:112 +#: 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/hoeringsportal_public_meeting.module:232;251 +#: 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:277;331 +#: 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/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:300 +#: 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:275 msgid "Please enter a location" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:303 +#: 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:306 +#: 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:309 +#: 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:312 +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:287 msgid "Please enter number of spots" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:321 -msgid "The registration deadline is required." -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:326 -msgid "The registration deadline must not be in the past." -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:334 -msgid "The registration deadline must not be after the meeting starts." -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:338 +#: 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:396 +#: 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.module:400 +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:374 msgid "Public meeting cancelled" msgstr "" @@ -90,79 +85,35 @@ msgstr "" msgid "Hoeringsportal" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.routing.yml:0 -msgid "Public meeting date" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:11 +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 msgid "Public meeting summary" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:11 +#: modules/custom/hoeringsportal_public_meeting/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 msgid "Public meeting" msgstr "Begivenhed" -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:48;54 +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:14;20 msgid "Date" msgstr "Dato" -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:51;57 +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:17;23 msgid "Time" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:62 +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:28 msgid "Place" msgstr "Lokation" -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:67 +#: 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:72 +#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:37 msgid "Last signup date" msgstr "Tilmeldingsfrist" -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:77;80 -msgid "Spots" -msgstr "Pladser" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:84 -msgid "Registration" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:86 -msgid "Meeting has been cancelled" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:88 -msgid "Meeting has already been held" -msgstr "Mødet er afholdt" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:91 -msgid "Registration deadline passed" -msgstr "Deadline for tilmelding er overskredet" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:93 -msgid "No available spots left" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:96 -msgid "Sign up" +#: 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/templates/hoeringsportal-public-meeting-summary.html.twig:97 -msgid "Opens in a new tab" -msgstr "Åbner i en ny fane" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:99 -msgid "Deadline:" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:104 -msgid "This event has multiple dates" -msgstr "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:105 -msgid "View the list" -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 index 56263d1a5..b95db16e6 100644 --- a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po +++ b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:18+0100\n" -"PO-Revision-Date: 2025-03-12 15:18+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" 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 index 7e67e7665..e13ca657e 100644 --- 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 @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:19+0100\n" -"PO-Revision-Date: 2025-03-12 15:19+0100\n" +"POT-Creation-Date: 2025-03-28 11:01+0100\n" +"PO-Revision-Date: 2025-03-28 11:01+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" 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..91fb76f6c --- 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,65 @@ -# 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-03-28 11:02+0100\n" +"PO-Revision-Date: 2025-03-28 11:02+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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/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 "" -msgid "@site_name settings" -msgstr "@site_name indstillinger" +#: modules/custom/itk_admin/itk_admin.info.yml:0 +msgid "ITK" +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/itk_admin.links.task.yml:0 modules/custom/itk_admin/itk_admin.routing.yml:0 +msgid "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:30 +msgid "@site_name 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." + +#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:49 +msgid "Configure" +msgstr "" + 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..2f05d81de --- 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-03-28 11:02+0100\n" +"PO-Revision-Date: 2025-03-28 11:02+0100\n" +"Last-Translator: NAME \n" +"Language-Team: Danish \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_links/itk_admin_links.info.yml:0 +msgid "ITK admin links" +msgstr "" +#: modules/custom/itk_admin_links/itk_admin_links.info.yml:0 +msgid "Show an admin icon and a row of links." +msgstr "" + +#: 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/templates/itk-admin-links-block.html.twig:6;6 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:17 msgid "Log off" -msgstr "Log af" \ No newline at end of file +msgstr "Log af" + diff --git a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po index b70e87290..ea22e8ff8 100644 --- a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po +++ b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po @@ -27,6 +27,7 @@ # 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 @@ -48,8 +49,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-12 15:19+0100\n" -"PO-Revision-Date: 2025-03-12 15:19+0100\n" +"POT-Creation-Date: 2025-03-28 11:02+0100\n" +"PO-Revision-Date: 2025-03-28 11:02+0100\n" "Last-Translator: NAME \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" @@ -103,7 +104,7 @@ msgstr "Content" #: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 msgid "Sidebar" -msgstr "" +msgstr "Sidebar" #: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 msgid "Footer" @@ -111,7 +112,7 @@ msgstr "Footer" #: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:4 msgid "Share the proposal" -msgstr "" +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" @@ -159,7 +160,7 @@ msgstr "" #: 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 "" +msgstr "Email" #: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:99 msgid "Copy to clipboard" @@ -175,11 +176,13 @@ 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 "" +msgstr "Vil du modtage en mail når der er nyt fra deltag.aarhus.dk?" #: 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" #: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:7 msgid "Aarhus Municipality" @@ -195,7 +198,7 @@ msgstr "" #: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:54 msgid "Phone" -msgstr "" +msgstr "Telefonnummer" #: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 msgid "Progress" @@ -213,21 +216,21 @@ msgstr "Initiativ" msgid "Information page" msgstr "Information" -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:102 +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:89 msgid "Public meeting" msgstr "Begivenhed" -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:106;109 themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:104;108 +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:93;97 themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:104;108 msgid "Finished" msgstr "Afsluttet" -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:117 +#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:105 msgid "Cancelled" msgstr "Aflyst" #: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:73 msgid "Project" -msgstr "" +msgstr "Project" #: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:97 msgid "Start date" @@ -239,7 +242,7 @@ msgstr "På vej" #: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:112 msgid "Reply date" -msgstr "Svar frist" +msgstr "Svarfrist" #: themes/custom/hoeringsportal/templates/dataset/item-list--search-results.html.twig:38 msgid "Your search yielded no result" @@ -247,7 +250,7 @@ msgstr "Din søgning gav ingen resultater." #: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-citizen-proposal.html.twig:59;68 msgid "Support the proposal" -msgstr "" +msgstr "Støt borgerforslaget" #: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig:40 msgid "Project info" @@ -323,21 +326,21 @@ msgstr "Vis flere høringer" #: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:59 msgid "Start" -msgstr "" +msgstr "Start" #: 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/field/field--dynamic-block-field--node-public-meeting-summary.html.twig:72 themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:114 +#: 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 "" -#: 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:117 +#: 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" +msgstr "Mødet er afholdt" -#: 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:122 themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:45 +#: 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" @@ -357,50 +360,34 @@ msgstr "Tilføj høringssvar" msgid "Materials" msgstr "Materialer" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:47;86 -msgid "Location" -msgstr "" - -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:48;93 +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:52;101 msgid "Date" msgstr "Dato" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:49;98 +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:56;102 msgid "Time" msgstr "" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:50;103 -msgid "Spots" -msgstr "Pladser" - -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:51;112 -msgid "Registration" -msgstr "" - -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:75 -msgid "Current occurrence" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:60;100 +msgid "Location" msgstr "" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:77 -msgid "First upcoming" -msgstr "" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:64 +msgid "Address" +msgstr "Adresse" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:125 -msgid "No available spots left" -msgstr "" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:68;103 +msgid "Spots" +msgstr "Pladser" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:128 +#: 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--field-pretix-dates.html.twig:129 themes/custom/hoeringsportal/templates/field/field--node--field-signup-link--public-meeting.html.twig:50 +#: 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/field/field--field-pretix-dates.html.twig:131 -msgid "Deadline:" -msgstr "" - #: themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig:44;51 msgid "Last date for signup" msgstr "Tilmeldingsfrist" @@ -431,15 +418,15 @@ msgstr "" #: themes/custom/hoeringsportal/templates/layout/page--search.html.twig:52 msgid "Search" -msgstr "" +msgstr "Search" #: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:16 msgid "Primary tabs" -msgstr "" +msgstr "Primary tabs" #: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:21 msgid "Secondary tabs" -msgstr "" +msgstr "Secondary tabs" #: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:37;38;43 msgid "Previous" @@ -455,11 +442,11 @@ msgstr "" #: 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 "" +msgstr "Opret borgerforslag" #: themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig:54;58 msgid "Show on map" -msgstr "" +msgstr "Vis på kort" #: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:14 msgid "Pagination" @@ -491,33 +478,33 @@ msgstr "" #: themes/custom/hoeringsportal/templates/views/views-view--all-citizen-proposals.html.twig:55 msgid "The proposal list is empty" -msgstr "" +msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" #: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:55 msgid "The hearing list is empty" -msgstr "" +msgstr "Ingen høringer fundet" #: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:57 msgid "Show all hearings" -msgstr "" +msgstr "Vis alle høringer" #: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:55 msgid "The meeting list is empty" -msgstr "" +msgstr "Ingen begivenheder fundet" #: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:57 msgid "Show all meetings" -msgstr "" +msgstr "Vis alle begivenheder" #: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:45 msgid "Search and results will show up here" -msgstr "" +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 "" +msgstr "Søgning på %search_terms gav ingen resultater" #: themes/custom/hoeringsportal/templates/views/views-view--search-db.html.twig:54 msgid "Try with less words or to phrase it differently" -msgstr "" +msgstr "Prøv med færre eller andre søgeord " From 2db958a0f80993523cdac1142bd51492cb4de34b Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Fri, 28 Mar 2025 09:57:08 +0100 Subject: [PATCH 07/14] Updated tasks --- Taskfile.yml | 99 ++++++++++++++++++++++++++++++---------------------- 1 file changed, 57 insertions(+), 42 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 2bc175803..50da84e8b 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -13,7 +13,7 @@ vars: PRETIX_URL: '{{.TASK_PRETIX_URL | default "http://pretix.hoeringsportal.local.itkdev.dk"}}' PRETIX_ORGANIZER: '{{.TASK_PRETIX_ORGANIZER | default "dpl-cms"}}' - CUSTOM_MODULES: + TRANSLATION_MODULES: # Run `ls web/modules/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this list - aarhus_hero @@ -41,18 +41,18 @@ vars: # - itk_media_entity # - migrate_subject_data - CUSTOM_THEMES: + TRANSLATION_THEMES: # Run `ls web/themes/custom/*/*.info.yml | xargs basename -s '.info.yml'` to get this [] - hoeringsportal # - hoeringsportal_admin - # During testing and development, you can override CUSTOM_MODULES and CUSTOM_THEMES to not process all modules and themes, e.g. + # During testing and development, you can override TRANSLATION_MODULES and TRANSLATION_THEMES to not process all modules and themes, e.g. # - # CUSTOM_MODULES: + # TRANSLATION_MODULES: # - hoeringsportal_citizen_proposal # - # CUSTOM_THEMES: [] + # TRANSLATION_THEMES: [] tasks: default: @@ -302,13 +302,44 @@ tasks: - '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 + translations:diff: + 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' web/*/custom/*/translations/*.po translations/*.po + + translations:checkout: + cmds: + - git checkout web/*/custom/*/translations/*.po translations/*.po + # https://taskfile.dev/reference/schema#precondition + preconditions: + - sh: task translations:diff + msg: | + Translations seem to have changed. + + Run + + task translations:diff + + to check. + + translations:extract: + cmds: + - task drush -- --yes pm:install potx + - task: translations:extract:modules + - task: translations:extract:themes + - task drush -- --yes pm:uninstall potx + silent: true + translations:extract:modules: cmds: # https://github.com/go-task/task/discussions/1543 - for: matrix: MODULE: - ref: .CUSTOM_MODULES + ref: .TRANSLATION_MODULES LANGUAGE: - da cmd: | @@ -323,7 +354,7 @@ tasks: - for: matrix: THEME: - ref: .CUSTOM_THEMES + ref: .TRANSLATION_THEMES LANGUAGE: - da # `drush potx` always writes to web/general.pot, so we move this file @@ -335,37 +366,6 @@ tasks: mv web/general.pot web/themes/custom/{{.ITEM.THEME}}/translations/{{.ITEM.THEME}}.{{.ITEM.LANGUAGE}}.po internal: true - translations:diff: - 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' web/*/custom/*/translations translations - - translations:extract: - cmds: - - task drush -- --yes pm:install potx - - task: translations:extract:modules - - task: translations:extract:themes - - task drush -- --yes pm:uninstall potx - silent: true - - config-translations:export: - cmds: - - task drush -- config_translation_po:export da > translations/config-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/config-translations.da.po' - silent: true - - config-translations:import: - cmds: - # Note: We use an empty type to import as not-customized. - - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po - 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? @@ -374,21 +374,36 @@ tasks: - for: matrix: MODULE: - ref: .CUSTOM_MODULES + ref: .TRANSLATION_MODULES cmd: task drush -- locale:import-all --override=none modules/custom/{{.ITEM.MODULE}}/translations/ - silent: true + internal: true translations:import:themes: cmds: - for: matrix: THEME: - ref: .CUSTOM_THEMES + ref: .TRANSLATION_THEMES cmd: task drush -- locale:import-all --override=none themes/custom/{{.ITEM.THEME}}/translations/ - silent: true + internal: true translations:import:all: cmds: - task: translations:import:modules - task: translations:import:themes silent: true + + config-translations:export: + cmds: + - task drush -- config_translation_po:export da > translations/config-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/config-translations.da.po' + silent: true + + config-translations:import: + cmds: + # Note: We use an empty type to import as not-customized. + - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po + silent: true From 4552bc34bdd6df2e4820e2b415c78f1227da85c9 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Fri, 28 Mar 2025 13:04:38 +0100 Subject: [PATCH 08/14] Refactored task files --- Taskfile.yml | 132 ++++------------------------------ task/Taskfile.translation.yml | 132 ++++++++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+), 118 deletions(-) create mode 100644 task/Taskfile.translation.yml diff --git a/Taskfile.yml b/Taskfile.yml index 50da84e8b..a9fc264ea 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -3,6 +3,9 @@ version: '3' # https://taskfile.dev/usage/#env-files dotenv: ['.env.local', '.env'] +includes: + translation: ./task/Taskfile.translation.yml + vars: # https://taskfile.dev/reference/templating/ BASE_URL: '{{.TASK_BASE_URL | default .COMPOSE_SERVER_DOMAIN | default .COMPOSE_DOMAIN | default "https://hoeringsportal.local.itkdev.dk"}}' @@ -47,12 +50,12 @@ vars: # - hoeringsportal_admin - # 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: [] + # # 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: [] tasks: default: @@ -286,124 +289,17 @@ tasks: translations:import: cmds: - - task drush -- locale:import --type=not-customized --override=not-customized 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)));"' + - 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: - # @todo Which types should we use here? - - task drush -- locale:export da --types=customized > translations/custom-translations.da.po + - 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 - - translations:diff: - 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' web/*/custom/*/translations/*.po translations/*.po - - translations:checkout: - cmds: - - git checkout web/*/custom/*/translations/*.po translations/*.po - # https://taskfile.dev/reference/schema#precondition - preconditions: - - sh: task translations:diff - msg: | - Translations seem to have changed. - - Run - - task translations:diff - - to check. - - translations:extract: - cmds: - - task drush -- --yes pm:install potx - - task: translations:extract:modules - - task: translations:extract:themes - - task drush -- --yes pm:uninstall potx - silent: true - - translations:extract:modules: - cmds: - # https://github.com/go-task/task/discussions/1543 - - for: - matrix: - MODULE: - ref: .TRANSLATION_MODULES - LANGUAGE: - - da - cmd: | - task drush -- potx single --folder=modules/custom/{{.ITEM.MODULE}}/ --language {{.ITEM.LANGUAGE}} --translations && \ - mkdir -p web/modules/custom/{{.ITEM.MODULE}}/translations && \ - mv web/general.pot web/modules/custom/{{.ITEM.MODULE}}/translations/{{.ITEM.MODULE}}.{{.ITEM.LANGUAGE}}.po - internal: true - - translations:extract:themes: - cmds: - # https://github.com/go-task/task/discussions/1543 - - for: - matrix: - THEME: - ref: .TRANSLATION_THEMES - LANGUAGE: - - da - # `drush potx` always writes to web/general.pot, so we move this file - # into the desired destination in the `translations` folder inside the - # module folder. - cmd: | - task drush -- potx single --folder=themes/custom/{{.ITEM.THEME}}/ --language {{.ITEM.LANGUAGE}} --translations && \ - mkdir -p web/themes/custom/{{.ITEM.THEME}}/translations && \ - mv web/general.pot web/themes/custom/{{.ITEM.THEME}}/translations/{{.ITEM.THEME}}.{{.ITEM.LANGUAGE}}.po - internal: 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? - translations:import:modules: - cmds: - - for: - matrix: - MODULE: - ref: .TRANSLATION_MODULES - cmd: task drush -- locale:import-all --override=none modules/custom/{{.ITEM.MODULE}}/translations/ - internal: true - - translations:import:themes: - cmds: - - for: - matrix: - THEME: - ref: .TRANSLATION_THEMES - cmd: task drush -- locale:import-all --override=none themes/custom/{{.ITEM.THEME}}/translations/ - internal: true - - translations:import:all: - cmds: - - task: translations:import:modules - - task: translations:import:themes - silent: true - - config-translations:export: - cmds: - - task drush -- config_translation_po:export da > translations/config-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/config-translations.da.po' - silent: true - - config-translations:import: - cmds: - # Note: We use an empty type to import as not-customized. - - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po - silent: true diff --git a/task/Taskfile.translation.yml b/task/Taskfile.translation.yml new file mode 100644 index 000000000..a87fbc721 --- /dev/null +++ b/task/Taskfile.translation.yml @@ -0,0 +1,132 @@ +version: '3' + +vars: + +tasks: + translations:import: + cmds: + - task drush -- locale:import --type=not-customized --override=not-customized 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: + # @todo Which types should we use here? + - task 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 + + translations:diff: + 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' web/*/custom/*/translations/*.po translations/*.po + + translations:checkout: + cmds: + - git checkout web/*/custom/*/translations/*.po translations/*.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. + + translations:extract: + cmds: + - task drush -- --yes pm:install potx + - task: translations:extract:modules + - task: translations:extract:themes + - task drush -- --yes pm:uninstall potx + silent: true + requires: + vars: + - TRANSLATION_MODULES + - TRANSLATION_THEMES + + translations:extract:modules: + cmds: + # https://github.com/go-task/task/discussions/1543 + - for: + matrix: + MODULE: + ref: .TRANSLATION_MODULES + LANGUAGE: + - da + cmd: | + task drush -- potx single --folder=modules/custom/{{.ITEM.MODULE}}/ --language {{.ITEM.LANGUAGE}} --translations && \ + mkdir -p web/modules/custom/{{.ITEM.MODULE}}/translations && \ + mv web/general.pot web/modules/custom/{{.ITEM.MODULE}}/translations/{{.ITEM.MODULE}}.{{.ITEM.LANGUAGE}}.po + internal: true + + translations:extract:themes: + cmds: + # https://github.com/go-task/task/discussions/1543 + - for: + matrix: + THEME: + ref: .TRANSLATION_THEMES + LANGUAGE: + - da + # `drush potx` always writes to web/general.pot, so we move this file + # into the desired destination in the `translations` folder inside the + # module folder. + cmd: | + task drush -- potx single --folder=themes/custom/{{.ITEM.THEME}}/ --language {{.ITEM.LANGUAGE}} --translations && \ + mkdir -p web/themes/custom/{{.ITEM.THEME}}/translations && \ + mv web/general.pot web/themes/custom/{{.ITEM.THEME}}/translations/{{.ITEM.THEME}}.{{.ITEM.LANGUAGE}}.po + internal: 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? + translations:import:modules: + cmds: + - for: + matrix: + MODULE: + ref: .TRANSLATION_MODULES + cmd: task drush -- locale:import-all --override=none modules/custom/{{.ITEM.MODULE}}/translations/ + internal: true + + translations:import:themes: + cmds: + - for: + matrix: + THEME: + ref: .TRANSLATION_THEMES + cmd: task drush -- locale:import-all --override=none themes/custom/{{.ITEM.THEME}}/translations/ + internal: true + + translations:import:all: + cmds: + - task: translations:import:modules + - task: translations:import:themes + silent: true + + config-translations:export: + cmds: + - task drush -- config_translation_po:export da > translations/config-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/config-translations.da.po' + silent: true + + config-translations:import: + cmds: + # Note: We use an empty type to import as not-customized. + - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po + silent: true From e11235cebb32b3d97318500b84db1f485d587f99 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Fri, 28 Mar 2025 13:04:38 +0100 Subject: [PATCH 09/14] Refactored task files --- Taskfile.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Taskfile.yml b/Taskfile.yml index a9fc264ea..1576d4c73 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -70,10 +70,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 drush -- --yes cache:rebuild - - task assets-build - task site-open - task site-open-admin silent: true From 68a07ee29e3efa974c38da624f0009197685cbaf Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 23 Apr 2025 14:55:50 +0200 Subject: [PATCH 10/14] Updated translations stuff --- .github/workflows/translation.yml | 51 + Taskfile.yml | 109 +- composer.lock | 98 +- .../translations/config.da.po | 5539 +++++++---------- documentation/Translation.md | 178 +- task/Taskfile.translation.yml | 303 +- ...tions.da.po => contrib-translations.da.po} | 2419 ++++--- .../custom/aarhus_hero/aarhus_hero.info.yml | 2 - .../translations/aarhus_hero.da.po | 4 +- .../hoeringsportal_citizen_proposal.info.yml | 4 - .../hoeringsportal_citizen_proposal.da.po | 4 +- ...portal_citizen_proposal_archiving.info.yml | 4 - ...ngsportal_citizen_proposal_archiving.da.po | 4 +- .../hoeringsportal_config_settings.info.yml | 4 - .../hoeringsportal_config_settings.da.po | 102 +- .../hoeringsportal_content_access.info.yml | 4 - .../hoeringsportal_content_access.da.po | 4 +- .../hoeringsportal_content_blocks.info.yml | 4 - .../hoeringsportal_content_blocks.da.po | 4 +- .../hoeringsportal_data.info.yml | 4 - .../translations/hoeringsportal_data.da.po | 6 +- .../hoeringsportal_deskpro.info.yml | 4 - .../translations/hoeringsportal_deskpro.da.po | 4 +- .../hoeringsportal_forms.info.yml | 4 - .../translations/hoeringsportal_forms.da.po | 4 +- .../hoeringsportal_hearing.info.yml | 4 - .../translations/hoeringsportal_hearing.da.po | 4 +- .../hoeringsportal_openid_connect.info.yml | 4 - .../hoeringsportal_openid_connect.da.po | 4 +- .../hoeringsportal_project_timeline.info.yml | 4 - .../hoeringsportal_project_timeline.da.po | 4 +- .../hoeringsportal_public_meeting.info.yml | 4 - .../hoeringsportal_public_meeting.da.po | 4 +- .../hoeringsportal_quicklinks.info.yml | 4 - .../hoeringsportal_quicklinks.da.po | 4 +- ...ringsportal_test_delta_sync_fixtures.da.po | 4 +- .../custom/itk_admin/itk_admin.info.yml | 2 - .../itk_admin/translations/itk_admin.da.po | 4 +- .../itk_admin_links/itk_admin_links.info.yml | 2 - .../translations/itk_admin_links.da.po | 4 +- .../translations/hoeringsportal.da.po | 71 +- 41 files changed, 4560 insertions(+), 4434 deletions(-) create mode 100644 .github/workflows/translation.yml rename translations/config-translations.da.po => config/translations/config.da.po (72%) rename translations/{custom-translations.da.po => contrib-translations.da.po} (88%) 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/Taskfile.yml b/Taskfile.yml index 1576d4c73..f31364219 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -4,7 +4,52 @@ version: '3' dotenv: ['.env.local', '.env'] includes: - translation: ./task/Taskfile.translation.yml + 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/ @@ -16,47 +61,6 @@ vars: PRETIX_URL: '{{.TASK_PRETIX_URL | default "http://pretix.hoeringsportal.local.itkdev.dk"}}' PRETIX_ORGANIZER: '{{.TASK_PRETIX_ORGANIZER | default "dpl-cms"}}' - 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 - - # # 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: [] - tasks: default: cmds: @@ -72,7 +76,7 @@ tasks: - 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 site-open - task site-open-admin @@ -85,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 @@ -286,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.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/translations/config-translations.da.po b/config/translations/config.da.po similarity index 72% rename from translations/config-translations.da.po rename to config/translations/config.da.po index 67f64c98f..7c86dcf99 100644 --- a/translations/config-translations.da.po +++ b/config/translations/config.da.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-27 22:33+0100\n" -"PO-Revision-Date: 2025-03-27 22:33+0100\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: LANGUAGE \n" "MIME-Version: 1.0\n" @@ -14,1063 +14,1115 @@ msgstr "" msgctxt "advancedqueue.advancedqueue_queue.default:label" msgid "Default" -msgstr "Default" +msgstr "" msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" msgid "Citizen proposal archiving" -msgstr "Citizen proposal archiving" +msgstr "" msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_deskpro:label" msgid "Deskpro" -msgstr "Deskpro" +msgstr "" msgctxt "block.block.aarhushero:settings:label" msgid "Aarhus hero" -msgstr "Aarhus hero" +msgstr "" msgctxt "block.block.breadcrumbs:settings:label" msgid "Breadcrumbs" -msgstr "Breadcrumbs" +msgstr "" msgctxt "block.block.claro_breadcrumbs:settings:label" msgid "Breadcrumbs" -msgstr "Breadcrumbs" +msgstr "" msgctxt "block.block.claro_content:settings:label" msgid "Main page content" -msgstr "Main page content" +msgstr "" msgctxt "block.block.claro_local_actions:settings:label" msgid "Primary admin actions" -msgstr "Primary admin actions" +msgstr "" msgctxt "block.block.claro_messages:settings:label" msgid "Status messages" -msgstr "Status messages" +msgstr "" msgctxt "block.block.claro_page_title:settings:label" msgid "Page title" -msgstr "Page title" +msgstr "" msgctxt "block.block.claro_primary_local_tasks:settings:label" msgid "Primary tabs" -msgstr "Primary tabs" +msgstr "" msgctxt "block.block.claro_secondary_local_tasks:settings:label" msgid "Secondary tabs" -msgstr "Secondary tabs" +msgstr "" msgctxt "block.block.hoeringsportal_branding:settings:label" msgid "Aarhus kommune" -msgstr "Aarhus kommune" +msgstr "" msgctxt "block.block.hoeringsportal_messages:settings:label" msgid "Status messages" -msgstr "Status messages" +msgstr "" msgctxt "block.block.itkadminlinks:settings:label" msgid "ITK Admin links" -msgstr "ITK Admin links" +msgstr "" msgctxt "block.block.mainpagecontent:settings:label" msgid "Main page content" -msgstr "Main page content" +msgstr "" msgctxt "block.block.messages:settings:label" msgid "Status messages" -msgstr "Status messages" +msgstr "" msgctxt "block.block.pagetitle:settings:label" msgid "Page title" -msgstr "Page title" +msgstr "" msgctxt "block.block.primaernavigation:settings:label" msgid "Primær navigation" -msgstr "Primær navigation" +msgstr "" msgctxt "block.block.primaryadminactions:settings:label" msgid "Primary admin actions" -msgstr "Primary admin actions" +msgstr "" msgctxt "block.block.sekundaernavigation:settings:label" msgid "Sekundær navigation" -msgstr "Sekundær navigation" +msgstr "" msgctxt "block.block.sidefod:settings:label" msgid "Sidefod" -msgstr "Sidefod" +msgstr "" msgctxt "block.block.stark_admin:settings:label" msgid "Administration" -msgstr "Administration" +msgstr "" msgctxt "block.block.stark_branding:settings:label" msgid "Site branding" -msgstr "Site branding" +msgstr "" msgctxt "block.block.stark_local_actions:settings:label" -msgid "Primære adminsitratorhandlinger" -msgstr "Primære adminsitratorhandlinger" +msgid "Primary admin actions" +msgstr "" msgctxt "block.block.stark_local_tasks:settings:label" -msgid "Faner" -msgstr "Faner" +msgid "Tabs" +msgstr "" msgctxt "block.block.stark_login:settings:label" msgid "User login" -msgstr "User login" +msgstr "" msgctxt "block.block.stark_messages:settings:label" -msgid "Statusmeddelelser" -msgstr "Statusmeddelelser" +msgid "Status messages" +msgstr "" msgctxt "block.block.stark_page_title:settings:label" -msgid "Sidetitel" -msgstr "Sidetitel" +msgid "Page title" +msgstr "" msgctxt "block.block.stark_tools:settings:label" -msgid "Værktøjer" -msgstr "Værktøjer" +msgid "Tools" +msgstr "" msgctxt "block.block.tabs:settings:label" msgid "Primary tabs" -msgstr "Primary tabs" +msgstr "" msgctxt "block.block.tabs_2:settings:label" msgid "Secondary tabs" -msgstr "Secondary tabs" +msgstr "" msgctxt "block_content.type.aside_contact_info:label" msgid "Aside contact info" -msgstr "Aside contact info" +msgstr "" msgctxt "block_content.type.aside_contact_info:description" msgid "Used to show contact info on a page" -msgstr "Used to show contact info on a page" +msgstr "" msgctxt "block_content.type.aside_link_box:label" msgid "Aside link box" -msgstr "Aside link box" +msgstr "" msgctxt "block_content.type.aside_link_box:description" msgid "Used to create a link box in the right column." -msgstr "Used to create a link box in the right column." +msgstr "" msgctxt "captcha.captcha_point.contact_message_feedback_form:label" msgid "contact_message_feedback_form" -msgstr "contact_message_feedback_form" +msgstr "" msgctxt "captcha.captcha_point.contact_message_personal_form:label" msgid "contact_message_personal_form" -msgstr "contact_message_personal_form" +msgstr "" msgctxt "captcha.captcha_point.hearing_add_form:label" msgid "hearing_add_form" -msgstr "hearing_add_form" +msgstr "" msgctxt "captcha.captcha_point.node_hearing_form:label" msgid "node_hearing_form" -msgstr "node_hearing_form" +msgstr "" msgctxt "captcha.captcha_point.node_landing_page_form:label" msgid "node_landing_page_form" -msgstr "node_landing_page_form" +msgstr "" msgctxt "captcha.captcha_point.node_project_form:label" msgid "node_project_form" -msgstr "node_project_form" +msgstr "" msgctxt "captcha.captcha_point.node_static_page_form:label" msgid "node_static_page_form" -msgstr "node_static_page_form" +msgstr "" msgctxt "captcha.captcha_point.user_login_form:label" msgid "user_login_form" -msgstr "user_login_form" +msgstr "" msgctxt "captcha.captcha_point.user_pass:label" msgid "user_pass" -msgstr "user_pass" +msgstr "" msgctxt "captcha.captcha_point.user_register_form:label" msgid "user_register_form" -msgstr "user_register_form" +msgstr "" msgctxt "captcha.settings:description" msgid "" "Please type the text you see in the captcha image to prove you are " "human" msgstr "" -"Please type the text you see in the captcha image to prove you are " -"human" msgctxt "core.base_field_override.node.citizen_proposal.promote:label" msgid "Promoted to front page" -msgstr "Promoted to front page" +msgstr "" msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:on_label" msgid "On" -msgstr "On" +msgstr "" msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:off_label" msgid "Off" -msgstr "Off" +msgstr "" msgctxt "core.base_field_override.node.citizen_proposal.status:label" msgid "Published" -msgstr "Published" +msgstr "" msgctxt "core.base_field_override.node.citizen_proposal.status:settings:on_label" msgid "On" -msgstr "On" +msgstr "" msgctxt "core.base_field_override.node.citizen_proposal.status:settings:off_label" msgid "Off" -msgstr "Off" +msgstr "" msgctxt "core.base_field_override.node.hearing.promote:label" msgid "Forfremmet til forside" -msgstr "Forfremmet til forside" +msgstr "" msgctxt "core.base_field_override.node.hearing.promote:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "core.base_field_override.node.hearing.promote:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "core.base_field_override.node.landing_page.promote:label" msgid "Forfremmet til forside" -msgstr "Forfremmet til forside" +msgstr "" msgctxt "core.base_field_override.node.landing_page.promote:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "core.base_field_override.node.landing_page.promote:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "core.base_field_override.node.project.promote:label" msgid "Forfremmet til forside" -msgstr "Forfremmet til forside" +msgstr "" msgctxt "core.base_field_override.node.project.promote:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "core.base_field_override.node.project.promote:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "core.base_field_override.node.static_page.promote:label" msgid "Forfremmet til forside" -msgstr "Forfremmet til forside" +msgstr "" msgctxt "core.base_field_override.node.static_page.promote:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "core.base_field_override.node.static_page.promote:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "core.date_format.fallback:label" -msgid "Reservedatoformat" -msgstr "Reservedatoformat" +msgid "Fallback date format" +msgstr "" msgctxt "core.date_format.hoeringsportal_date:label" msgid "Høringsportalen – dato" -msgstr "Høringsportalen – dato" +msgstr "" msgctxt "core.date_format.hoeringsportal_date:pattern" msgid "d/m/Y" -msgstr "d/m/Y" +msgstr "" msgctxt "core.date_format.hoeringsportal_datetime:label" msgid "Høringsportalen – dato og tid" -msgstr "Høringsportalen – dato og tid" +msgstr "" msgctxt "core.date_format.hoeringsportal_datetime:pattern" msgid "d/m/Y H:i" -msgstr "d/m/Y H:i" +msgstr "" msgctxt "core.date_format.hoeringsportal_date_long:label" msgid "Høringsportalen – dato (lang)" -msgstr "Høringsportalen – dato (lang)" +msgstr "" msgctxt "core.date_format.hoeringsportal_date_long:pattern" msgid "l \\d. j. F Y" -msgstr "l \\d. j. F Y" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_day_only:label" +msgid "Høringsportalen – dag" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_day_only:pattern" +msgid "d" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_month_short:label" +msgid "Høringsportalen – måned kort" +msgstr "" + +msgctxt "core.date_format.hoeringsportal_month_short:pattern" +msgid "M" +msgstr "" msgctxt "core.date_format.hoeringsportal_time:label" msgid "Høringsportalen – tid" -msgstr "Høringsportalen – tid" +msgstr "" msgctxt "core.date_format.hoeringsportal_time:pattern" msgid "H:i" -msgstr "H:i" +msgstr "" msgctxt "core.date_format.html_date:label" msgid "HTML Date" -msgstr "HTML Date" +msgstr "" msgctxt "core.date_format.html_datetime:label" msgid "HTML Datetime" -msgstr "HTML Datetime" +msgstr "" msgctxt "core.date_format.html_month:label" msgid "HTML Month" -msgstr "HTML Month" +msgstr "" msgctxt "core.date_format.html_time:label" msgid "HTML Time" -msgstr "HTML Time" +msgstr "" msgctxt "core.date_format.html_week:label" msgid "HTML Week" -msgstr "HTML Week" +msgstr "" msgctxt "core.date_format.html_year:label" msgid "HTML Year" -msgstr "HTML Year" +msgstr "" msgctxt "core.date_format.html_yearless_date:label" msgid "HTML Yearless date" -msgstr "HTML Yearless date" +msgstr "" msgctxt "core.date_format.long:label" -msgid "Standard lang dato" -msgstr "Standard lang dato" +msgid "Default long date" +msgstr "" msgctxt "core.date_format.long:pattern" msgid "l, j. F Y - H:i" -msgstr "l, j. F Y - H:i" +msgstr "" msgctxt "core.date_format.medium:label" -msgid "Standard mellem dato" -msgstr "Standard mellem dato" +msgid "Default medium date" +msgstr "" msgctxt "core.date_format.medium:pattern" msgid "D, d/m/Y - H:i" -msgstr "D, d/m/Y - H:i" +msgstr "" msgctxt "core.date_format.short:label" -msgid "Standard kort dato" -msgstr "Standard kort dato" +msgid "Default short date" +msgstr "" msgctxt "core.date_format.short:pattern" msgid "d/m/Y - H:i" -msgstr "d/m/Y - H:i" +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 "" -"Content limited to @limit characters, remaining: " -"@remaining" msgctxt "core.entity_form_display.node.citizen_proposal.default:third_party_settings:field_group:group_getorganized:label" msgid "GetOrganized" -msgstr "GetOrganized" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_information:label" msgid "Informationer" -msgstr "Informationer" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_system_settings:label" msgid "Systemindstillinger" -msgstr "Systemindstillinger" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_deskpro:label" msgid "Deskpro" -msgstr "Deskpro" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_edoc:label" msgid "eDoc" -msgstr "eDoc" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_contact:label" msgid "Kontakt" -msgstr "Kontakt" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_more_info:label" msgid "Vil du vide mere?" -msgstr "Vil du vide mere?" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_getorganized:label" msgid "GetOrganized" -msgstr "GetOrganized" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_hearing_ticket_system:label" msgid "Høringssvarsystem" -msgstr "Høringssvarsystem" +msgstr "" msgctxt "core.entity_form_display.node.hearing.default:content:field_hearing_ticket_add:settings:placeholder_title" msgid " " -msgstr " " +msgstr "" msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title" msgid "sektion" -msgstr "sektion" +msgstr "" msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title_plural" msgid "sektioner" -msgstr "sektioner" +msgstr "" msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_system_settings:label" msgid "Systemindstillinger" -msgstr "Systemindstillinger" +msgstr "" msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_timeline:label" msgid "Tidslinje" -msgstr "Tidslinje" +msgstr "" msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title" msgid "Paragraph" -msgstr "Paragraph" +msgstr "" msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title_plural" msgid "Paragraphs" -msgstr "Paragraphs" +msgstr "" msgctxt "core.entity_form_display.node.project_main_page.default:third_party_settings:field_group:group_project_area:label" msgid "Project area" -msgstr "Project area" +msgstr "" msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title" msgid "Paragraph" -msgstr "Paragraph" +msgstr "" msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title_plural" msgid "Paragraphs" -msgstr "Paragraphs" +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 "" -"Content limited to @limit characters, remaining: " -"@remaining" 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 "" -"Content limited to @limit characters, remaining: " -"@remaining" msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title" msgid "Paragraph" -msgstr "Paragraph" +msgstr "" msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title_plural" msgid "Paragraphs" -msgstr "Paragraphs" +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 "" -"Content limited to @limit characters, remaining: " -"@remaining" msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_information:label" msgid "Informationer" -msgstr "Informationer" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_system_settings:label" msgid "Systemindstillinger" -msgstr "Systemindstillinger" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_contact:label" msgid "Kontakt" -msgstr "Kontakt" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" msgid "Tilmelding" -msgstr "Tilmelding" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_cancellation:label" msgid "Cancellation" -msgstr "Cancellation" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title" msgid "Paragraph" -msgstr "Paragraph" +msgstr "" msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title_plural" msgid "Paragraphs" -msgstr "Paragraphs" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_sidebar:label" msgid "Sidebar" -msgstr "Sidebar" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:label" msgid "Systemindstillinger" -msgstr "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 "Systemindstillinger" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_teaser_display:label" msgid "Teaser visning" -msgstr "Teaser visning" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title" msgid "Paragraph" -msgstr "Paragraph" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title_plural" msgid "Paragraphs" -msgstr "Paragraphs" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette" msgid "1" -msgstr "1" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:palette" msgid "[\"#008486\",\"#333333\", \"#B2DADA\"]" -msgstr "[\"#008486\",\"#333333\", \"#B2DADA\"]" +msgstr "" msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette_only" msgid "1" -msgstr "1" +msgstr "" -msgctxt "core.entity_form_display.paragraph.text_aside_blocks_2_column.default:content:field_abstract:third_party_settings:maxlength:maxlength_js_label" +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_button:settings:title" +msgid "Paragraph" +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.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.taxonomy_term.department.default:content:field_claim_value:third_party_settings:maxlength:maxlength_js_label" +msgctxt "core.entity_form_display.paragraph.link.default:content:field_link:settings:placeholder" +msgid "Search the name of the page" +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.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title_plural" +msgid "Paragraphs" +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 "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette" msgid "1" -msgstr "1" +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 "[\"#008486\",\"#673ab7\",\"#3661d8\",\"#2b3ba2\",\"#B2DADA\",\"#008850\",\"#ffe13d\",\"#d32f2f\",\"#333333\"]" +msgstr "" msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette_only" msgid "1" -msgstr "1" +msgstr "" msgctxt "core.entity_form_mode.media.image:label" msgid "Image" -msgstr "Image" +msgstr "" msgctxt "core.entity_form_mode.user.register:label" -msgid "Opret konto" -msgstr "Opret konto" +msgid "Register" +msgstr "" msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" msgid "Tilmelding" -msgstr "Tilmelding" +msgstr "" msgctxt "core.entity_view_display.node.public_meeting.search_result:third_party_settings:field_group:group_signup:label" msgid "Tilmelding" -msgstr "Tilmelding" +msgstr "" msgctxt "core.entity_view_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:format" msgid "hex" -msgstr "hex" +msgstr "" msgctxt "core.entity_view_mode.block.token:label" msgid "Token" -msgstr "Token" +msgstr "" msgctxt "core.entity_view_mode.block_content.full:label" -msgid "Fuld" -msgstr "Fuld" +msgid "Full" +msgstr "" msgctxt "core.entity_view_mode.entity_subqueue.token:label" msgid "Token" -msgstr "Token" +msgstr "" msgctxt "core.entity_view_mode.file.token:label" msgid "Token" -msgstr "Token" +msgstr "" msgctxt "core.entity_view_mode.media.content_display:label" msgid "Content display" -msgstr "Content display" +msgstr "" msgctxt "core.entity_view_mode.media.full:label" msgid "Full content" -msgstr "Full content" +msgstr "" msgctxt "core.entity_view_mode.media.material_display:label" msgid "Material display" -msgstr "Material display" +msgstr "" msgctxt "core.entity_view_mode.media.node_form_display:label" msgid "Node form display" -msgstr "Node form display" +msgstr "" msgctxt "core.entity_view_mode.media.project_gallery_display:label" msgid "Project gallery display" -msgstr "Project gallery display" +msgstr "" msgctxt "core.entity_view_mode.media.teaser_display:label" msgid "Teaser display" -msgstr "Teaser display" +msgstr "" msgctxt "core.entity_view_mode.node.citizen_proposal_add:label" msgid "Citizen proposal add" -msgstr "Citizen proposal add" +msgstr "" msgctxt "core.entity_view_mode.node.citizen_proposal_approval:label" msgid "Citizen proposal approval" -msgstr "Citizen proposal approval" +msgstr "" msgctxt "core.entity_view_mode.node.full:label" msgid "Fuldt indhold" -msgstr "Fuldt indhold" +msgstr "" msgctxt "core.entity_view_mode.node.hearing_ticket_add:label" msgid "Hearing ticket add" -msgstr "Hearing ticket add" +msgstr "" msgctxt "core.entity_view_mode.node.hearing_ticket_view:label" msgid "Hearing ticket view" -msgstr "Hearing ticket view" +msgstr "" msgctxt "core.entity_view_mode.node.list_display:label" msgid "List display" -msgstr "List display" +msgstr "" msgctxt "core.entity_view_mode.node.revision:label" msgid "Version" -msgstr "Version" +msgstr "" msgctxt "core.entity_view_mode.node.search_result:label" msgid "Search result" -msgstr "Search result" +msgstr "" msgctxt "core.entity_view_mode.node.teaser:label" -msgid "Smagsprøve" -msgstr "Smagsprøve" +msgid "Teaser" +msgstr "" msgctxt "core.entity_view_mode.paragraph.preview:label" msgid "Gennemse" -msgstr "Gennemse" +msgstr "" msgctxt "core.entity_view_mode.taxonomy_term.full:label" -msgid "Termside" -msgstr "Termside" +msgid "Taxonomy term page" +msgstr "" msgctxt "core.entity_view_mode.user.compact:label" -msgid "Kompakt" -msgstr "Kompakt" +msgid "Compact" +msgstr "" msgctxt "core.entity_view_mode.user.full:label" -msgid "Brugerkonto" -msgstr "Brugerkonto" +msgid "User account" +msgstr "" msgctxt "core.entity_view_mode.user.token:label" msgid "Token" -msgstr "Token" +msgstr "" msgctxt "crop.type.content_display:label" msgid "Indholdsvisning" -msgstr "Indholdsvisning" +msgstr "" msgctxt "crop.type.content_display:description" msgid "" "Visningen der anvendes når billedet vises på det fulde " "indholdselement" msgstr "" -"Visningen der anvendes når billedet vises på det fulde " -"indholdselement" msgctxt "crop.type.medium_squared:label" msgid "Medium kvadratisk" -msgstr "Medium kvadratisk" +msgstr "" msgctxt "crop.type.medium_squared:description" msgid "Anvendt til visning af materialer" -msgstr "Anvendt til visning af materialer" +msgstr "" msgctxt "crop.type.teaser_display:label" msgid "Teaser display" -msgstr "Teaser display" +msgstr "" msgctxt "crop.type.teaser_display:description" msgid "Visningen der anvendes når billedet vises som del af en teaser" -msgstr "Visningen der anvendes når billedet vises som del af en teaser" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:label" msgid "ITK document browser" -msgstr "ITK document browser" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:display_configuration:link_text" msgid "Vælg fil" -msgstr "Vælg fil" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:label" msgid "Overblik" -msgstr "Overblik" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:settings:submit_text" msgid "Vælg fil" -msgstr "Vælg fil" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:label" msgid "Upload new document" -msgstr "Upload new document" +msgstr "" msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:settings:submit_text" msgid "Upload document to media library" -msgstr "Upload document to media library" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:label" +msgid "ITK icon browser" +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:label" +msgid "Overblik" +msgstr "" + +msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:settings:submit_text" +msgid "Vælg ikon" +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:label" msgid "ITK image browser" -msgstr "ITK image browser" +msgstr "" msgctxt "entity_browser.browser.itk_image_browser:display_configuration:link_text" msgid "Vælg fil" -msgstr "Vælg fil" +msgstr "" msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:label" msgid "Overblik" -msgstr "Overblik" +msgstr "" msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:settings:submit_text" msgid "Vælg fil" -msgstr "Vælg fil" +msgstr "" msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:label" msgid "Upload new image" -msgstr "Upload new image" +msgstr "" msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:settings:submit_text" msgid "Upload image to media library" -msgstr "Upload image to media library" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_address:label" msgid "Address" -msgstr "Address" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_address:description" msgid "Used to add address" -msgstr "Used to add address" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_department:description" msgid "Used as the name of the department" -msgstr "Used as the name of the department" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_email:label" msgid "Email" -msgstr "Email" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_email:description" msgid "Used to show the email address" -msgstr "Used to show the email address" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_image:label" msgid "Image" -msgstr "Image" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_image:description" msgid "Used to add image to the top of the box" -msgstr "Used to add image to the top of the box" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_phone_number:label" msgid "Phone number" -msgstr "Phone number" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_phone_number:description" msgid "Used to show the phone number" -msgstr "Used to show the phone number" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_title:label" msgid "Title" -msgstr "Title" +msgstr "" msgctxt "field.field.block_content.aside_contact_info.field_title:description" msgid "Used to show the title" -msgstr "Used to show the title" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_color:label" msgid "Color" -msgstr "Color" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_color:description" msgid "Used to set the color of the box" -msgstr "Used to set the color of the box" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_link:label" msgid "Link" -msgstr "Link" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_link:description" msgid "Used to point to a target for the link box" -msgstr "Used to point to a target for the link box" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_title:label" msgid "Title" -msgstr "Title" +msgstr "" msgctxt "field.field.block_content.aside_link_box.field_title:description" msgid "Used to show the title" -msgstr "Used to show the title" +msgstr "" msgctxt "field.field.media.document.field_itk_media_file_upload:label" msgid "File upload" -msgstr "File upload" +msgstr "" msgctxt "field.field.media.document.field_itk_media_mime_type:label" msgid "Mime type" -msgstr "Mime type" +msgstr "" msgctxt "field.field.media.document.field_itk_media_size:label" msgid "Size" -msgstr "Size" +msgstr "" msgctxt "field.field.media.document.field_itk_media_tag:label" msgid "Tag" -msgstr "Tag" +msgstr "" msgctxt "field.field.media.document.field_itk_media_tag:description" msgid "The tag will help you navigate in your media library" -msgstr "The tag will help you navigate in your media library" +msgstr "" + +msgctxt "field.field.media.icon.field_itk_media_image_upload:label" +msgid "Image" +msgstr "" msgctxt "field.field.media.image.field_itk_media_height:label" msgid "Højde" -msgstr "Højde" +msgstr "" msgctxt "field.field.media.image.field_itk_media_image_upload:label" msgid "Image upload" -msgstr "Image upload" +msgstr "" msgctxt "field.field.media.image.field_itk_media_mime_type:label" msgid "Mime type" -msgstr "Mime type" +msgstr "" msgctxt "field.field.media.image.field_itk_media_tag:label" msgid "Tag" -msgstr "Tag" +msgstr "" msgctxt "field.field.media.image.field_itk_media_width:label" msgid "Bredde" -msgstr "Bredde" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_allow_email:label" msgid "Allow email" -msgstr "Allow email" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_allow_email:description" msgid "Author accepts receiving emails." -msgstr "Author accepts receiving emails." +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:on_label" msgid "On" -msgstr "On" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:off_label" msgid "Off" -msgstr "Off" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_email:label" msgid "Email" -msgstr "Email" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_email_display:label" msgid "Author email display" -msgstr "Author email display" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:on_label" msgid "On" -msgstr "On" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:off_label" msgid "Off" -msgstr "Off" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_name:label" msgid "Navn" -msgstr "Navn" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_phone:label" msgid "Phone" -msgstr "Phone" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_author_uuid:label" msgid "Author UUID" -msgstr "Author UUID" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_content_state:label" msgid "Content state" -msgstr "Content state" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_getorganized_case_id:label" msgid "GetOrganized-sags-ID" -msgstr "GetOrganized-sags-ID" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_more_info:label" msgid "Vil du vide mere?" -msgstr "Vil du vide mere?" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_proposal:label" msgid "Forslaget" -msgstr "Forslaget" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_remarks:label" msgid "Bemærkninger" -msgstr "Bemærkninger" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_vote_end:label" msgid "Afstemning afslutningsdato" -msgstr "Afstemning afslutningsdato" +msgstr "" msgctxt "field.field.node.citizen_proposal.field_vote_start:label" msgid "Afstemning start" -msgstr "Afstemning start" +msgstr "" msgctxt "field.field.node.hearing.field_area:label" msgid "Område" -msgstr "Område" +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 "" -"Vælg områder som høringen dækker. Markér alle hvis høringen " -"dækker hele kommunen." msgctxt "field.field.node.hearing.field_contact:label" msgid "Kontakt" -msgstr "Kontakt" +msgstr "" msgctxt "field.field.node.hearing.field_content_state:label" msgid "Content state" -msgstr "Content state" +msgstr "" msgctxt "field.field.node.hearing.field_content_state:description" msgid "Høringens status." -msgstr "Høringens status." +msgstr "" msgctxt "field.field.node.hearing.field_delete_date:label" msgid "Dato for sletning af høringssvar" -msgstr "Dato for sletning af høringssvar" +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 "" -"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" msgctxt "field.field.node.hearing.field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "field.field.node.hearing.field_description:label" msgid "Beskrivelse" -msgstr "Beskrivelse" +msgstr "" msgctxt "field.field.node.hearing.field_description:description" msgid "Beskrivelse af høringen." -msgstr "Beskrivelse af høringen." +msgstr "" msgctxt "field.field.node.hearing.field_deskpro_agent_email:label" msgid "Sagsbehandler" -msgstr "Sagsbehandler" +msgstr "" msgctxt "field.field.node.hearing.field_deskpro_agent_email:description" msgid "Vælg sagsbehandler for høringen." -msgstr "Vælg sagsbehandler for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_deskpro_department_id:label" msgid "Afdeling" -msgstr "Afdeling" +msgstr "" msgctxt "field.field.node.hearing.field_deskpro_department_id:description" msgid "Vælg afdeling for høringen." -msgstr "Vælg afdeling for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_edoc_casefile_id:label" msgid "eDoc-sagsnr." -msgstr "eDoc-sagsnr." +msgstr "" msgctxt "field.field.node.hearing.field_edoc_casefile_id:description" msgid "Indtast eDoc-sagsnr. for høringen." -msgstr "Indtast eDoc-sagsnr. for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_getorganized_case_id:label" msgid "GetOrganized-sags-ID" -msgstr "GetOrganized-sags-ID" +msgstr "" msgctxt "field.field.node.hearing.field_getorganized_case_id:description" msgid "Indtast GetOrganized-sags-ID for høringen." -msgstr "Indtast GetOrganized-sags-ID for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_hearing_ticket_add:label" msgid "Tilføj høringssvar" -msgstr "Tilføj høringssvar" +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 "" -"Her kan du linke til tilføjelse af høringssvar i et eksternt " -"høringssvarsystem" msgctxt "field.field.node.hearing.field_hearing_ticket_list:label" msgid "Vis høringssvar" -msgstr "Vis høringssvar" +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 "" -"Her kan du linke til visning af høringssvar i et eksternt " -"høringssvarsystem" msgctxt "field.field.node.hearing.field_lokalplaner:label" msgid "Lokalplaner" -msgstr "Lokalplaner" +msgstr "" msgctxt "field.field.node.hearing.field_lokalplaner:description" msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" -msgstr "https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgstr "" msgctxt "field.field.node.hearing.field_map:label" msgid "Kortvisning" -msgstr "Kortvisning" +msgstr "" msgctxt "field.field.node.hearing.field_map:description" msgid "Vælg kortvisning for høringen." -msgstr "Vælg kortvisning for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_map_display:label" msgid "Kortvisning" -msgstr "Kortvisning" +msgstr "" msgctxt "field.field.node.hearing.field_map_display:description" msgid "" @@ -1078,77 +1130,74 @@ msgid "" "href=\"http://geojson.io/#map=13/56.1464/10.1739\">http://geojson.io/#map=13/56.1464/10.1739 " "og kopiér den genererede json kode ind i dette felt." msgstr "" -"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." msgctxt "field.field.node.hearing.field_media_document:label" msgid "Dokumenter" -msgstr "Dokumenter" +msgstr "" msgctxt "field.field.node.hearing.field_media_document:description" msgid "Vælg dokumenter der beskriver høringen." -msgstr "Vælg dokumenter der beskriver høringen." +msgstr "" msgctxt "field.field.node.hearing.field_media_image:label" msgid "Billeder" -msgstr "Billeder" +msgstr "" msgctxt "field.field.node.hearing.field_media_image:description" msgid "Vælg billeder der skal vises på høringssiden." -msgstr "Vælg billeder der skal vises på høringssiden." +msgstr "" msgctxt "field.field.node.hearing.field_more_info:label" msgid "Vil du vide mere?" -msgstr "Vil du vide mere?" +msgstr "" msgctxt "field.field.node.hearing.field_project_reference:label" msgid "Projekttidslinje" -msgstr "Projekttidslinje" +msgstr "" msgctxt "field.field.node.hearing.field_project_reference:description" msgid "Vælg den projekttidslinje som høringen er tilknyttet." -msgstr "Vælg den projekttidslinje som høringen er tilknyttet." +msgstr "" msgctxt "field.field.node.hearing.field_reply_deadline:label" msgid "Svarfrist" -msgstr "Svarfrist" +msgstr "" msgctxt "field.field.node.hearing.field_reply_deadline:description" msgid "Vælg hvornår der er svarfrist for høringen." -msgstr "Vælg hvornår der er svarfrist for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_start_date:label" msgid "Startdato" -msgstr "Startdato" +msgstr "" msgctxt "field.field.node.hearing.field_start_date:description" msgid "Vælg startdato for høringen." -msgstr "Vælg startdato for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_tags:label" msgid "Emneord" -msgstr "Emneord" +msgstr "" msgctxt "field.field.node.hearing.field_tags:description" msgid "Vælg emneord for høringen." -msgstr "Vælg emneord for høringen." +msgstr "" msgctxt "field.field.node.hearing.field_teaser:label" msgid "Teaser/indledning" -msgstr "Teaser/indledning" +msgstr "" msgctxt "field.field.node.hearing.field_teaser:description" msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" -msgstr "Kort tekst der vises i teasers og i toppen af indholdsviningen" +msgstr "" msgctxt "field.field.node.hearing.field_type:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "field.field.node.hearing.field_video_embed:label" msgid "Video embed" -msgstr "Video embed" +msgstr "" msgctxt "field.field.node.hearing.field_video_embed:description" msgid "" @@ -1158,35 +1207,46 @@ msgid "" "Hvis du er i tvivl kan " "du spørge den GDPR ansvarlige i din afdeling." msgstr "" -"Tilføj video embed code.\r\n" -"Det er redaktørens ansvar at videoen " -"overholder kommunens GDPR retningslinjer. \r\n" -"Hvis du er i tvivl kan " -"du spørge den GDPR ansvarlige i din afdeling." msgctxt "field.field.node.landing_page.field_media_image_single:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "field.field.node.landing_page.field_section:label" msgid "Indholds region" -msgstr "Indholds region" +msgstr "" msgctxt "field.field.node.landing_page.field_section:description" msgid "Vælg den type indhold du ønsker at indsætte" -msgstr "Vælg den type indhold du ønsker at indsætte" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:label" +msgid "Show page title" +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 "field.field.node.landing_page.field_show_page_title:settings:on_label" +msgid "On" +msgstr "" + +msgctxt "field.field.node.landing_page.field_show_page_title:settings:off_label" +msgid "Off" +msgstr "" msgctxt "field.field.node.landing_page.field_teaser:label" msgid "Teaser/indledning" -msgstr "Teaser/indledning" +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 "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "" msgctxt "field.field.node.page_map.field_map_configuration:label" msgid "Map configuration" -msgstr "Map configuration" +msgstr "" msgctxt "field.field.node.page_map.field_map_configuration:description" msgid "" @@ -1195,46 +1255,40 @@ msgid "" "The " "value can also be a URL pointing to a JSON map configuration." msgstr "" -"Map configuration as JSON or YAML or a path (relative to the site's " -"files folder) of a file containing JSON or YAML.\r\n" -"The " -"value can also be a URL pointing to a JSON map configuration." msgctxt "field.field.node.page_map.field_map_type:label" msgid "Map type" -msgstr "Map type" +msgstr "" msgctxt "field.field.node.project.field_description:label" msgid "Beskrivelse" -msgstr "Beskrivelse" +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 "" -"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun i " -"backend som eventuel hjælp til redaktørerne." msgctxt "field.field.node.project.field_project_finish:label" msgid "Projektafslutning" -msgstr "Projektafslutning" +msgstr "" msgctxt "field.field.node.project.field_project_finish:description" msgid "Vælg afslutningsdato for projektet." -msgstr "Vælg afslutningsdato for projektet." +msgstr "" msgctxt "field.field.node.project.field_project_start:label" msgid "Projekt start" -msgstr "Projekt start" +msgstr "" msgctxt "field.field.node.project.field_project_start:description" msgid "Vælg startdato for projektet." -msgstr "Vælg startdato for projektet." +msgstr "" msgctxt "field.field.node.project.field_timeline_items:label" msgid "Tidslinjepunkter" -msgstr "Tidslinjepunkter" +msgstr "" msgctxt "field.field.node.project.field_timeline_items:description" msgid "" @@ -1243,34 +1297,28 @@ msgid "" "Du kan bruge dette felt til " "at plotte flere relevante punkter ind." msgstr "" -"Start og slut dato og alle høringer og borgermøde fra systemet " -"plottes automatisk ind på tidslinjen.\r\n" -"Du kan bruge dette felt til " -"at plotte flere relevante punkter ind." msgctxt "field.field.node.project_main_page.field_area:label" msgid "Område" -msgstr "Område" +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 "" -"Vælg områder som projektet vedrører. Markér alle hvis projektet " -"dækker hele kommunen." msgctxt "field.field.node.project_main_page.field_content_sections:label" msgid "Content sections" -msgstr "Content sections" +msgstr "" msgctxt "field.field.node.project_main_page.field_content_sections:description" msgid "Used to create page sections with the Drupal Paragraphs module" -msgstr "Used to create page sections with the Drupal Paragraphs module" +msgstr "" msgctxt "field.field.node.project_main_page.field_project_category:label" msgid "Project category" -msgstr "Project category" +msgstr "" msgctxt "field.field.node.project_main_page.field_project_category:description" msgid "" @@ -1278,37 +1326,34 @@ msgid "" "href=\"/admin/structure/taxonomy/manage/project_categories/overview\">Create " "new categories here" msgstr "" -"Used to categorize the project. Create " -"new categories here" msgctxt "field.field.node.project_main_page.field_project_image:label" msgid "Project image" -msgstr "Project image" +msgstr "" msgctxt "field.field.node.project_main_page.field_project_image:description" msgid "Used to show project image" -msgstr "Used to show project image" +msgstr "" msgctxt "field.field.node.project_main_page.field_short_description:label" msgid "Short description" -msgstr "Short description" +msgstr "" msgctxt "field.field.node.project_main_page.field_short_description:description" msgid "Short description of the project." -msgstr "Short description of the project." +msgstr "" msgctxt "field.field.node.project_page.field_content_sections:label" msgid "Content sections" -msgstr "Content sections" +msgstr "" msgctxt "field.field.node.project_page.field_content_sections:description" msgid "Used to create page sections with the Drupal Paragraphs module" -msgstr "Used to create page sections with the Drupal Paragraphs module" +msgstr "" msgctxt "field.field.node.project_page.field_project_category:label" msgid "Project category" -msgstr "Project category" +msgstr "" msgctxt "field.field.node.project_page.field_project_category:description" msgid "" @@ -1316,61 +1361,56 @@ msgid "" "href=\"/admin/structure/taxonomy/manage/project_categories/overview\">Create " "new categories here" msgstr "" -"Used to categorize the project. Create " -"new categories here" msgctxt "field.field.node.public_meeting.field_area:label" msgid "Område" -msgstr "Område" +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 "" -"Vælg områder som borgermødet dækker. Markér alle hvis " -"borgermødet dækker hele kommunen." msgctxt "field.field.node.public_meeting.field_cancelled_date:label" msgid "Cancelled date" -msgstr "Cancelled date" +msgstr "" msgctxt "field.field.node.public_meeting.field_cancelled_text:label" msgid "Cancelled text" -msgstr "Cancelled text" +msgstr "" msgctxt "field.field.node.public_meeting.field_contact:label" msgid "Kontakt" -msgstr "Kontakt" +msgstr "" msgctxt "field.field.node.public_meeting.field_content_state:label" msgid "Content state" -msgstr "Content state" +msgstr "" msgctxt "field.field.node.public_meeting.field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "field.field.node.public_meeting.field_description:label" msgid "Beskrivelse" -msgstr "Beskrivelse" +msgstr "" msgctxt "field.field.node.public_meeting.field_description:description" msgid "Beskrivelse af borgemødet." -msgstr "Beskrivelse af borgemødet." +msgstr "" msgctxt "field.field.node.public_meeting.field_email_address:label" msgid "Email address" -msgstr "Email address" +msgstr "" msgctxt "field.field.node.public_meeting.field_email_address:description" msgid "Enter the contact email address." -msgstr "Enter the contact email address." +msgstr "" msgctxt "field.field.node.public_meeting.field_first_meeting_time:label" msgid "First meeting time" -msgstr "First meeting time" +msgstr "" msgctxt "field.field.node.public_meeting.field_first_meeting_time:description" msgid "" @@ -1378,579 +1418,679 @@ msgid "" "first meeting in case of multiple event dates. We need this value for " "views sorting and displays." msgstr "" -"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." msgctxt "field.field.node.public_meeting.field_hidden_signup:label" msgid "Skjul tilmelding" -msgstr "Skjul tilmelding" +msgstr "" msgctxt "field.field.node.public_meeting.field_hidden_signup:description" msgid "Check denne boks hvis du ønsker at skjule tilmelding i frontend" -msgstr "Check denne boks hvis du ønsker at skjule tilmelding i frontend" +msgstr "" msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "field.field.node.public_meeting.field_last_meeting_time:label" msgid "Mødedato" -msgstr "Mødedato" +msgstr "" msgctxt "field.field.node.public_meeting.field_last_meeting_time_end:label" msgid "Sluttidspunkt" -msgstr "Sluttidspunkt" +msgstr "" msgctxt "field.field.node.public_meeting.field_map:label" msgid "Kortvisning" -msgstr "Kortvisning" +msgstr "" msgctxt "field.field.node.public_meeting.field_media_document:label" msgid "Dokumenter" -msgstr "Dokumenter" +msgstr "" msgctxt "field.field.node.public_meeting.field_media_document:description" msgid "Vælg dokumenter der beskriver høringen." -msgstr "Vælg dokumenter der beskriver høringen." +msgstr "" msgctxt "field.field.node.public_meeting.field_media_image_single:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "field.field.node.public_meeting.field_media_image_single:description" msgid "Vælg billeder der skal vises i teaservisningen." -msgstr "Vælg billeder der skal vises i teaservisningen." +msgstr "" msgctxt "field.field.node.public_meeting.field_pretix_dates:label" msgid "Tilmelding" -msgstr "Tilmelding" +msgstr "" msgctxt "field.field.node.public_meeting.field_pretix_event_settings:label" msgid "pretix-indstillinger" -msgstr "pretix-indstillinger" +msgstr "" msgctxt "field.field.node.public_meeting.field_project_reference:label" msgid "Projekttidslinje" -msgstr "Projekttidslinje" +msgstr "" msgctxt "field.field.node.public_meeting.field_project_reference:description" msgid "Vælg tidslinje som borgermødet er knyttet til." -msgstr "Vælg tidslinje som borgermødet er knyttet til." +msgstr "" msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:label" msgid "Cancelled" -msgstr "Cancelled" +msgstr "" msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:description" msgid "Check this box if the meeting is cancelled" -msgstr "Check this box if the meeting is cancelled" +msgstr "" msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:on_label" msgid "Tilsluttet" -msgstr "Tilsluttet" +msgstr "" msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:off_label" msgid "Afbrudt" -msgstr "Afbrudt" +msgstr "" msgctxt "field.field.node.public_meeting.field_registration_deadline:label" msgid "Tilmeldingsfrist" -msgstr "Tilmeldingsfrist" +msgstr "" msgctxt "field.field.node.public_meeting.field_section:label" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "field.field.node.public_meeting.field_signup_link:label" msgid "Tilmeldingslink" -msgstr "Tilmeldingslink" +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 "" -"Skiv en god og præcis linktekst der forklarer hvad der sker når man " -"trykker på linket, fx “Gå til tilmelding på NemTilmeld”." msgctxt "field.field.node.public_meeting.field_signup_selection:label" msgid "Vælg tilmeldingstype" -msgstr "Vælg tilmeldingstype" +msgstr "" msgctxt "field.field.node.public_meeting.field_signup_selection:description" msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." -msgstr "Bemærk at du ikke kan ændre tilmeldingstypen senere." +msgstr "" msgctxt "field.field.node.public_meeting.field_signup_text:label" msgid "Tilmeldingstekst" -msgstr "Tilmeldingstekst" +msgstr "" msgctxt "field.field.node.public_meeting.field_signup_text:description" msgid "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." -msgstr "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." +msgstr "" msgctxt "field.field.node.public_meeting.field_teaser:label" msgid "Teaser/indledning" -msgstr "Teaser/indledning" +msgstr "" msgctxt "field.field.node.public_meeting.field_teaser:description" msgid "Kort tekst der vises i teasers og i toppen af indholdsvisningen" -msgstr "Kort tekst der vises i teasers og i toppen af indholdsvisningen" +msgstr "" msgctxt "field.field.node.public_meeting.field_type:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "field.field.node.static_page.field_media_image_single:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "field.field.node.static_page.field_media_image_single:description" msgid "Billede til visning i header" -msgstr "Billede til visning i header" +msgstr "" msgctxt "field.field.node.static_page.field_section:label" msgid "Indholds region" -msgstr "Indholds region" +msgstr "" msgctxt "field.field.node.static_page.field_sidebar:label" msgid "Sidebar" -msgstr "Sidebar" +msgstr "" msgctxt "field.field.node.static_page.field_sidebar:description" msgid "Tekst til visning i højre side på fuldskærmsvisning" -msgstr "Tekst til visning i højre side på fuldskærmsvisning" +msgstr "" msgctxt "field.field.node.static_page.field_teaser:label" msgid "Teaser/indledning" -msgstr "Teaser/indledning" +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 "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgstr "" msgctxt "field.field.node.static_page.field_teaser_color:label" msgid "Teaser color" -msgstr "Teaser color" +msgstr "" msgctxt "field.field.paragraph.content_block.field_content_block_text:label" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "field.field.paragraph.content_block.field_paragraph_image:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "field.field.paragraph.content_block.field_paragraph_title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "field.field.paragraph.content_list.field_content_list:label" msgid "Indholdsliste" -msgstr "Indholdsliste" +msgstr "" msgctxt "field.field.paragraph.content_list.field_list_title:label" msgid "Liste titel" -msgstr "Liste titel" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_abstract:label" +msgid "Abstract" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_abstract:description" +msgid "Used to quickly introduce the overall article content." +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_button:label" +msgid "Button" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_button:description" +msgid "Used to create a button" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_lead:label" +msgid "Lead" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_lead:description" +msgid "Short text to lead a Title" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:label" +msgid "Background image" +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.content_promotion.field_title:label" +msgid "Title" +msgstr "" + +msgctxt "field.field.paragraph.content_promotion.field_title:description" +msgid "Used for the title" +msgstr "" msgctxt "field.field.paragraph.files.field_files:label" msgid "Files" -msgstr "Files" +msgstr "" msgctxt "field.field.paragraph.files.field_files:description" msgid "Used to reference the files" -msgstr "Used to reference the files" +msgstr "" msgctxt "field.field.paragraph.files.field_title:label" msgid "Title" -msgstr "Title" +msgstr "" msgctxt "field.field.paragraph.files.field_title:description" msgid "Used for the title" -msgstr "Used for the title" +msgstr "" msgctxt "field.field.paragraph.image.field_paragraph_image:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "field.field.paragraph.info_box.field_content_block_text:label" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "field.field.paragraph.info_box.field_paragraph_title:label" msgid "Overskrift" -msgstr "Overskrift" +msgstr "" msgctxt "field.field.paragraph.info_box.field_variant:label" msgid "Variant" -msgstr "Variant" +msgstr "" msgctxt "field.field.paragraph.info_box.field_variant:description" msgid "Used to set the variant style for the info box." -msgstr "Used to set the variant style for the info box." +msgstr "" msgctxt "field.field.paragraph.introduction.field_intro_body:label" msgid "Introduktion" -msgstr "Introduktion" +msgstr "" msgctxt "field.field.paragraph.introduction.field_intro_link:label" msgid "Link" -msgstr "Link" +msgstr "" msgctxt "field.field.paragraph.introduction.field_paragraph_title:label" msgid "Titel" -msgstr "Titel" +msgstr "" -msgctxt "field.field.paragraph.projekt_billede_galleri.field_external_link:label" -msgid "Eksternt link" -msgstr "Eksternt link" +msgctxt "field.field.paragraph.link.field_button_variant:label" +msgid "Button variant" +msgstr "" -msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" -msgid "Billedegalleri" -msgstr "Billedegalleri" +msgctxt "field.field.paragraph.link.field_decorative_arrow:label" +msgid "Decorative arrow" +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." +msgctxt "field.field.paragraph.link.field_decorative_arrow:description" +msgid "Whether to show a decorative arrow or not." msgstr "" -"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." -msgctxt "field.field.paragraph.teaser_row.field_content:label" -msgid "Content" -msgstr "Content" +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:on_label" +msgid "On" +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 "Used to select up to 3 content items to show in the row" +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:off_label" +msgid "Off" +msgstr "" -msgctxt "field.field.paragraph.teaser_row.field_paragraph_title:label" -msgid "Titel" -msgstr "Titel" +msgctxt "field.field.paragraph.link.field_icon:label" +msgid "Icon" +msgstr "" + +msgctxt "field.field.paragraph.link.field_icon:description" +msgid "Select an icon" +msgstr "" + +msgctxt "field.field.paragraph.link.field_link:label" +msgid "Link" +msgstr "" + +msgctxt "field.field.paragraph.link.field_link:description" +msgid "Select the content to link to" +msgstr "" + +msgctxt "field.field.paragraph.links_on_a_background_image.field_links_list:label" +msgid "Links list" +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 "field.field.paragraph.links_on_a_background_image.field_paragraph_image:label" +msgid "Background image" +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 "field.field.paragraph.projekt_billede_galleri.field_external_link:label" +msgid "Eksternt link" +msgstr "" + +msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" +msgid "Billedegalleri" +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 "field.field.paragraph.teaser_row.field_content:label" +msgid "Content" +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.paragraph.teaser_row.field_paragraph_title:label" +msgid "Titel" +msgstr "" msgctxt "field.field.paragraph.text.field_content_block_text:label" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "field.field.paragraph.text.field_external_link:label" msgid "Link" -msgstr "Link" +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:label" msgid "Abstract" -msgstr "Abstract" +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:description" msgid "Used to quickly introduce the overall article content." -msgstr "Used to quickly introduce the overall article content." +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:label" msgid "Aside block" -msgstr "Aside block" +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 "" -"Used to add a block with contact information. The blocks can be managed under the blocks section" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:label" msgid "Body" -msgstr "Body" +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:description" msgid "Used for the body text" -msgstr "Used for the body text" +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:label" msgid "Title" -msgstr "Title" +msgstr "" msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:description" msgid "Used for the title" -msgstr "Used for the title" +msgstr "" msgctxt "field.field.paragraph.timeline_items.field_timeline_date:label" msgid "Dato" -msgstr "Dato" +msgstr "" msgctxt "field.field.paragraph.timeline_items.field_timeline_description:label" msgid "Beskrivelse" -msgstr "Beskrivelse" +msgstr "" msgctxt "field.field.paragraph.timeline_items.field_timeline_link:label" msgid "Link" -msgstr "Link" +msgstr "" msgctxt "field.field.paragraph.timeline_items.field_timeline_taxonomy_type:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "field.field.paragraph.timeline_items.field_timeline_title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_date:label" msgid "Dato" -msgstr "Dato" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_description:label" msgid "Beskrivelse" -msgstr "Beskrivelse" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_end_date:label" msgid "Slutdato" -msgstr "Slutdato" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_link:label" msgid "Link" -msgstr "Link" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_taxonomy_type:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "field.field.paragraph.timeline_period.field_timeline_title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "field.field.taxonomy_term.area.field_area_id:label" msgid "Postnummer" -msgstr "Postnummer" +msgstr "" msgctxt "field.field.taxonomy_term.department.field_claim_value:label" msgid "Claim value" -msgstr "Claim value" +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 "" -"The claim value to match. If not set, the name of the term itself will " -"be used." msgctxt "field.field.taxonomy_term.timeline_item_types.field_timeline_item_color:label" msgid "Punktfarve" -msgstr "Punktfarve" +msgstr "" msgctxt "field.field.user.user.field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "field.storage.block_content.field_color:settings:allowed_values:0:label" msgid "Mint" -msgstr "Mint" +msgstr "" msgctxt "field.storage.block_content.field_color:settings:allowed_values:1:label" msgid "Peach" -msgstr "Peach" +msgstr "" msgctxt "field.storage.block_content.field_color:settings:allowed_values:2:label" msgid "Stone" -msgstr "Stone" +msgstr "" msgctxt "field.storage.node.field_content_state:settings:allowed_values:0:label" msgid "Kommende" -msgstr "Kommende" +msgstr "" msgctxt "field.storage.node.field_content_state:settings:allowed_values:1:label" msgid "I gang" -msgstr "I gang" +msgstr "" msgctxt "field.storage.node.field_content_state:settings:allowed_values:2:label" msgid "Afsluttet" -msgstr "Afsluttet" +msgstr "" msgctxt "field.storage.node.field_map_type:settings:allowed_values:0:label" msgid "Septima Widget" -msgstr "Septima Widget" +msgstr "" msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:0:label" msgid "Benyt tilmeldingssystem" -msgstr "Benyt tilmeldingssystem" +msgstr "" msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:1:label" msgid "Benyt ikke tilmeldingssystem" -msgstr "Benyt ikke tilmeldingssystem" +msgstr "" msgctxt "field.storage.node.field_teaser_color:settings:format" msgid "#HEXHEX" -msgstr "#HEXHEX" +msgstr "" + +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:0:label" +msgid "Petroleum" +msgstr "" + +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:1:label" +msgid "White" +msgstr "" msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:0:label" msgid "Danger" -msgstr "Danger" +msgstr "" msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:1:label" msgid "Warning" -msgstr "Warning" +msgstr "" msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:2:label" msgid "Info" -msgstr "Info" +msgstr "" msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:3:label" msgid "Petroleum light" -msgstr "Petroleum light" +msgstr "" msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:4:label" msgid "Petroleum" -msgstr "Petroleum" +msgstr "" msgctxt "field.storage.taxonomy_term.field_timeline_item_color:settings:format" msgid "#HEXHEX" -msgstr "#HEXHEX" +msgstr "" msgctxt "filter.format.citizen_proposal_content:name" msgid "Citizen proposal content" -msgstr "Citizen proposal content" +msgstr "" msgctxt "filter.format.email_html:name" msgid "Email HTML" -msgstr "Email HTML" +msgstr "" msgctxt "filter.format.filtered_html:name" msgid "Filtered html" -msgstr "Filtered html" +msgstr "" msgctxt "filter.format.hearing_description:name" msgid "Hearing description" -msgstr "Hearing description" +msgstr "" msgctxt "filter.format.plain_text:name" -msgid "Ren tekst" -msgstr "Ren tekst" +msgid "Plain text" +msgstr "" msgctxt "image.style.carousel_300x168:label" msgid "Carousel 576x322" -msgstr "Carousel 576x322" +msgstr "" msgctxt "image.style.crop_thumbnail:label" msgid "Crop thumbnail" -msgstr "Crop thumbnail" +msgstr "" msgctxt "image.style.hero:label" msgid "Hero (1440w) - Crop" -msgstr "Hero (1440w) - Crop" +msgstr "" msgctxt "image.style.medium:label" -msgid "Mellem (220×220)" -msgstr "Mellem (220×220)" +msgid "Medium (330×330)" +msgstr "" msgctxt "image.style.responsive_large_default:label" msgid "Responsive large default" -msgstr "Responsive large default" +msgstr "" msgctxt "image.style.responsive_large_default_x2:label" msgid "Responsive large default (x2)" -msgstr "Responsive large default (x2)" +msgstr "" msgctxt "image.style.responsive_medium_default:label" msgid "Responsive medium default" -msgstr "Responsive medium default" +msgstr "" msgctxt "image.style.responsive_medium_default_x2:label" msgid "Responsive medium default (x2)" -msgstr "Responsive medium default (x2)" +msgstr "" msgctxt "image.style.responsive_small_default:label" msgid "Responsive small default" -msgstr "Responsive small default" +msgstr "" msgctxt "image.style.responsive_small_default_x2:label" msgid "Responsive small default (x2)" -msgstr "Responsive small default (x2)" +msgstr "" msgctxt "image.style.responsive_small_teaser:label" msgid "Responsive small teaser" -msgstr "Responsive small teaser" +msgstr "" msgctxt "image.style.responsive_small_teaser_x2:label" msgid "Responsive small teaser (x2)" -msgstr "Responsive small teaser (x2)" +msgstr "" msgctxt "image.style.responsive_xsmall_default:label" msgid "Responsive xsmall default" -msgstr "Responsive xsmall default" +msgstr "" msgctxt "image.style.responsive_xsmall_default_x2:label" msgid "Responsive xsmall default (x2)" -msgstr "Responsive xsmall default (x2)" +msgstr "" msgctxt "image.style.responsive_xsmall_teaser:label" msgid "Responsive xsmall teaser" -msgstr "Responsive xsmall teaser" +msgstr "" msgctxt "image.style.responsive_xsmall_teaser_x2:label" msgid "Responsive xsmall teaser (x2)" -msgstr "Responsive xsmall teaser (x2)" +msgstr "" msgctxt "image.style.thumbnail:label" msgid "Thumbnail (100×100)" -msgstr "Thumbnail (100×100)" +msgstr "" + +msgctxt "image.style.vector_image:label" +msgid "Vector image" +msgstr "" msgctxt "language.entity.da:label" msgid "Danish" -msgstr "Danish" +msgstr "" msgctxt "language.entity.und:label" -msgid "Ikke angivet" -msgstr "Ikke angivet" +msgid "Not specified" +msgstr "" msgctxt "language.entity.zxx:label" -msgid "ikke relevant" -msgstr "ikke relevant" +msgid "Not applicable" +msgstr "" msgctxt "media.type.document:label" msgid "Document" -msgstr "Document" +msgstr "" msgctxt "media.type.document:description" msgid "A document to be stored in the media library" -msgstr "A document to be stored in the media library" +msgstr "" + +msgctxt "media.type.icon:label" +msgid "Icon" +msgstr "" + +msgctxt "media.type.icon:description" +msgid "Vector images used to display icons" +msgstr "" msgctxt "media.type.image:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "media.type.image:description" msgid "An image to be stored in the media library" -msgstr "An image to be stored in the media library" +msgstr "" msgctxt "node.type.citizen_proposal:name" msgid "Borgerforslag" -msgstr "Borgerforslag" +msgstr "" msgctxt "node.type.citizen_proposal:description" msgid "Et borgerforslag" -msgstr "Et borgerforslag" +msgstr "" msgctxt "node.type.hearing:name" msgid "Høring" -msgstr "Høring" +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 "" -"En høring knyttes til et eksisterende projekt. Alle høringer har en " -"reference til Deskpro, så data kan hentes ind." msgctxt "node.type.landing_page:name" msgid "Oversigtsside" -msgstr "Oversigtsside" +msgstr "" msgctxt "node.type.landing_page:description" msgid "" @@ -1958,61 +2098,54 @@ msgid "" "kategori.\r\n" "Eksempler: Forside, Projekter, Høringer." msgstr "" -"Oversigtsside til opsamling af alt indhold indenfor en " -"kategori.\r\n" -"Eksempler: Forside, Projekter, Høringer." msgctxt "node.type.page_map:name" msgid "Kort" -msgstr "Kort" +msgstr "" msgctxt "node.type.page_map:description" msgid "Side med et stort kort" -msgstr "Side med et stort kort" +msgstr "" msgctxt "node.type.project:name" msgid "Projekttidslinje" -msgstr "Projekttidslinje" +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 "" -"En projekttidslinje der samler relaterede borgermøder og initiativer " -"i en kronologi. Det er muligt at tilføje ekstra tidslinje punkter." msgctxt "node.type.project_main_page:name" msgid "Project" -msgstr "Project" +msgstr "" msgctxt "node.type.project_main_page:description" msgid "Use this to create a project page" -msgstr "Use this to create a project page" +msgstr "" msgctxt "node.type.project_page:name" msgid "Project page" -msgstr "Project page" +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 "" -"Used to create sub pages for projects. Fx. faq page, image gallery " -"page, process page and more. " msgctxt "node.type.public_meeting:name" msgid "Begivenhed" -msgstr "Begivenhed" +msgstr "" msgctxt "node.type.public_meeting:description" msgid "En begivenhed" -msgstr "En begivenhed" +msgstr "" msgctxt "node.type.static_page:name" msgid "Statisk side" -msgstr "Statisk side" +msgstr "" msgctxt "node.type.static_page:description" msgid "" @@ -2020,65 +2153,84 @@ msgid "" "Eksempler: Cookie " "politik, \"Om\" side, FAQ" msgstr "" -"Bruges til indhold der sjældent ændres.\r\n" -"Eksempler: Cookie " -"politik, \"Om\" side, FAQ" msgctxt "paragraphs.paragraphs_type.content_block:label" msgid "Indholdsblok" -msgstr "Indholdsblok" +msgstr "" msgctxt "paragraphs.paragraphs_type.content_block:description" msgid "" "En indholdsblok til visning af kort text med mulighed for at tilknytte " "et billede." msgstr "" -"En indholdsblok til visning af kort text med mulighed for at tilknytte " -"et billede." msgctxt "paragraphs.paragraphs_type.content_list:label" msgid "Indholdsliste" -msgstr "Indholdsliste" +msgstr "" msgctxt "paragraphs.paragraphs_type.content_list:description" msgid "" "Vælg en færdigbygget liste af indholdselementer der automatisk " "opdateres med nyt indhold." msgstr "" -"Vælg en færdigbygget liste af indholdselementer der automatisk " -"opdateres med nyt indhold." + +msgctxt "paragraphs.paragraphs_type.content_promotion:label" +msgid "Content promotion" +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 "paragraphs.paragraphs_type.files:label" msgid "Files" -msgstr "Files" +msgstr "" msgctxt "paragraphs.paragraphs_type.files:description" msgid "Used to upload files that the user can download" -msgstr "Used to upload files that the user can download" +msgstr "" msgctxt "paragraphs.paragraphs_type.image:label" msgid "Billede" -msgstr "Billede" +msgstr "" msgctxt "paragraphs.paragraphs_type.image:description" msgid "Et billede til visning i fuld bredde" -msgstr "Et billede til visning i fuld bredde" +msgstr "" msgctxt "paragraphs.paragraphs_type.info_box:label" msgid "Infoboks" -msgstr "Infoboks" +msgstr "" msgctxt "paragraphs.paragraphs_type.introduction:label" msgid "Introduktion" -msgstr "Introduktion" +msgstr "" msgctxt "paragraphs.paragraphs_type.introduction:description" msgid "En simpel introduktionstekst med mulighed for header og link" -msgstr "En simpel introduktionstekst med mulighed for header og 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 "paragraphs.paragraphs_type.links_on_a_background_image:label" +msgid "Links on a background image" +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 "paragraphs.paragraphs_type.projekt_billede_galleri:label" msgid "Initiativ billede galleri" -msgstr "Initiativ billede galleri" +msgstr "" msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:description" msgid "" @@ -2087,134 +2239,128 @@ msgid "" "For at få den bedste visuelle effekt bør der " "vises minimum et billede og gerne flere." msgstr "" -"Mulighed for visning af billeder galleri og link til ekstern " -"billedeservice.\r\n" -"For at få den bedste visuelle effekt bør der " -"vises minimum et billede og gerne flere." msgctxt "paragraphs.paragraphs_type.teaser_row:label" msgid "Teaser række" -msgstr "Teaser række" +msgstr "" msgctxt "paragraphs.paragraphs_type.teaser_row:description" msgid "En række teasers der linker til andet indhold" -msgstr "En række teasers der linker til andet indhold" +msgstr "" msgctxt "paragraphs.paragraphs_type.text:label" msgid "Tekst" -msgstr "Tekst" +msgstr "" msgctxt "paragraphs.paragraphs_type.text:description" msgid "Et tekstfelt med en wysiwyg editor" -msgstr "Et tekstfelt med en wysiwyg editor" +msgstr "" msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:label" msgid "Text + aside blocks (2 column)" -msgstr "Text + aside blocks (2 column)" +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 "" -"Used to create a content section with texts and aside blocks in 2 " -"columns." msgctxt "paragraphs.paragraphs_type.timeline_items:label" msgid "Tidslinje punkter" -msgstr "Tidslinje punkter" +msgstr "" msgctxt "paragraphs.paragraphs_type.timeline_items:description" msgid "Tilføj ekstra punkter til tidslinjen" -msgstr "Tilføj ekstra punkter til tidslinjen" +msgstr "" msgctxt "paragraphs.paragraphs_type.timeline_period:label" msgid "Tidslinje periode" -msgstr "Tidslinje periode" +msgstr "" msgctxt "paragraphs.paragraphs_type.timeline_period:description" msgid "Tilføj perioder til tidslinjen" -msgstr "Tilføj perioder til tidslinjen" +msgstr "" msgctxt "pathauto.pattern.hearings:label" msgid "Hearings" -msgstr "Hearings" +msgstr "" msgctxt "pathauto.pattern.initiative:label" msgid "Initiative" -msgstr "Initiative" +msgstr "" msgctxt "pathauto.pattern.overview_page:label" msgid "Overview page" -msgstr "Overview page" +msgstr "" msgctxt "pathauto.pattern.project:label" msgid "Project" -msgstr "Project" +msgstr "" msgctxt "pathauto.pattern.static_page:label" msgid "Static page" -msgstr "Static page" +msgstr "" msgctxt "responsive_image.styles.content_image:label" msgid "Content image" -msgstr "Content image" +msgstr "" msgctxt "responsive_image.styles.teaser_image:label" msgid "Teaser image" -msgstr "Teaser image" +msgstr "" msgctxt "search_api.index.content:name" msgid "content" -msgstr "content" +msgstr "" msgctxt "search_api.server.local:name" msgid "local" -msgstr "local" +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_block:label" msgid "Search Block" -msgstr "Search Block" +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_block:noResultLabel" msgid "No results found for [search-phrase]. Click to perform full search." -msgstr "No results found for [search-phrase]. Click to perform full search." +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_block:moreResultsLabel" msgid "View all results for [search-phrase]." -msgstr "View all results for [search-phrase]." +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:label" msgid "Search Form (content tab)" -msgstr "Search Form (content tab)" +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:noResultLabel" msgid "No results found containing the word [search-phrase]." -msgstr "No results found containing the word [search-phrase]." +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:moreResultsLabel" msgid "View all results containg term [search-phrase]." -msgstr "View all results containg term [search-phrase]." +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:label" msgid "Search Form (users tab)" -msgstr "Search Form (users tab)" +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:noResultLabel" msgid "No users found for [search-phrase]. Click to perform full search." -msgstr "No users found for [search-phrase]. Click to perform full search." +msgstr "" msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:moreResultsLabel" msgid "View all users for [search-phrase]." -msgstr "View all users for [search-phrase]." +msgstr "" msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_subject:value" msgid "Tak for dit borgerforslag på [site:url]" -msgstr "Tak for dit borgerforslag på [site:url]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_theme:theme" msgid "_active_fallback" -msgstr "_active_fallback" +msgstr "" msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_body:content:value" msgid "" @@ -2229,20 +2375,10 @@ msgid "" "Symfony Mailer\n" "" msgstr "" -"

You have mail

\n" -"

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

\n" -"

Have a great {{ day }}!

\n" -"

\n" -" " -"Drupal " -"Symfony Mailer\n" -"

" msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_subject:value" msgid "Test email from [site:name]" -msgstr "Test email from [site:name]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_body:content:value" msgid "" @@ -2267,34 +2403,14 @@ msgid "" "}}\">change your settings for what update notifications you " "receive.

" msgstr "" -"

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

\n" -"
    \n" -"{% for message in messages %}\n" -"
  • {{ message " -"}}
  • \n" -"{% endfor %}\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.

" msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_subject:value" msgid "New release(s) available for {{ site_name }}" -msgstr "New release(s) available for {{ site_name }}" +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 "Account cancellation request for [user:display-name] at [site:name]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user.cancel_confirm:configuration:email_body:content:value" msgid "" @@ -2308,22 +2424,13 @@ msgid "" "not reversible. This link expires in one day and nothing will happen " "if it is not used.

" msgstr "" -"

[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.

" - -msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_subject:value" -msgid "Replacement login information for [user:display-name] at [site:name]" -msgstr "Replacement login information for [user:display-name] at [site:name]" - -msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_body:content:value" -msgid "" + +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 "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 " msgstr "" -"

[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.

" 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 "An administrator created an account for you at [site:name]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user.register_admin_created:configuration:email_body:content:value" msgid "" @@ -2370,27 +2467,10 @@ msgid "" "
  • password: Your password
  • \n" "" msgstr "" -"

    [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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " 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 "Account details for [user:display-name] at [site:name]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user.register_no_approval_required:configuration:email_body:content:value" msgid "" @@ -2411,30 +2491,12 @@ msgid "" "
  • password: Your password
  • \n" "" msgstr "" -"

    [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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " 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 "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval:configuration:email_body:content:value" msgid "" @@ -2447,22 +2509,12 @@ msgid "" "receive another email containing information about how to log in, set " "your password, and other details.

    " msgstr "" -"

    [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.

    " 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 "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" msgctxt "symfony_mailer.mailer_policy.user.register_pending_approval_admin:configuration:email_body:content:value" msgid "" @@ -2471,18 +2523,12 @@ msgid "" "You may now use this link to approve the request.

    " msgstr "" -"

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

    " 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 "" -"Your account details for [user:display-name] at [site:name] " -"([site:url])" msgctxt "symfony_mailer.mailer_policy.user.status_activated:configuration:email_body:content:value" msgid "" @@ -2503,26 +2549,10 @@ msgid "" "
  • password: Your password
  • \n" "" msgstr "" -"

    [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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_subject:value" msgid "Account details for [user:display-name] at [site:name] (blocked)" -msgstr "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_body:content:value" msgid "" @@ -2530,17 +2560,14 @@ msgid "" "

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

    " msgstr "" -"

    [user:display-name],

    \n" -"

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

    " msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_skip_sending:message" msgid "Notification disabled in settings" -msgstr "Notification disabled in settings" +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 "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_body:content:value" msgid "" @@ -2548,17 +2575,14 @@ msgid "" "

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

    " msgstr "" -"

    [user:display-name],

    \n" -"

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

    " msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_skip_sending:message" msgid "Notification disabled in settings" -msgstr "Notification disabled in settings" +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 "Account details for [user:display-name] at [site:name]" +msgstr "" msgctxt "symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass:configuration:email_body:content:value" msgid "" @@ -2575,322 +2599,292 @@ msgid "" "
  • password: Your password
  • \n" "" msgstr "" -"

    [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" -"
      \n" -"
    • username: " -"[user:account-name]
    • \n" -"
    • password: Your password
    • \n" -"
    " msgctxt "symfony_mailer.mailer_policy._:configuration:email_theme:theme" msgid "_active_fallback" -msgstr "_active_fallback" +msgstr "" msgctxt "symfony_mailer.mailer_transport.sendmail:label" msgid "Sendmail" -msgstr "Sendmail" +msgstr "" msgctxt "symfony_mailer.mailer_transport.smtp:label" msgid "SMTP" -msgstr "SMTP" +msgstr "" msgctxt "system.action.media_delete_action:label" msgid "Delete media" -msgstr "Delete media" +msgstr "" msgctxt "system.action.media_publish_action:label" msgid "Publish media" -msgstr "Publish media" +msgstr "" msgctxt "system.action.media_save_action:label" msgid "Save media" -msgstr "Save media" +msgstr "" msgctxt "system.action.media_unpublish_action:label" msgid "Unpublish media" -msgstr "Unpublish media" +msgstr "" msgctxt "system.action.node_make_sticky_action:label" -msgid "Gør indhold klæbrigt" -msgstr "Gør indhold klæbrigt" +msgid "Make content sticky" +msgstr "" msgctxt "system.action.node_make_unsticky_action:label" -msgid "Fjern klæbrighed" -msgstr "Fjern klæbrighed" +msgid "Make content unsticky" +msgstr "" msgctxt "system.action.node_promote_action:label" -msgid "Vis indhold på forsiden" -msgstr "Vis indhold på forsiden" +msgid "Promote content to front page" +msgstr "" msgctxt "system.action.node_publish_action:label" -msgid "Udgiv indhold" -msgstr "Udgiv indhold" +msgid "Publish content" +msgstr "" msgctxt "system.action.node_save_action:label" -msgid "Gem indhold" -msgstr "Gem indhold" +msgid "Save content" +msgstr "" msgctxt "system.action.node_unpromote_action:label" -msgid "Fjern indhold fra forsiden" -msgstr "Fjern indhold fra forsiden" +msgid "Remove content from front page" +msgstr "" msgctxt "system.action.node_unpublish_action:label" -msgid "Afpubliceer indhold" -msgstr "Afpubliceer indhold" +msgid "Unpublish content" +msgstr "" msgctxt "system.action.pathauto_update_alias_node:label" -msgid "Opdatér alternativ URL" -msgstr "Opdatér alternativ URL" +msgid "Update URL alias" +msgstr "" msgctxt "system.action.pathauto_update_alias_user:label" msgid "Opdatér alternativ URL" -msgstr "Opdatér alternativ URL" +msgstr "" msgctxt "system.action.redirect_delete_action:label" msgid "Delete redirect" -msgstr "Delete redirect" +msgstr "" msgctxt "system.action.user_add_role_action.administrator:label" msgid "Add the Administrator role to the selected user(s)" -msgstr "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 "Add the Citizen proposal editor role to the selected user(s)" - -msgctxt "system.action.user_add_role_action.editor:label" -msgid "Add the Redaktør role to the selected user(s)" -msgstr "Add the Redaktør 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 "Add the hearing 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 "Add the Project 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 "Add the public meeting editor role to the selected user(s)" +msgstr "" msgctxt "system.action.user_block_user_action:label" -msgid "Blokér de(n) valgte bruger(e)" -msgstr "Blokér de(n) valgte bruger(e)" +msgid "Block the selected user(s)" +msgstr "" msgctxt "system.action.user_cancel_user_action:label" -msgid "Opsig de valgte brugerkonti" -msgstr "Opsig de valgte brugerkonti" +msgid "Cancel the selected user account(s)" +msgstr "" msgctxt "system.action.user_remove_role_action.administrator:label" msgid "Remove the Administrator role from the selected user(s)" -msgstr "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 "Remove the Citizen proposal editor role from the selected user(s)" - -msgctxt "system.action.user_remove_role_action.editor:label" -msgid "Remove the Redaktør role from the selected user(s)" -msgstr "Remove the Redaktør 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 "Remove the hearing 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 "Remove the Project 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 "Remove the public meeting editor role from the selected user(s)" +msgstr "" msgctxt "system.action.user_unblock_user_action:label" -msgid "Fjern blokering af de(n) valgte bruger(e)" -msgstr "Fjern blokering af de(n) valgte bruger(e)" +msgid "Unblock the selected user(s)" +msgstr "" msgctxt "system.action.webform_archive_action:label" msgid "Archive webform" -msgstr "Archive webform" +msgstr "" msgctxt "system.action.webform_close_action:label" msgid "Close webform" -msgstr "Close webform" +msgstr "" msgctxt "system.action.webform_delete_action:label" msgid "Delete webform" -msgstr "Delete webform" +msgstr "" msgctxt "system.action.webform_open_action:label" msgid "Open webform" -msgstr "Open webform" +msgstr "" msgctxt "system.action.webform_submission_delete_action:label" msgid "Delete submission" -msgstr "Delete submission" +msgstr "" msgctxt "system.action.webform_submission_make_lock_action:label" msgid "Lock submission" -msgstr "Lock submission" +msgstr "" msgctxt "system.action.webform_submission_make_sticky_action:label" msgid "Star/flag submission" -msgstr "Star/flag submission" +msgstr "" msgctxt "system.action.webform_submission_make_unlock_action:label" msgid "Unlock submission" -msgstr "Unlock submission" +msgstr "" msgctxt "system.action.webform_submission_make_unsticky_action:label" msgid "Unstar/unflag submission" -msgstr "Unstar/unflag submission" +msgstr "" msgctxt "system.action.webform_unarchive_action:label" msgid "Restore webform" -msgstr "Restore webform" +msgstr "" msgctxt "system.maintenance:message" msgid "" -"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " -"tålmodighed." +"@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." msgctxt "system.menu.account:label" -msgid "Brugerkontomenu" -msgstr "Brugerkontomenu" +msgid "User account menu" +msgstr "" msgctxt "system.menu.account:description" -msgid "Links relateret til den aktive brugerkonto" -msgstr "Links relateret til den aktive brugerkonto" +msgid "Links related to the active user account" +msgstr "" msgctxt "system.menu.admin:label" msgid "Administration" -msgstr "Administration" +msgstr "" msgctxt "system.menu.admin:description" -msgid "Links til administrative opgaver" -msgstr "Links til administrative opgaver" +msgid "Administrative task links" +msgstr "" msgctxt "system.menu.footer:label" msgid "Sidefod" -msgstr "Sidefod" +msgstr "" msgctxt "system.menu.footer:description" -msgid "Links til informationen om sitet" -msgstr "Links til informationen om sitet" +msgid "Site information links" +msgstr "" msgctxt "system.menu.main:label" -msgid "Primær navigation" -msgstr "Primær navigation" +msgid "Main navigation" +msgstr "" msgctxt "system.menu.main:description" -msgid "Links til sitets sektioner" -msgstr "Links til sitets sektioner" +msgid "Site section links" +msgstr "" msgctxt "system.menu.secondary-navigation:label" msgid "Sekundær navigation" -msgstr "Sekundær navigation" +msgstr "" msgctxt "system.menu.secondary-navigation:description" msgid "Lille menu til højre i header" -msgstr "Lille menu til højre i header" +msgstr "" msgctxt "system.menu.tools:label" msgid "Værktøjer" -msgstr "Værktøjer" +msgstr "" msgctxt "system.menu.tools:description" -msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" -msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" +msgid "User tool links, often added by modules" +msgstr "" msgctxt "system.site:name" msgid "Deltag Aarhus – Aarhus kommune" -msgstr "Deltag Aarhus – Aarhus kommune" +msgstr "" msgctxt "taxonomy.vocabulary.area:name" msgid "Område" -msgstr "Område" +msgstr "" msgctxt "taxonomy.vocabulary.area:description" msgid "" "Området vises i teaservisningen og kan bruges som filter på " "oversigter" msgstr "" -"Området vises i teaservisningen og kan bruges som filter på " -"oversigter" msgctxt "taxonomy.vocabulary.department:name" msgid "Afdeling" -msgstr "Afdeling" +msgstr "" msgctxt "taxonomy.vocabulary.department:description" msgid "Afdeling (Magistrat) for brugere og indhold" -msgstr "Afdeling (Magistrat) for brugere og indhold" +msgstr "" msgctxt "taxonomy.vocabulary.hearing_type:name" msgid "Høringstype" -msgstr "Høringstype" +msgstr "" msgctxt "taxonomy.vocabulary.hearing_type:description" msgid "" "De forskellige høringstyper der kan vælges imellem når en høring " "oprettes" msgstr "" -"De forskellige høringstyper der kan vælges imellem når en høring " -"oprettes" msgctxt "taxonomy.vocabulary.media_library:name" msgid "Medie bibliotek" -msgstr "Medie bibliotek" +msgstr "" msgctxt "taxonomy.vocabulary.media_library:description" msgid "En taksonomi der kan bruges til at strukturere mediebiblioteket" -msgstr "En taksonomi der kan bruges til at strukturere mediebiblioteket" +msgstr "" msgctxt "taxonomy.vocabulary.project_categories:name" msgid "Project categories" -msgstr "Project categories" +msgstr "" msgctxt "taxonomy.vocabulary.project_categories:description" msgid "Used to categorize project pages" -msgstr "Used to categorize project pages" +msgstr "" msgctxt "taxonomy.vocabulary.tags:name" msgid "Emneord" -msgstr "Emneord" +msgstr "" msgctxt "taxonomy.vocabulary.tags:description" msgid "En liste af emneord der kan bruges til at tagge indhold" -msgstr "En liste af emneord der kan bruges til at tagge indhold" +msgstr "" msgctxt "taxonomy.vocabulary.timeline_item_types:name" msgid "Tidslinje punkttyper" -msgstr "Tidslinje punkttyper" +msgstr "" msgctxt "taxonomy.vocabulary.timeline_item_types:description" msgid "Typer af tidslinje punkter" -msgstr "Typer af tidslinje punkter" +msgstr "" msgctxt "taxonomy.vocabulary.type:name" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "user.mail:cancel_confirm:subject" -msgid "" -"Anmodning om opsigelse af konto for [user:display-name] på " -"[site:name]" +msgid "Account cancellation request for [user:display-name] at [site:name]" msgstr "" -"Anmodning om opsigelse af konto for [user:display-name] på " -"[site:name]" msgctxt "user.mail:cancel_confirm:body" msgid "" @@ -2914,29 +2908,10 @@ msgid "" "\r\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" msgctxt "user.mail:password_reset:subject" -msgid "Ny login-information for [user:display-name] på [site:name]" -msgstr "Ny login-information for [user:display-name] på [site:name]" +msgid "Replacement login information for [user:display-name] at [site:name]" +msgstr "" msgctxt "user.mail:password_reset:body" msgid "" @@ -2958,27 +2933,10 @@ msgid "" "\r\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" msgctxt "user.mail:register_admin_created:subject" -msgid "En administrator har oprettet en konto til dig på [site:name]" -msgstr "En administrator har oprettet en konto til dig på [site:name]" +msgid "An administrator created an account for you at [site:name]" +msgstr "" msgctxt "user.mail:register_admin_created:body" msgid "" @@ -3005,11 +2963,18 @@ msgid "" "\r\n" "-- [site:name] team" msgstr "" + +msgctxt "user.mail:register_no_approval_required:subject" +msgid "Account details for [user:display-name] at [site:name]" +msgstr "" + +msgctxt "user.mail:register_no_approval_required:body" +msgid "" "[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 " +"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" @@ -3027,68 +2992,15 @@ msgstr "" "password\r\n" "\r\n" "-- [site:name] team" +msgstr "" -msgctxt "user.mail:register_no_approval_required:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgctxt "user.mail:register_pending_approval:subject" +msgid "" +"Account details for [user:display-name] at [site:name] (pending admin " +"approval)" +msgstr "" -msgctxt "user.mail:register_no_approval_required:body" -msgid "" -"[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" -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" - -msgctxt "user.mail:register_pending_approval:subject" -msgid "" -"Kontoinformation for [user:display-name] på [site:name] (afventer " -"godkendelse af administrator)" -msgstr "" -"Kontoinformation for [user:display-name] på [site:name] (afventer " -"godkendelse af administrator)" - -msgctxt "user.mail:register_pending_approval:body" +msgctxt "user.mail:register_pending_approval:body" msgid "" "[user:display-name],\r\n" "\r\n" @@ -3101,24 +3013,12 @@ msgid "" "\r\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" msgctxt "user.mail:register_pending_approval_admin:subject" msgid "" -"Kontoinformation for [user:display-name] på [site:name] (afventer " -"godkendelse af administrator)" +"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)" msgctxt "user.mail:register_pending_approval_admin:body" msgid "" @@ -3127,14 +3027,10 @@ msgid "" "\r\n" "[user:edit-url]" msgstr "" -"[user:display-name] has applied for an " -"account.\r\n" -"\r\n" -"[user:edit-url]" msgctxt "user.mail:status_activated:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" +msgid "Account details for [user:display-name] at [site:name] (approved)" +msgstr "" msgctxt "user.mail:status_activated:body" msgid "" @@ -3163,34 +3059,10 @@ msgid "" "\r\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" msgctxt "user.mail:status_blocked:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "" msgctxt "user.mail:status_blocked:body" msgid "" @@ -3201,16 +3073,10 @@ msgid "" "\r\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" msgctxt "user.mail:status_canceled:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" +msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "" msgctxt "user.mail:status_canceled:body" msgid "" @@ -3221,76 +3087,66 @@ msgid "" "\r\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" msgctxt "user.role.administrator:label" msgid "Administrator" -msgstr "Administrator" +msgstr "" msgctxt "user.role.anonymous:label" msgid "Anonym bruger" -msgstr "Anonym bruger" +msgstr "" msgctxt "user.role.authenticated:label" msgid "Godkendt bruger" -msgstr "Godkendt bruger" +msgstr "" msgctxt "user.role.citizen_proposal_editor:label" -msgid "Citizen proposal editor" -msgstr "Citizen proposal editor" - -msgctxt "user.role.editor:label" -msgid "Redaktør" -msgstr "Redaktør" +msgid "Borgerforslagsredaktør" +msgstr "" msgctxt "user.role.hearing_editor:label" -msgid "Hearing editor" -msgstr "Hearing editor" +msgid "Høringsredaktør" +msgstr "" msgctxt "user.role.project_editor:label" -msgid "Project editor" -msgstr "Project editor" +msgid "Projektredaktør" +msgstr "" msgctxt "user.role.public_meeting_editor:label" -msgid "Public meeting editor" -msgstr "Public meeting editor" +msgid "Begivenhedsredaktør" +msgstr "" msgctxt "user.settings:anonymous" -msgid "Anonym" -msgstr "Anonym" +msgid "Anonymous" +msgstr "" msgctxt "views.view.advancedqueue_jobs:label" msgid "Advanced queue jobs" -msgstr "Advanced queue jobs" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:title" msgid "Jobs" -msgstr "Jobs" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:job_id:label" msgid "Job ID" -msgstr "Job ID" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:alter:text" msgid "Number of retries: {{ num_retries }}" -msgstr "Number of retries: {{ num_retries }}" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:label" msgid "State" -msgstr "State" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:alter:text" msgid "" @@ -3298,25 +3154,22 @@ msgid "" "\n" "{{ num_retries }}" msgstr "" -"{{ state }}\n" -"\n" -"{{ num_retries }}" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:type:label" msgid "Job type" -msgstr "Job type" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:payload:label" msgid "Payload" -msgstr "Payload" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:available:label" msgid "Available date" -msgstr "Available date" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:label" msgid "Processed date" -msgstr "Processed date" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:alter:text" msgid "" @@ -3324,161 +3177,156 @@ msgid "" "\n" "{{ message }}" msgstr "" -"{{ processed }}\n" -"\n" -"{{ message }}" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:label" msgid "Høringssvar" -msgstr "Høringssvar" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:alter:text" msgid "Message: {{ message }}" -msgstr "Message: {{ message }}" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" msgid "Nulstil" -msgstr "Nulstil" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" msgid "No jobs found" -msgstr "No jobs found" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" msgid "Job type" -msgstr "Job type" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:state:expose:label" msgid "State" -msgstr "State" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:available:expose:label" msgid "Available date" -msgstr "Available date" +msgstr "" msgctxt "views.view.advancedqueue_jobs:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.all_citizen_proposals:label" msgid "Alle borgerforslag" -msgstr "Alle borgerforslag" +msgstr "" msgctxt "views.view.all_citizen_proposals:description" msgid "En liste af alle høringer" -msgstr "En liste af alle høringer" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:first" msgid "« First" -msgstr "« First" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:last" msgid "Last »" -msgstr "Last »" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér" -msgstr "Sortér" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "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_format" msgid "filtered_html" -msgstr "filtered_html" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" msgid "Advanced options" -msgstr "Advanced options" +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 "Select any filter and click on Apply to see results" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" msgid "basic_html" -msgstr "basic_html" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" msgid "" "Afstemning start Desc|Nyeste\r\n" "Afstemning start Asc|Ældste" msgstr "" -"Afstemning start Desc|Nyeste\r\n" -"Afstemning start Asc|Ældste" msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" msgid "Sort options" -msgstr "Sort options" +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 "" @@ -3489,12 +3337,6 @@ msgid "" "I gang|Afstemning aktiv\r\n" "Kommende|" msgstr "" -"- Any -|Alle\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afstemning " -"afsluttet\r\n" -"I gang|Afstemning aktiv\r\n" -"Kommende|" msgctxt "views.view.all_citizen_proposals:display:default:display_options:empty:area_text_custom:content" msgid "" @@ -3502,109 +3344,102 @@ msgid "" "hidden if the view is empty (cf. " "https://www.drupal.org/project/viewsreference/issues/3399878) -->" msgstr "" -"" msgctxt "views.view.all_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" msgid "Afstemning start" -msgstr "Afstemning start" +msgstr "" msgctxt "views.view.all_citizen_proposals:display:default:display_options:filters:field_content_state_value:expose:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.all_hearings:label" msgid "Alle høringer" -msgstr "Alle høringer" +msgstr "" msgctxt "views.view.all_hearings:description" msgid "En liste af alle høringer" -msgstr "En liste af alle høringer" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:first" msgid "« First" -msgstr "« First" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:last" msgid "Last »" -msgstr "Last »" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "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_format" msgid "filtered_html" -msgstr "filtered_html" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" msgid "Advanced options" -msgstr "Advanced options" +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 "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_format" msgid "basic_html" -msgstr "basic_html" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" msgid "" "Svarfrist Asc|Først kommende\r\n" "Svarfrist Desc|Sidst kommende" msgstr "" -"Svarfrist Asc|Først kommende\r\n" -"Svarfrist Desc|Sidst kommende" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" msgid "Sort options" -msgstr "Sort options" +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\r\n" "- Enhver -|Vis alle områder" msgstr "" -"- Any -|Område\r\n" -"- Enhver -|Vis alle områder" msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" msgid "" @@ -3614,19 +3449,12 @@ msgid "" "I " "gang|Aktive" msgstr "" -"- Any -|Alle\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afsluttede\r\n" -"I " -"gang|Aktive" 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\r\n" "- Enhver -|Vælg type" msgstr "" -"- Any -|Alle typer\r\n" -"- Enhver -|Vælg type" msgctxt "views.view.all_hearings:display:default:display_options:empty:area_text_custom:content" msgid "" @@ -3634,117 +3462,110 @@ msgid "" "hidden if the view is empty (cf. " "https://www.drupal.org/project/viewsreference/issues/3399878) -->" msgstr "" -"" msgctxt "views.view.all_hearings:display:default:display_options:sorts:field_reply_deadline_value:expose:label" msgid "Svarfrist" -msgstr "Svarfrist" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:filters:field_area_target_id:expose:label" msgid "Område" -msgstr "Område" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:filters:field_content_state_value:expose:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.all_hearings:display:default:display_options:filters:field_type_target_id:expose:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.all_meetings:label" msgid "Alle begivenheder" -msgstr "Alle begivenheder" +msgstr "" msgctxt "views.view.all_meetings:description" msgid "En liste af alle begivenheder" -msgstr "En liste af alle begivenheder" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:first" msgid "« First" -msgstr "« First" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:last" msgid "Last »" -msgstr "Last »" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Ønsket rækkefølge?" -msgstr "Ønsket rækkefølge?" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "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_format" msgid "filtered_html" -msgstr "filtered_html" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" msgid "Advanced options" -msgstr "Advanced options" +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 "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_format" msgid "basic_html" -msgstr "basic_html" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" msgid "" "Svarfrist Asc|Først kommende\r\n" "Svarfrist Desc|Sidst kommende" msgstr "" -"Svarfrist Asc|Først kommende\r\n" -"Svarfrist Desc|Sidst kommende" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" msgid "Sort options" -msgstr "Sort options" +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\r\n" "- Enhver -|Vis alle områder" msgstr "" -"- Any -|Område\r\n" -"- Enhver -|Vis alle områder" msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" msgid "" @@ -3752,17 +3573,12 @@ msgid "" "Afsluttet|Afsluttede\r\n" "Kommende|Aktive" msgstr "" -"- Enhver -|Alle\r\n" -"Afsluttet|Afsluttede\r\n" -"Kommende|Aktive" 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\r\n" "- Enhver -|Vælg type" msgstr "" -"- Any -|Alle typer\r\n" -"- Enhver -|Vælg type" msgctxt "views.view.all_meetings:display:default:display_options:empty:area_text_custom:content" msgid "" @@ -3770,125 +3586,118 @@ msgid "" "hidden if the view is empty (cf. " "https://www.drupal.org/project/viewsreference/issues/3399878) -->" msgstr "" -"" msgctxt "views.view.all_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" msgid "Svarfrist" -msgstr "Svarfrist" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:filters:field_area_target_id:expose:label" msgid "Hvor i kommunen?" -msgstr "Hvor i kommunen?" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:expose:label" msgid "Hvilken status?" -msgstr "Hvilken status?" +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 "Content state (field_content_state)" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:1:title" msgid "Kommende" -msgstr "Kommende" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:2:title" msgid "Afsluttet" -msgstr "Afsluttet" +msgstr "" msgctxt "views.view.all_meetings:display:default:display_options:filters:field_type_target_id:expose:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.all_projects:label" msgid "Alle projekter" -msgstr "Alle projekter" +msgstr "" msgctxt "views.view.all_projects:description" msgid "En liste af alle projekter" -msgstr "En liste af alle projekter" +msgstr "" msgctxt "views.view.all_projects:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:first" msgid "« First" -msgstr "« First" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:last" msgid "Last »" -msgstr "Last »" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "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_format" msgid "filtered_html" -msgstr "filtered_html" +msgstr "" msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" msgid "Avancerede indstillinger" -msgstr "Avancerede indstillinger" +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 "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:bef:general:text_input_required_format" msgid "basic_html" -msgstr "basic_html" +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\r\n" "- Enhver -|Vælg område" msgstr "" -"- Any -|Område\r\n" -"- Enhver -|Vælg område" 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\r\n" "- Enhver -|Alle" msgstr "" -"- Any -|Alle\r\n" -"- Enhver -|Alle" msgctxt "views.view.all_projects:display:default:display_options:empty:area_text_custom:content" msgid "" @@ -3896,1049 +3705,1108 @@ msgid "" "hidden if the view is empty (cf. " "https://www.drupal.org/project/viewsreference/issues/3399878) -->" msgstr "" -"" msgctxt "views.view.all_projects:display:default:display_options:filters:field_area_target_id:expose:label" msgid "Område" -msgstr "Område" +msgstr "" msgctxt "views.view.archive:label" -msgid "Arkiv" -msgstr "Arkiv" +msgid "Archive" +msgstr "" msgctxt "views.view.archive:description" -msgid "Alt indhold, efter måned." -msgstr "Alt indhold, efter måned." +msgid "All content, by month." +msgstr "" msgctxt "views.view.archive:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.archive:display:default:display_options:title" -msgid "Månedsarkiv" -msgstr "Månedsarkiv" +msgid "Monthly archive" +msgstr "" msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.archive:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.archive:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.archive:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.archive:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.archive:display:default:display_options:arguments:created_year_month:title" msgid "{{ arguments.created_year_month }}" -msgstr "{{ arguments.created_year_month }}" +msgstr "" msgctxt "views.view.archive:display:block_1:display_title" -msgid "Blok" -msgstr "Blok" +msgid "Block" +msgstr "" msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" msgid "{{ arguments.created_year_month }}" -msgstr "{{ arguments.created_year_month }}" +msgstr "" msgctxt "views.view.archive:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.authmap:label" msgid "External authentication links" -msgstr "External authentication links" +msgstr "" msgctxt "views.view.authmap:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:title" msgid "External authentication links" -msgstr "External authentication links" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:authname:label" msgid "Authentication Name" -msgstr "Authentication Name" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:uid:label" msgid "Drupal User ID" -msgstr "Drupal User ID" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:uid:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:name:label" msgid "Drupal User Name" -msgstr "Drupal User Name" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:label" msgid "delete" -msgstr "delete" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:text" msgid "delete" -msgstr "delete" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "No links (from Authentication name to Drupal user) found." +msgstr "" msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:title" msgid "Links for {{ arguments.provider_field }}" -msgstr "Links for {{ arguments.provider_field }}" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:filters:authname:expose:label" msgid "Authentication name" -msgstr "Authentication name" +msgstr "" msgctxt "views.view.authmap:display:default:display_options:filters:uid:expose:label" msgid "Drupal user" -msgstr "Drupal user" +msgstr "" msgctxt "views.view.authmap:display:page:display_title" msgid "Page" -msgstr "Page" +msgstr "" msgctxt "views.view.authmap:display:page:display_options:menu:title" msgid "External" -msgstr "External" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:label" msgid "Nodes Autocompletion Callbacks" -msgstr "Nodes Autocompletion Callbacks" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:description" msgid "" "This vew is used to store default nodes autocompletion callbacks for " "Search Autocomplete module." msgstr "" -"This vew is used to store default nodes autocompletion callbacks for " -"Search Autocomplete module." msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:fields:nothing:alter:text" msgid "by {{ name }} | {{ created }}" -msgstr "by {{ name }} | {{ created }}" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:next" msgid "næste ›" -msgstr "næste ›" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:previous" msgid "‹ forrige" -msgstr "‹ forrige" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:first" msgid "« første" -msgstr "« første" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:last" msgid "sidste »" -msgstr "sidste »" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:filters:combine:expose:label" msgid "Search" -msgstr "Search" +msgstr "" msgctxt "views.view.autocompletion_callbacks_nodes:display:nodes_autocompletion_callback:display_title" msgid "Nodes Autocompletion Callback" -msgstr "Nodes Autocompletion Callback" +msgstr "" msgctxt "views.view.block_content:label" -msgid "Brugerdefineret blokbibliotek" -msgstr "Brugerdefineret blokbibliotek" +msgid "Custom block library" +msgstr "" msgctxt "views.view.block_content:description" -msgid "Find og håndtér brugerdefinerede blokke." -msgstr "Find og håndtér brugerdefinerede blokke." +msgid "Find and manage custom blocks." +msgstr "" msgctxt "views.view.block_content:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:title" -msgid "Brugerdefineret blokbibliotek" -msgstr "Brugerdefineret blokbibliotek" +msgid "Custom block library" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:info:label" -msgid "Beskrivelse" -msgstr "Beskrivelse" +msgid "Block description" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:type:label" msgid "Bloktype" -msgstr "Bloktype" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" -msgid "Opdateret" -msgstr "Opdateret" +msgid "Updated" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" msgid "Handlinger" -msgstr "Handlinger" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" -msgstr "Næste ›" +msgid "Next ›" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" -msgid "‹ Forrige" -msgstr "‹ Forrige" +msgid "‹ Previous" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:empty:area_text_custom:content" msgid "There are no custom blocks available." -msgstr "There are no custom blocks available." +msgstr "" msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" -msgid "Beskrivelse" -msgstr "Beskrivelse" +msgid "Block description" +msgstr "" msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" msgid "Bloktype" -msgstr "Bloktype" +msgstr "" msgctxt "views.view.block_content:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.block_content:display:page_1:display_options:menu:title" -msgid "Brugerdefineret blokbibliotek" -msgstr "Brugerdefineret blokbibliotek" +msgid "Custom block library" +msgstr "" msgctxt "views.view.block_content:display:page_1:display_options:menu:description" msgid "Create and edit block content." -msgstr "Create and edit block content." +msgstr "" msgctxt "views.view.citizen_proposal_support:label" msgid "Citizen proposal support" -msgstr "Citizen proposal support" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_title" msgid "Default" -msgstr "Default" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:title" msgid "Citizen proposal support" -msgstr "Citizen proposal support" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_name:label" msgid "Navn" -msgstr "Navn" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_email:label" msgid "E-mail" -msgstr "E-mail" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:label" msgid "Tillad e-mail" -msgstr "Tillad e-mail" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:alter:text" msgid "{{ allow_email ? 'ja' }}" -msgstr "{{ allow_email ? 'ja' }}" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:label" msgid "Dato og tid" -msgstr "Dato og 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 "{{ created|date('Y-m-d H:i:s', 'Europe/Copenhagen') }}" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:arguments:node_id:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:default:display_options:header:result:content" msgid "Displaying @start - @end of @total" -msgstr "Displaying @start - @end of @total" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_title" -msgid "Data export (XLSX)" -msgstr "Data export (XLSX)" +msgid "Data export (CSV)" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_name:label" msgid "Navn" -msgstr "Navn" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_email:label" msgid "E-mail" -msgstr "E-mail" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:label" msgid "Tillad e-mail" -msgstr "Tillad e-mail" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:alter:text" msgid "{{ allow_email ? 1 }}" -msgstr "{{ allow_email ? 1 }}" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" + +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_title" +msgid "Data export (XLSX)" +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:data_export_2:display_options:fields:user_email:label" +msgid "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:data_export_2: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:format_plural_string" +msgid "1\003@count" +msgstr "" msgctxt "views.view.citizen_proposal_support:display:page_1:display_title" msgid "Page" -msgstr "Page" +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 "

    Dette borgerforslag har endnu ingen støtter.

    " +msgstr "" msgctxt "views.view.content:label" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "views.view.content:description" -msgid "Find og håndtér indhold." -msgstr "Find og håndtér indhold." +msgid "Find and manage content." +msgstr "" msgctxt "views.view.content:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.content:display:default:display_options:title" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:type:label" msgid "Indholdstype" -msgstr "Indholdstype" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:name:label" msgid "Forfatter" -msgstr "Forfatter" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_false" msgid "Ikke udgivet" -msgstr "Ikke udgivet" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_true" msgid "Udgivet" -msgstr "Udgivet" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:changed:label" msgid "Opdateret" -msgstr "Opdateret" +msgstr "" msgctxt "views.view.content:display:default:display_options:fields:operations:label" msgid "Handlinger" -msgstr "Handlinger" +msgstr "" msgctxt "views.view.content:display:default:display_options:pager:options:tags:next" msgid "Næste ›" -msgstr "Næste ›" +msgstr "" msgctxt "views.view.content:display:default:display_options:pager:options:tags:previous" msgid "‹ Forrige" -msgstr "‹ Forrige" +msgstr "" msgctxt "views.view.content:display:default:display_options:pager:options:tags:first" msgid "« Første" -msgstr "« Første" +msgstr "" msgctxt "views.view.content:display:default:display_options:pager:options:tags:last" msgid "Sidste »" -msgstr "Sidste »" +msgstr "" msgctxt "views.view.content:display:default:display_options:exposed_form:options:submit_button" msgid "Filter" -msgstr "Filter" +msgstr "" msgctxt "views.view.content:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.content:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" -msgid "Der er intet indhold at vise." -msgstr "Der er intet indhold at vise." +msgid "No content available." +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:type:expose:label" msgid "Indholdstype" -msgstr "Indholdstype" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:status:expose:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:status:group_info:label" msgid "Publiceringsstatus" -msgstr "Publiceringsstatus" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:1:title" msgid "Udgivet" -msgstr "Udgivet" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:2:title" msgid "Ikke udgivet" -msgstr "Ikke udgivet" +msgstr "" msgctxt "views.view.content:display:default:display_options:filters:langcode:expose:label" msgid "Sprog" -msgstr "Sprog" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_title" -msgid "Data export" -msgstr "Data export" +msgid "Data export (CSV)" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:node_bulk_form:action_title" msgid "Handling" -msgstr "Handling" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:type:label" msgid "Indholdstype" -msgstr "Indholdstype" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:name:label" msgid "Forfatter" -msgstr "Forfatter" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_false" msgid "Ikke udgivet" -msgstr "Ikke udgivet" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_true" msgid "Udgivet" -msgstr "Udgivet" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:changed:label" msgid "Opdateret" -msgstr "Opdateret" +msgstr "" msgctxt "views.view.content:display:data_export_1:display_options:fields:operations:label" msgid "Handlinger" -msgstr "Handlinger" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_title" +msgid "Data export (XLSX)" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:node_bulk_form:action_title" +msgid "Handling" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:title:label" +msgid "Titel" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:type:label" +msgid "Indholdstype" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:name:label" +msgid "Forfatter" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:label" +msgid "Status" +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:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:changed:label" +msgid "Opdateret" +msgstr "" + +msgctxt "views.view.content:display:data_export_2:display_options:fields:operations:label" +msgid "Handlinger" +msgstr "" msgctxt "views.view.content:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.content:display:page_1:display_options:menu:title" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "views.view.content:display:page_1:display_options:tab_options:title" msgid "Indhold" -msgstr "Indhold" +msgstr "" msgctxt "views.view.content:display:page_1:display_options:tab_options:description" -msgid "Find og håndtér indhold" -msgstr "Find og håndtér indhold" +msgid "Find and manage content" +msgstr "" msgctxt "views.view.content_recent:label" -msgid "Seneste indhold" -msgstr "Seneste indhold" +msgid "Recent content" +msgstr "" msgctxt "views.view.content_recent:description" -msgid "Seneste indhold." -msgstr "Seneste indhold." +msgid "Recent content." +msgstr "" msgctxt "views.view.content_recent:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:title" -msgid "Seneste indhold" -msgstr "Seneste indhold" +msgid "Recent content" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:empty:area_text_custom:content" msgid "Der er intet indhold at vise." -msgstr "Der er intet indhold at vise." +msgstr "" msgctxt "views.view.content_recent:display:default:display_options:use_more_text" msgid "Mere" -msgstr "Mere" +msgstr "" msgctxt "views.view.content_recent:display:block_1:display_title" msgid "Blok" -msgstr "Blok" +msgstr "" msgctxt "views.view.files:label" -msgid "Filer" -msgstr "Filer" +msgid "Files" +msgstr "" msgctxt "views.view.files:description" -msgid "Find og håndtér filer." -msgstr "Find og håndtér filer." +msgid "Find and manage files." +msgstr "" msgctxt "views.view.files:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.files:display:default:display_options:title" -msgid "Filer" -msgstr "Filer" +msgid "Files" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:fid:label" msgid "Fid" -msgstr "Fid" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:filename:label" msgid "Navn" -msgstr "Navn" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:filemime:label" msgid "MIME type" -msgstr "MIME type" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:filesize:label" msgid "Størrelse" -msgstr "Størrelse" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Midlertidig" -msgstr "Midlertidig" +msgid "Temporary" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" msgid "Permanent" -msgstr "Permanent" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:created:label" -msgid "Upload-dato" -msgstr "Upload-dato" +msgid "Upload date" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:changed:label" -msgid "Ændringsdato" -msgstr "Ændringsdato" +msgid "Changed date" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:count:label" -msgid "Brugt i" -msgstr "Brugt i" +msgid "Used in" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" msgid "admin/content/files/usage/{{ fid }}" -msgstr "admin/content/files/usage/{{ fid }}" +msgstr "" msgctxt "views.view.files:display:default:display_options:fields:count:format_plural_string" msgid "1 place\003@count places" -msgstr "1 place\003@count places" +msgstr "" msgctxt "views.view.files:display:default:display_options:pager:options:tags:next" msgid "Næste ›" -msgstr "Næste ›" +msgstr "" msgctxt "views.view.files:display:default:display_options:pager:options:tags:previous" msgid "‹ Forrige" -msgstr "‹ Forrige" +msgstr "" msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.files:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.files:display:default:display_options:exposed_form:options:submit_button" msgid "Filter" -msgstr "Filter" +msgstr "" msgctxt "views.view.files:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.files:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" -msgid "Ingen tilgængelige filer." -msgstr "Ingen tilgængelige filer." +msgid "No files available." +msgstr "" msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" -msgid "Filnavn" -msgstr "Filnavn" +msgid "Filename" +msgstr "" msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" msgid "MIME type" -msgstr "MIME type" +msgstr "" msgctxt "views.view.files:display:default:display_options:filters:status:expose:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.files:display:page_1:display_title" -msgid "Filoversigt" -msgstr "Filoversigt" +msgid "Files overview" +msgstr "" msgctxt "views.view.files:display:page_1:display_options:menu:title" -msgid "Filer" -msgstr "Filer" +msgid "Files" +msgstr "" msgctxt "views.view.files:display:page_2:display_title" msgid "File usage" -msgstr "File usage" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:title" msgid "File usage" -msgstr "File usage" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:entity_label:label" msgid "Entity" -msgstr "Entity" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:type:label" -msgid "Entity-type" -msgstr "Entity-type" +msgid "Entity type" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:module:label" -msgid "Registrerer modul" -msgstr "Registrerer modul" +msgid "Registering module" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:count:label" -msgid "Brug antal" -msgstr "Brug antal" +msgid "Use count" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" msgid "1\003@count" -msgstr "1\003@count" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:next" msgid "Næste ›" -msgstr "Næste ›" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:previous" msgid "‹ Forrige" -msgstr "‹ Forrige" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:arguments:fid:exception:title" msgid "Alle" -msgstr "Alle" +msgstr "" msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" -msgid "Information om brug af filen {{ arguments.fid }}" -msgstr "Information om brug af filen {{ arguments.fid }}" +msgid "File usage information for {{ arguments.fid }}" +msgstr "" msgctxt "views.view.form_list_active_projects:label" msgid "Form list - Active projects" -msgstr "Form list - Active projects" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:fields:nid:alter:text" msgid "(Indholds ID: {{ nid }})" -msgstr "(Indholds ID: {{ nid }})" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.form_list_active_projects:display:entity_reference_1:display_title" msgid "Entity Reference" -msgstr "Entity Reference" +msgstr "" msgctxt "views.view.glossary:label" -msgid "Ordliste" -msgstr "Ordliste" +msgid "Glossary" +msgstr "" msgctxt "views.view.glossary:description" -msgid "Alt indhold efter forbogstav." -msgstr "Alt indhold efter forbogstav." +msgid "All content, by letter." +msgstr "" msgctxt "views.view.glossary:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:fields:title:label" msgid "Titel" -msgstr "Titel" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:fields:name:label" msgid "Forfatter" -msgstr "Forfatter" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" -msgid "Seneste opdatering" -msgstr "Seneste opdatering" +msgid "Last update" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.glossary:display:attachment_1:display_title" -msgid "Bilag" -msgstr "Bilag" +msgid "Attachment" +msgstr "" msgctxt "views.view.glossary:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.glossary:display:page_1:display_options:menu:title" -msgid "Ordliste" -msgstr "Ordliste" +msgid "Glossary" +msgstr "" msgctxt "views.view.hearings_related_to_project:label" msgid "Hearings related to project" -msgstr "Hearings related to project" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:title" msgid "Hearings related to project" -msgstr "Hearings related to project" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:default:display_options:arguments:nid:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.hearings_related_to_project:display:block_1:display_title" msgid "Block" -msgstr "Block" +msgstr "" msgctxt "views.view.heyloyalty_feed:label" msgid "Heyloyalty feed" -msgstr "Heyloyalty feed" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_title" msgid "Default" -msgstr "Default" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:view_node:text" msgid "vis" -msgstr "vis" +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 "{{ url('')|render ~ field_itk_media_image_upload|trim('/') }}" +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 "{{ field_itk_media_image_upload }}" +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 "{{ url('')|render ~ field_itk_media_image_upload_1|trim('/') }}" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:nothing:alter:text" msgid "" @@ -4952,1627 +4820,1970 @@ msgid "" "field_itk_media_image_upload_1|trim('/') }}\r\n" "{% endif %}" msgstr "" -"{% if field_itk_media_image_upload is empty and " -"field_itk_media_image_upload_1 is empty %}\r\n" -"Tom\r\n" -"{% else " -"%}\r\n" -"{{ url('')|render }}{{ " -"field_itk_media_image_upload|trim('/') }}{{ " -"field_itk_media_image_upload_1|trim('/') }}\r\n" -"{% endif %}" msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.heyloyalty_feed:display:rest_export_1:display_title" msgid "REST export" -msgstr "REST export" +msgstr "" msgctxt "views.view.itk_media:label" msgid "ITK Media" -msgstr "ITK Media" +msgstr "" msgctxt "views.view.itk_media:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:title" msgid "Medier" -msgstr "Medier" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:thumbnail__target_id:label" msgid "Thumbnail" -msgstr "Thumbnail" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:name:label" msgid "Medie navn" -msgstr "Medie navn" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_file_upload:alter:text" msgid "{{ 'Document'|t }}" -msgstr "{{ 'Document'|t }}" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:alter:text" msgid "{{ 'Image'|t }}" -msgstr "{{ 'Image'|t }}" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:changed:label" msgid "Opdateret" -msgstr "Opdateret" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_tag:label" msgid "Mærkat" -msgstr "Mærkat" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:fields:operations:label" msgid "Funktioner" -msgstr "Funktioner" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:next" msgid "Næste ›" -msgstr "Næste ›" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:previous" msgid "‹ Tidligere" -msgstr "‹ Tidligere" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:first" msgid "« Første" -msgstr "« Første" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:last" msgid "Sidste »" -msgstr "Sidste »" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:submit_button" msgid "Filtrér" -msgstr "Filtrér" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:empty:area_text_custom:content" msgid "No content available." -msgstr "No content available." +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:filters:name:expose:label" msgid "Medie navn" -msgstr "Medie navn" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:filters:bundle:expose:label" msgid "Medie type" -msgstr "Medie type" +msgstr "" msgctxt "views.view.itk_media:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" msgid "Mærkat" -msgstr "Mærkat" +msgstr "" msgctxt "views.view.itk_media:display:media_page_list:display_title" msgid "Medier" -msgstr "Medier" +msgstr "" msgctxt "views.view.itk_media:display:media_page_list:display_options:menu:title" msgid "Medier" -msgstr "Medier" +msgstr "" msgctxt "views.view.itk_media_browser:label" msgid "ITK media browser" -msgstr "ITK media browser" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:fields:field_itk_media_tag:label" msgid "Tag" -msgstr "Tag" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:reset_button_label" msgid "Nulstil søgning" -msgstr "Nulstil søgning" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:filters:combine:expose:label" msgid "Search for documents" -msgstr "Search for documents" +msgstr "" msgctxt "views.view.itk_media_browser:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" msgid "Tag" -msgstr "Tag" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_title" msgid "Entity browser" -msgstr "Entity browser" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:combine:expose:label" msgid "Search for documents" -msgstr "Search for documents" +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 "Tag" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_title" msgid "Image browser" -msgstr "Image browser" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:name_1:label" msgid "Navn" -msgstr "Navn" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:field_itk_media_tag:label" msgid "Tag" -msgstr "Tag" +msgstr "" msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:combine:expose:label" msgid "Search for images" -msgstr "Search for images" +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 "Tag" - -msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" -msgid "File browser" -msgstr "File browser" - -msgctxt "views.view.media:label" -msgid "Media" -msgstr "Media" +msgstr "" -msgctxt "views.view.media:display:default:display_title" -msgid "Default" -msgstr "Default" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_title" +msgid "Icon browser" +msgstr "" -msgctxt "views.view.media:display:default:display_options:title" -msgid "Media" -msgstr "Media" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:name_1:label" +msgid "Navn" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" -msgid "Thumbnail" -msgstr "Thumbnail" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:field_itk_media_tag:label" +msgid "Tag" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:name:label" -msgid "Media name" -msgstr "Media name" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:combine:expose:label" +msgid "Search for images" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:bundle:label" -msgid "Type" -msgstr "Type" +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 "views.view.media:display:default:display_options:fields:uid:label" -msgid "Author" -msgstr "Author" +msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" +msgid "File browser" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:label" -msgid "Status" -msgstr "Status" +msgctxt "views.view.latest_citizen_proposals:label" +msgid "Seneste borgerforslag" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Unpublished" -msgstr "Unpublished" +msgctxt "views.view.latest_citizen_proposals:description" +msgid "En liste af alle høringer" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Published" -msgstr "Published" +msgctxt "views.view.latest_citizen_proposals:display:default:display_title" +msgid "Master" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:changed:label" -msgid "Updated" -msgstr "Updated" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:operations:label" -msgid "Operations" -msgstr "Operations" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" -msgid "Next ›" -msgstr "Next ›" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" -msgid "‹ Previous" -msgstr "‹ Previous" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" -msgid "« First" -msgstr "« First" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" -msgid "Last »" -msgstr "Last »" +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.media:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" -msgstr "Items per page" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" +msgid "filtered_html" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" -msgstr "- All -" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" +msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" -msgstr "Offset" +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.media:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" -msgstr "Filter" +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.media:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" -msgstr "Reset" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Afstemning start Desc|Nyeste\r\n" +"Afstemning start Asc|Ældste" +msgstr "" -msgctxt "views.view.media:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" -msgstr "Sort by" +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_citizen_proposals:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Alle\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afstemning " +"afsluttet\r\n" +"I gang|Afstemning aktiv\r\n" +"Kommende|" +msgstr "" + +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +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.latest_hearings:label" +msgid "Seneste høringer" +msgstr "" + +msgctxt "views.view.latest_hearings:description" +msgid "En liste af alle høringer" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_hearings: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:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.latest_hearings: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_desc_label" +msgid "Desc" +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_hearings: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:bef:general:secondary_label" +msgid "Advanced options" +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:bef:general:text_input_required_format" +msgid "basic_html" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" +msgid "" +"Svarfrist Asc|Først kommende\r\n" +"Svarfrist Desc|Sidst kommende" +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_hearings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" +msgid "" +"- Any -|Område\r\n" +"- Enhver -|Vis alle områder" +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\r\n" +"- Enhver -|Alle\r\n" +"Afsluttet|Afsluttede\r\n" +"I " +"gang|Aktive" +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\r\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.latest_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" + +msgctxt "views.view.latest_projects:label" +msgid "Seneste projekter" +msgstr "" + +msgctxt "views.view.latest_projects:description" +msgid "En liste af alle projekter" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" +msgstr "" + +msgctxt "views.view.latest_projects: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:exposed_sorts_label" +msgid "Sort by" +msgstr "" + +msgctxt "views.view.latest_projects: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_desc_label" +msgid "Desc" +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 "views.view.latest_projects: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:bef:general:secondary_label" +msgid "Avancerede indstillinger" +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:bef:general:text_input_required_format" +msgid "basic_html" +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\r\n" +"- Enhver -|Vælg område" +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\r\n" +"- Enhver -|Alle" +msgstr "" + +msgctxt "views.view.latest_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +msgstr "" + +msgctxt "views.view.latest_public_meetings:label" +msgid "Seneste begivenheder" +msgstr "" + +msgctxt "views.view.latest_public_meetings:description" +msgid "En liste af alle begivenheder" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_title" +msgid "Master" +msgstr "" + +msgctxt "views.view.latest_public_meetings: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:reset_button_label" +msgid "Reset" +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.latest_public_meetings: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_desc_label" +msgid "Desc" +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.latest_public_meetings: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:bef:general:secondary_label" +msgid "Advanced options" +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:bef:general:text_input_required_format" +msgid "basic_html" +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\r\n" +"Svarfrist Desc|Sidst kommende" +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.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\r\n" +"- Enhver -|Vis alle områder" +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\r\n" +"Afsluttet|Afsluttede\r\n" +"Kommende|Aktive" +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\r\n" +"- Enhver -|Vælg type" +msgstr "" + +msgctxt "views.view.latest_public_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" +"" +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.media:label" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:display:default:display_title" +msgid "Default" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:title" +msgid "Media" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:name:label" +msgid "Media name" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:bundle:label" +msgid "Type" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:uid:label" +msgid "Author" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:status:label" +msgid "Status" +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:fields:status:settings:format_custom_true" +msgid "Published" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:changed:label" +msgid "Updated" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:fields:operations:label" +msgid "Operations" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" +msgid "Next ›" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Previous" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" +msgid "« First" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" +msgid "Last »" +msgstr "" + +msgctxt "views.view.media: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_options_all_label" +msgid "- All -" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" +msgstr "" + +msgctxt "views.view.media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" +msgstr "" + +msgctxt "views.view.media: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:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.media:display:default:display_options:empty:area_text_custom:content" msgid "No content available." -msgstr "No content available." +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:expose:label" msgid "Sandt" -msgstr "Sandt" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" msgid "Published status" -msgstr "Published status" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" msgid "Published" -msgstr "Published" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" msgid "Unpublished" -msgstr "Unpublished" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:name:expose:label" msgid "Media name" -msgstr "Media name" +msgstr "" msgctxt "views.view.media:display:default:display_options:filters:langcode:expose:label" msgid "Language" -msgstr "Language" +msgstr "" msgctxt "views.view.media:display:media_page_list:display_title" msgid "Media" -msgstr "Media" +msgstr "" msgctxt "views.view.media:display:media_page_list:display_options:menu:title" msgid "Media" -msgstr "Media" +msgstr "" msgctxt "views.view.nearest_hearings:label" msgid "Nearest hearings" -msgstr "Nearest hearings" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:title" msgid "Nearest hearings" -msgstr "Nearest hearings" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid_1:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.nearest_hearings:display:block_1:display_title" msgid "Block" -msgstr "Block" +msgstr "" msgctxt "views.view.redirect:label" msgid "Redirect" -msgstr "Redirect" +msgstr "" msgctxt "views.view.redirect:description" msgid "List of redirects" -msgstr "List of redirects" +msgstr "" msgctxt "views.view.redirect:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:title" msgid "Redirect" -msgstr "Redirect" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:fields:redirect_bulk_form:action_title" msgid "With selection" -msgstr "With selection" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:fields:redirect_source__path:label" msgid "Fra" -msgstr "Fra" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:fields:created:label" msgid "Oprettet" -msgstr "Oprettet" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:next" msgid "næste ›" -msgstr "næste ›" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:previous" msgid "‹ forrige" -msgstr "‹ forrige" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:first" msgid "« første" -msgstr "« første" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:last" msgid "sidste »" -msgstr "sidste »" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:submit_button" msgid "Filter" -msgstr "Filter" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:empty:area_text_custom:content" msgid "There is no redirect yet." -msgstr "There is no redirect yet." +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:redirect_source__path:expose:label" msgid "Fra" -msgstr "Fra" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:redirect_redirect__uri:expose:label" msgid "Til" -msgstr "Til" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:status_code:expose:label" msgid "Status code" -msgstr "Status code" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:label" msgid "Status code" -msgstr "Status code" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:1:title" msgid "300 Multiple Choices" -msgstr "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 "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 "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 "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 "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 "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 "307 Temporary Redirect" +msgstr "" msgctxt "views.view.redirect:display:default:display_options:filters:language:expose:label" msgid "Originalt sprog" -msgstr "Originalt sprog" +msgstr "" msgctxt "views.view.redirect:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.search_db:label" msgid "search_db" -msgstr "search_db" +msgstr "" msgctxt "views.view.search_db:display:default:display_title" msgid "Default" -msgstr "Default" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:title" msgid "Search" -msgstr "Search" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:submit_button" msgid "Søg" -msgstr "Søg" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:reset_button_label" msgid "Nulstil" -msgstr "Nulstil" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +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 "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_format" msgid "citizen_proposal_content" -msgstr "citizen_proposal_content" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:bef:general:secondary_label" msgid "Advanced options" -msgstr "Advanced options" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:empty:display_link:label" msgid "No results" -msgstr "No results" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:sorts:search_api_relevance:expose:label" msgid "Relevance" -msgstr "Relevance" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:label" msgid "Søg" -msgstr "Søg" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:placeholder" msgid "Søg …" -msgstr "Søg …" +msgstr "" msgctxt "views.view.search_db:display:default:display_options:header:result:content" msgid "Displaying @start–@end of @total" -msgstr "Displaying @start–@end of @total" +msgstr "" msgctxt "views.view.search_db:display:page_1:display_title" msgid "Page" -msgstr "Page" +msgstr "" msgctxt "views.view.taxonomy_term:label" -msgid "Ord i ordforråd" -msgstr "Ord i ordforråd" +msgid "Taxonomy term" +msgstr "" msgctxt "views.view.taxonomy_term:description" -msgid "Indhold som er knyttet til en bestemt term." -msgstr "Indhold som er knyttet til en bestemt term." +msgid "Content belonging to a certain taxonomy term." +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:exception:title" msgid "Alle" -msgstr "Alle" +msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:title" msgid "{{ arguments.tid }}" -msgstr "{{ arguments.tid }}" +msgstr "" msgctxt "views.view.taxonomy_term:display:feed_1:display_title" msgid "Feed" -msgstr "Feed" +msgstr "" msgctxt "views.view.taxonomy_term:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.timeline_related_items:label" msgid "Timeline related items" -msgstr "Timeline related items" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:title" msgid "Timeline related items" -msgstr "Timeline related items" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid_1:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.timeline_related_items:display:block_1:display_title" msgid "Block" -msgstr "Block" +msgstr "" msgctxt "views.view.user_admin_people:label" -msgid "Personer" -msgstr "Personer" +msgid "People" +msgstr "" msgctxt "views.view.user_admin_people:description" -msgid "Find og håndtér personer som bruger dit site." -msgstr "Find og håndtér personer som bruger dit site." +msgid "Find and manage people interacting with your site." +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:title" -msgid "Personer" -msgstr "Personer" +msgid "People" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:user_bulk_form:label" -msgid "Masseopdatering" -msgstr "Masseopdatering" +msgid "Bulk update" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:name:label" -msgid "Brugernavn" -msgstr "Brugernavn" +msgid "Username" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Blokeret" -msgstr "Blokeret" +msgid "Blocked" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Aktiv" -msgstr "Aktiv" +msgid "Active" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" -msgid "Roller" -msgstr "Roller" +msgid "Roles" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" -msgid "Medlem i" -msgstr "Medlem i" +msgid "Member for" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:past_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" -msgid "Seneste tilgang" -msgstr "Seneste tilgang" +msgid "Last access" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" msgid "@interval hence" -msgstr "@interval hence" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:past_format" msgid "@interval ago" -msgstr "@interval ago" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:operations:label" msgid "Handlinger" -msgstr "Handlinger" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:next" msgid "Næste ›" -msgstr "Næste ›" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:previous" msgid "‹ Forrige" -msgstr "‹ Forrige" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:first" msgid "« Første" -msgstr "« Første" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:last" msgid "Sidste »" -msgstr "Sidste »" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Antal elementer" -msgstr "Antal elementer" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- Alle -" -msgstr "- Alle -" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:offset_label" msgid "Forskydning" -msgstr "Forskydning" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:submit_button" msgid "Filter" -msgstr "Filter" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:empty:area_text_custom:content" -msgid "Ingen personer til rådighed." -msgstr "Ingen personer til rådighed." +msgid "No people available." +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" -msgid "Navn eller e-mail indeholder" -msgstr "Navn eller e-mail indeholder" +msgid "Name or email contains" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Aktiv" -msgstr "Aktiv" +msgid "Active" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Blokeret" -msgstr "Blokeret" +msgid "Blocked" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" -msgid "Rolle" -msgstr "Rolle" +msgid "Role" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" -msgid "Tilladelse" -msgstr "Tilladelse" +msgid "Permission" +msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" -msgid "mere" -msgstr "mere" +msgid "more" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_title" msgid "Data export (CSV)" -msgstr "Data export (CSV)" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:name:label" msgid "Username" -msgstr "Username" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_false" msgid "Blocked" -msgstr "Blocked" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_true" msgid "Active" -msgstr "Active" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:roles_target_id:label" msgid "Roles" -msgstr "Roles" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:label" msgid "Member for" -msgstr "Member for" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:future_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:past_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:label" msgid "Last access" -msgstr "Last access" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:future_format" msgid "@interval hence" -msgstr "@interval hence" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:past_format" msgid "@interval ago" -msgstr "@interval ago" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_title" msgid "Data export (XLSX)" -msgstr "Data export (XLSX)" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:name:label" msgid "Username" -msgstr "Username" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:label" msgid "Status" -msgstr "Status" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_false" msgid "Blocked" -msgstr "Blocked" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_true" msgid "Active" -msgstr "Active" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:roles_target_id:label" msgid "Roles" -msgstr "Roles" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:field_department:label" msgid "Department" -msgstr "Department" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:label" msgid "Member for" -msgstr "Member for" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:future_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:past_format" msgid "@interval" -msgstr "@interval" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:label" msgid "Last access" -msgstr "Last access" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:future_format" msgid "@interval hence" -msgstr "@interval hence" +msgstr "" msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:past_format" msgid "@interval ago" -msgstr "@interval ago" +msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_title" msgid "Side" -msgstr "Side" +msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" -msgid "Vis" -msgstr "Vis" +msgid "List" +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 "Find og håndtér personer som bruger dit site." +msgid "Find and manage people interacting with your site." +msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" -msgid "Personer" -msgstr "Personer" +msgid "People" +msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" -msgid "Håndtér brugerkonti, roller og tilladelser." -msgstr "Håndtér brugerkonti, roller og tilladelser." +msgid "Manage user accounts, roles, and permissions." +msgstr "" msgctxt "views.view.video_display:label" msgid "Video display" -msgstr "Video display" +msgstr "" msgctxt "views.view.video_display:description" msgid "Display a video attached to a node" -msgstr "Display a video attached to a node" +msgstr "" msgctxt "views.view.video_display:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:arguments:nid:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.video_display:display:default:display_options:arguments:delta:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.video_display:display:page_1:display_title" msgid "Page" -msgstr "Page" +msgstr "" msgctxt "views.view.watchdog:label" msgid "Watchdog" -msgstr "Watchdog" +msgstr "" msgctxt "views.view.watchdog:description" msgid "Recent log messages" -msgstr "Recent log messages" +msgstr "" msgctxt "views.view.watchdog:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:title" msgid "Recent log messages" -msgstr "Recent log messages" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:nothing:admin_label" msgid "Icon" -msgstr "Icon" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:wid:label" msgid "WID" -msgstr "WID" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:severity:label" msgid "Severity" -msgstr "Severity" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:type:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:timestamp:label" msgid "Date" -msgstr "Date" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:message:label" msgid "Message" -msgstr "Message" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:path" msgid "admin/reports/dblog/event/{{ wid }}" -msgstr "admin/reports/dblog/event/{{ wid }}" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:alt" msgid "{{ message }}" -msgstr "{{ message }}" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:name:label" msgid "User" -msgstr "User" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:fields:link:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:submit_button" msgid "Filter" -msgstr "Filter" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:empty:area:admin_label" msgid "No log messages available." -msgstr "No log messages available." +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:empty:area:content" msgid "No log messages available." -msgstr "No log messages available." +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:filters:type:expose:label" msgid "Type" -msgstr "Type" +msgstr "" msgctxt "views.view.watchdog:display:default:display_options:filters:severity:expose:label" msgid "Severity" -msgstr "Severity" +msgstr "" msgctxt "views.view.watchdog:display:page:display_title" msgid "Page" -msgstr "Page" +msgstr "" msgctxt "views.view.webform_submissions:label" msgid "Webform submissions" -msgstr "Webform submissions" +msgstr "" msgctxt "views.view.webform_submissions:description" msgid "Default webform submissions views." -msgstr "Default webform submissions views." +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:title" msgid "Webform submissions" -msgstr "Webform submissions" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:sid:label" msgid "#" -msgstr "#" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:in_draft:label" msgid "Draft" -msgstr "Draft" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:created:label" msgid "Oprettet" -msgstr "Oprettet" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:remote_addr:label" msgid "IP address" -msgstr "IP address" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:text" msgid "view" -msgstr "view" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:first" msgid "« First" -msgstr "« First" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:last" msgid "Last »" -msgstr "Last »" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_label" msgid "Items per page" -msgstr "Items per page" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_options_all_label" msgid "- All -" -msgstr "- All -" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:offset_label" msgid "Offset" -msgstr "Offset" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:submit_button" msgid "Apply" -msgstr "Apply" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sort by" -msgstr "Sort by" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Asc" -msgstr "Asc" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Desc" -msgstr "Desc" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:empty:area_text_custom:content" msgid "No submissions available." -msgstr "No submissions available." +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:arguments:in_draft:exception:title" msgid "All" -msgstr "All" +msgstr "" msgctxt "views.view.webform_submissions:display:default:display_options:header:result:content" msgid "Displaying @start - @end of @total" -msgstr "Displaying @start - @end of @total" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_title" msgid "Embed: Administer" -msgstr "Embed: Administer" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:label" msgid "Webform submission operations bulk form" -msgstr "Webform submission operations bulk form" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:action_title" msgid "Handling" -msgstr "Handling" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sid:label" msgid "#" -msgstr "#" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:in_draft:label" msgid "Draft" -msgstr "Draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sticky:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:locked:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:created:label" msgid "Oprettet" -msgstr "Oprettet" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:completed:label" msgid "Completed" -msgstr "Completed" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:remote_addr:label" msgid "IP address" -msgstr "IP address" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:operations:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:in_draft:expose:label" msgid "Is draft" -msgstr "Is draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:sticky:expose:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:locked:expose:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_administer:display_options:display_description" msgid "Administer submissions." -msgstr "Administer submissions." +msgstr "" msgctxt "views.view.webform_submissions:display:embed_default:display_title" msgid "Embed: Default" -msgstr "Embed: Default" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_default:display_options:display_description" msgid "Display submissions." -msgstr "Display submissions." +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_title" msgid "Embed: Manage" -msgstr "Embed: Manage" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:label" msgid "Webform submission operations bulk form" -msgstr "Webform submission operations bulk form" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:action_title" msgid "Handling" -msgstr "Handling" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sid:label" msgid "#" -msgstr "#" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:in_draft:label" msgid "Draft" -msgstr "Draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sticky:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:locked:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:created:label" msgid "Oprettet" -msgstr "Oprettet" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:completed:label" msgid "Completed" -msgstr "Completed" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:remote_addr:label" msgid "IP address" -msgstr "IP address" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:text" msgid "view" -msgstr "view" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:text" msgid "edit" -msgstr "edit" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:in_draft:expose:label" msgid "Is draft" -msgstr "Is draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:sticky:expose:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:locked:expose:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_manage:display_options:display_description" msgid "Manage submissions." -msgstr "Manage submissions." +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_title" msgid "Embed: Review" -msgstr "Embed: Review" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sid:label" msgid "#" -msgstr "#" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:in_draft:label" msgid "Draft" -msgstr "Draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sticky:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:locked:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:created:label" msgid "Oprettet" -msgstr "Oprettet" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:completed:label" msgid "Completed" -msgstr "Completed" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:remote_addr:label" msgid "IP address" -msgstr "IP address" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:label" msgid "Operations" -msgstr "Operations" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:text" msgid "view" -msgstr "view" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:in_draft:expose:label" msgid "Is draft" -msgstr "Is draft" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:sticky:expose:label" msgid "Sticky" -msgstr "Sticky" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:locked:expose:label" msgid "Locked" -msgstr "Locked" +msgstr "" msgctxt "views.view.webform_submissions:display:embed_review:display_options:display_description" msgid "Review submissions." -msgstr "Review submissions." +msgstr "" msgctxt "views.view.who_s_new:label" -msgid "Nye brugere" -msgstr "Nye brugere" +msgid "Who's new" +msgstr "" msgctxt "views.view.who_s_new:description" -msgid "Viser en liste af de nyeste brugerkonti på sitet." -msgstr "Viser en liste af de nyeste brugerkonti på sitet." +msgid "Shows a list of the newest user accounts on the site." +msgstr "" msgctxt "views.view.who_s_new:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:title" -msgid "Nye brugere" -msgstr "Nye brugere" +msgid "Who's new" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_title" -msgid "Nye brugere" -msgstr "Nye brugere" +msgid "Who's new" +msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:display_description" -msgid "En liste af nye brugere" -msgstr "En liste af nye brugere" +msgid "A list of new users" +msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" -msgid "Nye brugere" -msgstr "Nye brugere" +msgid "Who's new" +msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" -msgid "Bruger" -msgstr "Bruger" +msgid "User" +msgstr "" msgctxt "views.view.who_s_online:label" msgid "Who's online block" -msgstr "Who's online block" +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." +"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." msgctxt "views.view.who_s_online:display:default:display_title" msgid "Master" -msgstr "Master" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:title" -msgid "Hvem er online" -msgstr "Hvem er online" +msgid "Who's online" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:submit_button" msgid "Udfør" -msgstr "Udfør" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:reset_button_label" msgid "Gendan" -msgstr "Gendan" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:exposed_sorts_label" msgid "Sortér efter" -msgstr "Sortér efter" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_asc_label" msgid "Stigende" -msgstr "Stigende" +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_desc_label" msgid "Faldende" -msgstr "Faldende" +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 "Der er i øjeblikket 0 brugere online." +msgid "There are currently 0 users online." +msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" msgid "Seneste tilgang" -msgstr "Seneste tilgang" +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." +"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." msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" -msgid "Der er i øjeblikket @total brugere online." -msgstr "Der er i øjeblikket @total brugere online." +msgid "There are currently @total users online." +msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" -msgid "Hvem er online" -msgstr "Hvem er online" +msgid "Who's online" +msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:display_description" -msgid "En liste af indloggede brugere." -msgstr "En liste af indloggede brugere." +msgid "A list of users that are currently logged in." +msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" -msgid "Hvem er online" -msgstr "Hvem er online" +msgid "Who's online" +msgstr "" msgctxt "webform.settings:settings:default_submit_button_label" msgid "Submit" -msgstr "Submit" +msgstr "" msgctxt "webform.settings:settings:default_reset_button_label" msgid "Reset" -msgstr "Reset" +msgstr "" msgctxt "webform.settings:settings:default_delete_button_label" msgid "Delete" -msgstr "Delete" +msgstr "" msgctxt "webform.settings:settings:default_form_open_message" msgid "This form has not yet been opened to submissions." -msgstr "This form has not yet been opened to submissions." +msgstr "" msgctxt "webform.settings:settings:default_form_close_message" msgid "Sorry… This form is closed to new submissions." -msgstr "Sorry… This form is closed to new submissions." +msgstr "" msgctxt "webform.settings:settings:default_form_exception_message" msgid "Unable to display this webform. Please contact the site administrator." -msgstr "Unable to display this webform. Please contact the site administrator." +msgstr "" msgctxt "webform.settings:settings:default_form_confidential_message" msgid "" @@ -6580,331 +6791,202 @@ msgid "" "href=\"[site:login-url]/logout?destination=[current-page:url:relative]\">Log " "out to submit it." msgstr "" -"This form is confidential. You must Log " -"out to submit it." msgctxt "webform.settings:settings:default_form_access_denied_message" msgid "Please login to access this form." -msgstr "Please login to access this form." +msgstr "" msgctxt "webform.settings:settings:default_form_required_label" msgid "Indicates required field" -msgstr "Indicates required field" +msgstr "" msgctxt "webform.settings:settings:default_wizard_prev_button_label" msgid "< Previous" -msgstr "< Previous" +msgstr "" msgctxt "webform.settings:settings:default_wizard_next_button_label" msgid "Next >" -msgstr "Next >" +msgstr "" msgctxt "webform.settings:settings:default_wizard_start_label" msgid "Start" -msgstr "Start" +msgstr "" msgctxt "webform.settings:settings:default_wizard_confirmation_label" msgid "Complete" -msgstr "Complete" +msgstr "" msgctxt "webform.settings:settings:default_wizard_toggle_show_label" msgid "Show all" -msgstr "Show all" +msgstr "" msgctxt "webform.settings:settings:default_wizard_toggle_hide_label" msgid "Hide all" -msgstr "Hide all" +msgstr "" msgctxt "webform.settings:settings:default_preview_next_button_label" msgid "Gennemse" -msgstr "Gennemse" +msgstr "" msgctxt "webform.settings:settings:default_preview_prev_button_label" msgid "< Previous" -msgstr "< Previous" +msgstr "" msgctxt "webform.settings:settings:default_preview_label" msgid "Gennemse" -msgstr "Gennemse" +msgstr "" msgctxt "webform.settings:settings:default_preview_title" msgid "[webform:title]: Preview" -msgstr "[webform:title]: Preview" +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 "" -"Please review your submission. Your submission is not complete until " -"you press the \"Submit\" button!" msgctxt "webform.settings:settings:default_draft_button_label" msgid "Save Draft" -msgstr "Save Draft" +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 "" -"Submission saved. You may return to this form later and it will " -"restore the current values." msgctxt "webform.settings:settings:default_draft_loaded_message" msgid "" "A partially-completed form was found. Please complete the remaining " "portions." msgstr "" -"A partially-completed form was found. Please complete the remaining " -"portions." msgctxt "webform.settings:settings:default_draft_pending_single_message" msgid "" "You have a pending draft for this webform. Load your " "pending draft." msgstr "" -"You have a pending draft for this webform. Load your " -"pending draft." msgctxt "webform.settings:settings:default_draft_pending_multiple_message" msgid "" "You have pending drafts for this webform. View your " "pending drafts." msgstr "" -"You have pending drafts for this webform. View your " -"pending drafts." msgctxt "webform.settings:settings:default_confirmation_message" msgid "New submission added to [webform:title]." -msgstr "New submission added to [webform:title]." +msgstr "" msgctxt "webform.settings:settings:default_confirmation_back_label" msgid "Back to form" -msgstr "Back to form" +msgstr "" msgctxt "webform.settings:settings:default_limit_total_message" msgid "No more submissions are permitted." -msgstr "No more submissions are permitted." +msgstr "" msgctxt "webform.settings:settings:default_limit_user_message" msgid "No more submissions are permitted." -msgstr "No more submissions are permitted." +msgstr "" msgctxt "webform.settings:settings:default_submission_label" msgid "" "[webform_submission:submitted-to]: Submission " "#[webform_submission:serial]" msgstr "" -"[webform_submission:submitted-to]: Submission " -"#[webform_submission:serial]" msgctxt "webform.settings:settings:default_submission_access_denied_message" msgid "Please login to access this submission." -msgstr "Please login to access this submission." +msgstr "" msgctxt "webform.settings:settings:default_submission_exception_message" msgid "" "Unable to process this submission. Please contact the site " "administrator." msgstr "" -"Unable to process this submission. Please contact the site " -"administrator." msgctxt "webform.settings:settings:default_submission_locked_message" msgid "This submission has been locked." -msgstr "This submission has been locked." - -msgctxt "webform.settings:settings:default_previous_submission_message" -msgid "" -"You have already submitted this webform. View your " -"previous submission." -msgstr "" -"You have already submitted this webform. View your " -"previous submission." - -msgctxt "webform.settings:settings:default_previous_submissions_message" -msgid "" -"You have already submitted this webform. View your " -"previous submissions." -msgstr "" -"You have already submitted this webform. View your " -"previous submissions." - -msgctxt "webform.settings:settings:default_autofill_message" -msgid "This submission has been autofilled with your previous submission." -msgstr "This submission has been autofilled with your previous submission." - -msgctxt "webform.settings:settings:dialog_options:narrow:title" -msgid "Narrow" -msgstr "Narrow" - -msgctxt "webform.settings:settings:dialog_options:normal:title" -msgid "Normal" -msgstr "Normal" - -msgctxt "webform.settings:settings:dialog_options:wide:title" -msgid "Wide" -msgstr "Wide" - -msgctxt "webform.settings:element:empty_message" -msgid "{Empty}" -msgstr "{Empty}" - -msgctxt "webform.settings:element:default_more_title" -msgid "More" -msgstr "More" - -msgctxt "webform.settings:element:default_section_title_tag" -msgid "h2" -msgstr "h2" - -msgctxt "webform.settings:file:file_private_redirect_message" -msgid "Please login to access the uploaded file." -msgstr "Please login to access the uploaded file." - -msgctxt "webform.settings:mail:default_from_name" -msgid "[site:name]" -msgstr "[site:name]" - -msgctxt "webform.settings:mail:default_subject" -msgid "Webform submission from: [webform_submission:source-title]" -msgstr "Webform submission from: [webform_submission:source-title]" - -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 "" -"Submitted on [webform_submission:created]\n" -"Submitted by: " -"[webform_submission:user]\n" -"\n" -"Submitted values " -"are:\n" -"[webform_submission:values]\n" -"" - -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 "" -"

    Submitted on [webform_submission:created]

    \n" -"

    Submitted by: " -"[webform_submission:user]

    \n" -"

    Submitted values " -"are:

    \n" -"[webform_submission:values]\n" -"" -msgctxt "webform.settings:test:types" +msgctxt "webform.settings:settings:default_previous_submission_message" 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" +"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_autofill_message" +msgid "This submission has been autofilled with your previous submission." +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:narrow:title" +msgid "Narrow" +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:normal:title" +msgid "Normal" +msgstr "" + +msgctxt "webform.settings:settings:dialog_options:wide:title" +msgid "Wide" +msgstr "" + +msgctxt "webform.settings:element:empty_message" +msgid "{Empty}" +msgstr "" + +msgctxt "webform.settings:element:default_more_title" +msgid "More" +msgstr "" + +msgctxt "webform.settings:element:default_section_title_tag" +msgid "h2" +msgstr "" + +msgctxt "webform.settings:file:file_private_redirect_message" +msgid "Please login to access the uploaded file." +msgstr "" + +msgctxt "webform.settings:mail:default_from_name" +msgid "[site:name]" +msgstr "" + +msgctxt "webform.settings:mail:default_subject" +msgid "Webform submission from: [webform_submission:source-title]" +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.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 "webform.settings:test:types" +msgid "" "checkbox:\n" " - true\n" "color:\n" @@ -6997,6 +7079,7 @@ msgstr "" " - '09:00'\n" " - '17:00'\n" "" +msgstr "" msgctxt "webform.settings:test:names" msgid "" @@ -7050,67 +7133,18 @@ msgid "" "'Dixisset'\n" "" msgstr "" -"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" -"" msgctxt "webform.webform.alder:title" msgid "Alder" -msgstr "Alder" +msgstr "" msgctxt "webform.webform.alder:description" msgid "10-14 år" -msgstr "10-14 år" +msgstr "" msgctxt "webform.webform.alder:categories:0" msgid "14-16" -msgstr "14-16" +msgstr "" msgctxt "webform.webform.alder:elements" msgid "" @@ -7123,139 +7157,21 @@ msgid "" " '#title': " "'Skriv lidt om dig selv'" msgstr "" -"hvor_gammel_er_du_:\n" -" '#type': checkbox\n" -" '#title': 'Er du over 15 " -"år?'\n" -"skriv_lidt_om_dig_selv:\n" -" '#type': textfield\n" -" '#title': " -"'Skriv lidt om dig selv'" - -msgctxt "webform.webform.skriv_lidt_om_dig_selv:title" -msgid "Skriv lidt om dig selv" -msgstr "Skriv lidt om dig selv" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:title" -msgid "Spørgsmål til forslagsstillere" -msgstr "Spørgsmål til forslagsstillere" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:description" -msgid "Denne formular er til forslagsstillere" -msgstr "Denne formular er til forslagsstillere" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:elements" -msgid "" -"hvad_er_din_alder_1:\n" -" '#type': select\n" -" '#title': 'Hvad er din " -"alder?'\n" -" '#options':\n" -" '15-20 år': '15-20 år'\n" -" '21-30 " -"år': '21-30 år'\n" -" '31-40 år': '31-40 år'\n" -" '41-50 år ': " -"'41-50 år '\n" -" '51-60 år ': '51-60 år '\n" -" '61-70 år ': " -"'61-70 år '\n" -" '71 + år ': '71 + år '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"hvad_er_din_laengst_gennemfoerte_uddannelse_hvis_du_er_i_gang_me:\n" -" " -" '#type': select\n" -" '#title': 'Hvad er din længst gennemførte " -"uddannelse? Hvis du er i gang med en uddannelse, skal du vælge den " -"uddannelse, du er i gang med. '\n" -" '#options':\n" -" 'Grundskole, fx " -"folkeskolen ': 'Grundskole, fx folkeskolen '\n" -" 'Gymnasial " -"uddannelse ': 'Gymnasial uddannelse '\n" -" 'Erhvervsuddannelse ': " -"'Erhvervsuddannelse '\n" -" 'Kort eller mellemlang videregående " -"uddannelse ': 'Kort eller mellemlang videregående uddannelse '\n" -" " -"'Lang videregående uddannelse ': 'Lang videregående uddannelse '\n" -" " -" 'Andet ': 'Andet '\n" -" 'Ved ikke': 'Ved ikke'\n" -" '#empty_option': " -"'- Ingen - " -"'\n" -"hvor_stor_tillid_har_du_i_almindelighed_til_aarhus_kommune_:\n" -" " -"'#type': select\n" -" '#title': 'Hvor stor tillid har du i almindelighed " -"til Aarhus Kommune? '\n" -" '#options':\n" -" 'Meget stor tillid ': " -"'Meget stor tillid '\n" -" 'Ret stor tillid ': 'Ret stor tillid '\n" -" " -" 'Ret begrænset tillid ': 'Ret begrænset tillid '\n" -" 'Meget " -"begrænset tillid ': 'Meget begrænset tillid '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"i_hvor_hoej_grad_forventer_du_at_borgerforslag_styrker_din_mulig:\n" -" " -" '#type': select\n" -" '#title': 'I hvor høj grad forventer du, at " -"borgerforslag styrker din mulighed for at få indflydelse? '\n" -" " -"'#options':\n" -" 'I høj grad': 'I høj grad'\n" -" 'I meget høj " -"grad ': 'I meget høj grad '\n" -" 'I lav grad ': 'I lav grad '\n" -" " -"'I meget lav grad ': 'I meget lav grad '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"hvad_forventer_du_konkret_at_du_opnaar_ved_at_stille_et_borgerfo:\n" -" " -" '#type': select\n" -" '#title': 'Hvad forventer du konkret at opnå ved " -"at stille et borgerforslag? Vælg den mulighed der passer bedst. '\n" -" " -"'#options':\n" -" 'At forslaget bliver gennemført ': 'At forslaget " -"bliver gennemført '\n" -" 'At byrådet drøfter forslaget ': 'At " -"byrådet drøfter forslaget '\n" -" 'At skabe en offentlig debat ': " -"'At skabe en offentlig debat '\n" -" 'At gøre kommunen opmærksom på " -"et problem ': 'At gøre kommunen opmærksom på et problem '\n" -" " -"'Ingenting ': 'Ingenting '\n" -" Andet: Andet\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - '\n" -"borgerforslag:\n" -" '#type': " -"entity_autocomplete\n" -" '#title': Borgerforslag\n" -" '#target_type': " -"node\n" -" '#selection_handler': 'default:node'\n" -" " -"'#selection_settings':\n" -" target_bundles:\n" -" citizen_proposal: " -"citizen_proposal" -msgstr "" + +msgctxt "webform.webform.skriv_lidt_om_dig_selv:title" +msgid "Skriv lidt om dig selv" +msgstr "" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:title" +msgid "Spørgsmål til forslagsstillere" +msgstr "" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:description" +msgid "Denne formular er til forslagsstillere" +msgstr "" + +msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:elements" +msgid "" "hvad_er_din_alder_1:\n" " '#type': select\n" " '#title': 'Hvad er din " @@ -7365,30 +7281,31 @@ msgstr "" " target_bundles:\n" " citizen_proposal: " "citizen_proposal" +msgstr "" msgctxt "webform.webform_options.country_codes:label" msgid "Country codes" -msgstr "Country codes" +msgstr "" msgctxt "webform.webform_options.country_codes:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.country_names:label" msgid "Country names" -msgstr "Country names" +msgstr "" msgctxt "webform.webform_options.country_names:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.days:label" msgid "Days" -msgstr "Days" +msgstr "" msgctxt "webform.webform_options.days:category" msgid "Date and time" -msgstr "Date and time" +msgstr "" msgctxt "webform.webform_options.days:options" msgid "" @@ -7403,24 +7320,14 @@ msgid "" "Saturday\n" "" msgstr "" -"Sunday: Sunday\n" -"Monday: Monday\n" -"Tuesday: Tuesday\n" -"Wednesday: " -"Wednesday\n" -"Thursday: Thursday\n" -"Friday: Friday\n" -"Saturday: " -"Saturday\n" -"" msgctxt "webform.webform_options.education:label" msgid "Education" -msgstr "Education" +msgstr "" msgctxt "webform.webform_options.education:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.education:options" msgid "" @@ -7432,21 +7339,14 @@ msgid "" "Some College: Some College\n" "" msgstr "" -"High School: High School\n" -"Associate Degree: Associate " -"Degree\n" -"Graduate or Professional Degree: Graduate or Professional " -"Degree\n" -"Some College: Some College\n" -"" msgctxt "webform.webform_options.employment_status:label" msgid "Employment status" -msgstr "Employment status" +msgstr "" msgctxt "webform.webform_options.employment_status:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.employment_status:options" msgid "" @@ -7458,21 +7358,14 @@ msgid "" "Retired: Retired\n" "" msgstr "" -"'Full Time': 'Full Time'\n" -"'Part Time': 'Part Time'\n" -"'Military': " -"'Military'\n" -"Unemployed: Unemployed\n" -"Retired: Retired\n" -"" msgctxt "webform.webform_options.ethnicity:label" msgid "Ethnicity" -msgstr "Ethnicity" +msgstr "" msgctxt "webform.webform_options.ethnicity:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.ethnicity:options" msgid "" @@ -7489,26 +7382,14 @@ msgid "" "Mixed: Mixed\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.gender:label" msgid "Gender" -msgstr "Gender" +msgstr "" msgctxt "webform.webform_options.gender:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.gender:options" msgid "" @@ -7555,56 +7436,14 @@ msgid "" "'Prefer Not to Answer': 'Prefer Not to Answer'\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.industry:label" msgid "Industry" -msgstr "Industry" +msgstr "" msgctxt "webform.webform_options.industry:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.industry:options" msgid "" @@ -7676,89 +7515,22 @@ msgid "" "Transportation/Logistics\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.languages:label" msgid "Languages" -msgstr "Languages" +msgstr "" msgctxt "webform.webform_options.languages:category" msgid "Language" -msgstr "Language" +msgstr "" msgctxt "webform.webform_options.likert_agreement:label" msgid "Likert: Agreement" -msgstr "Likert: Agreement" +msgstr "" msgctxt "webform.webform_options.likert_agreement:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_agreement:options" msgid "" @@ -7770,21 +7542,14 @@ msgid "" "Strongly Agree\n" "" msgstr "" -"1: Strongly Disagree\n" -"2: Disagree\n" -"3: Neutral\n" -"4: Agree\n" -"5: " -"Strongly Agree\n" -"" msgctxt "webform.webform_options.likert_comparison:label" msgid "Likert: Comparison" -msgstr "Likert: Comparison" +msgstr "" msgctxt "webform.webform_options.likert_comparison:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_comparison:options" msgid "" @@ -7796,21 +7561,14 @@ msgid "" "5: Much Better\n" "" msgstr "" -"1: Much Worse\n" -"2: Somewhat Worse\n" -"3: About the Same\n" -"4: Somewhat " -"Better\n" -"5: Much Better\n" -"" msgctxt "webform.webform_options.likert_importance:label" msgid "Likert: Importance" -msgstr "Likert: Importance" +msgstr "" msgctxt "webform.webform_options.likert_importance:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_importance:options" msgid "" @@ -7822,21 +7580,14 @@ msgid "" "5: Very Important\n" "" msgstr "" -"1: Not at all Important\n" -"2: Somewhat Important\n" -"3: Neutral\n" -"4: " -"Important\n" -"5: Very Important\n" -"" msgctxt "webform.webform_options.likert_quality:label" msgid "Likert: Quality" -msgstr "Likert: Quality" +msgstr "" msgctxt "webform.webform_options.likert_quality:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_quality:options" msgid "" @@ -7847,20 +7598,14 @@ msgid "" "5: Excellent\n" "" msgstr "" -"1: Poor\n" -"2: Fair\n" -"3: Good\n" -"4: Very good\n" -"5: Excellent\n" -"" msgctxt "webform.webform_options.likert_satisfaction:label" msgid "Likert: Satisfaction" -msgstr "Likert: Satisfaction" +msgstr "" msgctxt "webform.webform_options.likert_satisfaction:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_satisfaction:options" msgid "" @@ -7872,21 +7617,14 @@ msgid "" "Very Satisfied\n" "" msgstr "" -"1: Very Unsatisfied\n" -"2: Unsatisfied\n" -"3: Neutral\n" -"4: Satisfied\n" -"5: " -"Very Satisfied\n" -"" msgctxt "webform.webform_options.likert_ten_scale:label" msgid "Likert: Ten Scale" -msgstr "Likert: Ten Scale" +msgstr "" msgctxt "webform.webform_options.likert_ten_scale:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_ten_scale:options" msgid "" @@ -7903,26 +7641,14 @@ msgid "" "10\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.likert_would_you:label" msgid "Likert: Would You" -msgstr "Likert: Would You" +msgstr "" msgctxt "webform.webform_options.likert_would_you:category" msgid "Likert" -msgstr "Likert" +msgstr "" msgctxt "webform.webform_options.likert_would_you:options" msgid "" @@ -7934,21 +7660,14 @@ msgid "" "Definitely\n" "" msgstr "" -"1: Definitely Not\n" -"2: Probably Not\n" -"3: Not Sure\n" -"4: Probably\n" -"5: " -"Definitely\n" -"" msgctxt "webform.webform_options.marital_status:label" msgid "Marital status" -msgstr "Marital status" +msgstr "" msgctxt "webform.webform_options.marital_status:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.marital_status:options" msgid "" @@ -7959,20 +7678,14 @@ msgid "" "Widowed\n" "" msgstr "" -"Single: Single\n" -"Married: Married\n" -"Divorced: Divorced\n" -"Widowed: " -"Widowed\n" -"" msgctxt "webform.webform_options.months:label" msgid "Months" -msgstr "Months" +msgstr "" msgctxt "webform.webform_options.months:category" msgid "Date and time" -msgstr "Date and time" +msgstr "" msgctxt "webform.webform_options.months:options" msgid "" @@ -7993,30 +7706,14 @@ msgid "" "December: December\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.phone_types:label" msgid "Phone type" -msgstr "Phone type" +msgstr "" msgctxt "webform.webform_options.phone_types:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.phone_types:options" msgid "" @@ -8025,18 +7722,14 @@ msgid "" "Cell: Cell\n" "" msgstr "" -"Home: Home\n" -"Office: Office\n" -"Cell: Cell\n" -"" msgctxt "webform.webform_options.province_codes:label" msgid "Province codes" -msgstr "Province codes" +msgstr "" msgctxt "webform.webform_options.province_codes:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.province_codes:options" msgid "" @@ -8058,31 +7751,14 @@ msgid "" "YT: Yukon\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.province_names:label" msgid "Province names" -msgstr "Province names" +msgstr "" msgctxt "webform.webform_options.province_names:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.province_names:options" msgid "" @@ -8107,34 +7783,14 @@ msgid "" "Yukon\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.relationship:label" msgid "Relationship" -msgstr "Relationship" +msgstr "" msgctxt "webform.webform_options.relationship:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.relationship:options" msgid "" @@ -8146,21 +7802,14 @@ msgid "" "Friend: Friend\n" "" msgstr "" -"Parent: Parent\n" -"'Significant Other': 'Significant Other'\n" -"Sibling: " -"Sibling\n" -"Child: Child\n" -"Friend: Friend\n" -"" msgctxt "webform.webform_options.sex:label" msgid "Sex" -msgstr "Sex" +msgstr "" msgctxt "webform.webform_options.sex:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.sex:options" msgid "" @@ -8168,17 +7817,14 @@ msgid "" "Female: Female\n" "" msgstr "" -"Male: Male\n" -"Female: Female\n" -"" msgctxt "webform.webform_options.sex_icao:label" msgid "Sex - International Civil Aviation Organization (ICAO)" -msgstr "Sex - International Civil Aviation Organization (ICAO)" +msgstr "" msgctxt "webform.webform_options.sex_icao:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.sex_icao:options" msgid "" @@ -8187,18 +7833,14 @@ msgid "" "X: Unspecified\n" "" msgstr "" -"M: Male\n" -"F: Female\n" -"X: Unspecified\n" -"" msgctxt "webform.webform_options.size:label" msgid "Size" -msgstr "Size" +msgstr "" msgctxt "webform.webform_options.size:category" msgid "General" -msgstr "General" +msgstr "" msgctxt "webform.webform_options.size:options" msgid "" @@ -8210,21 +7852,14 @@ msgid "" "Extra Large: Extra Large\n" "" msgstr "" -"Extra Small: Extra Small\n" -"Small: Small\n" -"Medium: Medium\n" -"Large: " -"Large\n" -"Extra Large: Extra Large\n" -"" msgctxt "webform.webform_options.state_codes:label" msgid "State codes" -msgstr "State codes" +msgstr "" msgctxt "webform.webform_options.state_codes:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.state_codes:options" msgid "" @@ -8275,172 +7910,36 @@ msgid "" "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 "" -"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" -"" - -msgctxt "webform.webform_options.state_names:label" -msgid "State names" -msgstr "State names" - -msgctxt "webform.webform_options.state_names:category" -msgid "Geographic" -msgstr "Geographic" - -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" +"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 "webform.webform_options.state_names:label" +msgid "State names" +msgstr "" + +msgctxt "webform.webform_options.state_names:category" +msgid "Geographic" +msgstr "" + +msgctxt "webform.webform_options.state_names:options" +msgid "" "Alabama: Alabama\n" "Alaska: Alaska\n" "Arizona: Arizona\n" @@ -8511,14 +8010,15 @@ msgstr "" "Wisconsin\n" "Wyoming: Wyoming\n" "" +msgstr "" msgctxt "webform.webform_options.state_province_codes:label" msgid "State/Province codes" -msgstr "State/Province codes" +msgstr "" msgctxt "webform.webform_options.state_province_codes:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.state_province_codes:options" msgid "" @@ -8620,111 +8120,14 @@ msgid "" "YT: Yukon\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.state_province_names:label" msgid "State/Province names" -msgstr "State/Province names" +msgstr "" msgctxt "webform.webform_options.state_province_names:category" msgid "Geographic" -msgstr "Geographic" +msgstr "" msgctxt "webform.webform_options.state_province_names:options" msgid "" @@ -8838,131 +8241,22 @@ msgid "" "Yukon\n" "" msgstr "" -"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" -"" msgctxt "webform.webform_options.time_zones:label" msgid "Time zones" -msgstr "Time zones" +msgstr "" msgctxt "webform.webform_options.time_zones:category" msgid "Date and time" -msgstr "Date and time" +msgstr "" msgctxt "webform.webform_options.titles:label" msgid "Titles" -msgstr "Titles" +msgstr "" msgctxt "webform.webform_options.titles:category" msgid "Demographic" -msgstr "Demographic" +msgstr "" msgctxt "webform.webform_options.titles:options" msgid "" @@ -8973,28 +8267,22 @@ msgid "" "Dr: Dr\n" "" msgstr "" -"Miss: Miss\n" -"Ms: Ms\n" -"Mr: Mr\n" -"Mrs: Mrs\n" -"Dr: Dr\n" -"" msgctxt "webform.webform_options.translations:label" msgid "Translations" -msgstr "Translations" +msgstr "" msgctxt "webform.webform_options.translations:category" msgid "Language" -msgstr "Language" +msgstr "" msgctxt "webform.webform_options.yes_no:label" msgid "Yes/No" -msgstr "Yes/No" +msgstr "" msgctxt "webform.webform_options.yes_no:category" msgid "General" -msgstr "General" +msgstr "" msgctxt "webform.webform_options.yes_no:options" msgid "" @@ -9002,7 +8290,4 @@ msgid "" "No: No\n" "" msgstr "" -"Yes: Yes\n" -"No: No\n" -"" diff --git a/documentation/Translation.md b/documentation/Translation.md index 5bc82b940..2c9d37b79 100644 --- a/documentation/Translation.md +++ b/documentation/Translation.md @@ -1,19 +1,177 @@ # Translation -We use [Translation template extractor](https://www.drupal.org/project/potx) to extract translations from custom modules -and themes. +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. -We 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). +## Introduction -Extract translations by running +We have four types of translations in Drupal: -``` shell name=translations:extract -task translations:extract +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 ``` -Import (extracted) translations by running +> [!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 name=translations:import:all -task translations:import:all +``` 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 index a87fbc721..151666007 100644 --- a/task/Taskfile.translation.yml +++ b/task/Taskfile.translation.yml @@ -1,37 +1,78 @@ -version: '3' +# 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 -vars: +version: '3' tasks: - translations:import: + contrib-translations:export: + desc: 'Export contrib translations for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' cmds: - - task drush -- locale:import --type=not-customized --override=not-customized 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)));"' + - 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 - translations:export: + contrib-translations:import: + prompt: "Really import contrib translations?" + desc: 'Import contrib translations for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' cmds: - # @todo Which types should we use here? - - task 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' + - 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' web/*/custom/*/translations/*.po translations/*.po + - 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 web/*/custom/*/translations/*.po translations/*.po + - git checkout '*.po' # https://taskfile.dev/reference/schema#precondition preconditions: - sh: task {{.TASK | replace ":checkout" ":diff" }} @@ -44,89 +85,209 @@ tasks: to check. - translations:extract: + module-translations:export: + desc: 'Export translations for all modules ({{.TRANSLATION_MODULES | join ", "}}) in all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' cmds: - - task drush -- --yes pm:install potx - - task: translations:extract:modules - - task: translations:extract:themes - - task drush -- --yes pm:uninstall potx + - 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 - translations:extract:modules: + 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: - # https://github.com/go-task/task/discussions/1543 - for: matrix: - MODULE: - ref: .TRANSLATION_MODULES LANGUAGE: - - da - cmd: | - task drush -- potx single --folder=modules/custom/{{.ITEM.MODULE}}/ --language {{.ITEM.LANGUAGE}} --translations && \ - mkdir -p web/modules/custom/{{.ITEM.MODULE}}/translations && \ - mv web/general.pot web/modules/custom/{{.ITEM.MODULE}}/translations/{{.ITEM.MODULE}}.{{.ITEM.LANGUAGE}}.po - internal: true + 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 - translations:extract:themes: + config-translations:import: + prompt: "Really import config translations?" + desc: 'Import config translation for all languages ({{.TRANSLATION_LANGUAGES | join ", "}})' cmds: - # https://github.com/go-task/task/discussions/1543 - for: matrix: - THEME: - ref: .TRANSLATION_THEMES LANGUAGE: - - da - # `drush potx` always writes to web/general.pot, so we move this file - # into the desired destination in the `translations` folder inside the - # module folder. - cmd: | - task drush -- potx single --folder=themes/custom/{{.ITEM.THEME}}/ --language {{.ITEM.LANGUAGE}} --translations && \ - mkdir -p web/themes/custom/{{.ITEM.THEME}}/translations && \ - mv web/general.pot web/themes/custom/{{.ITEM.THEME}}/translations/{{.ITEM.THEME}}.{{.ITEM.LANGUAGE}}.po - internal: true + 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 - # @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? - translations:import:modules: + test-pluralization: + desc: "Report and test some pluralizations to make sure that they are correct" cmds: - - for: - matrix: - MODULE: - ref: .TRANSLATION_MODULES - cmd: task drush -- locale:import-all --override=none modules/custom/{{.ITEM.MODULE}}/translations/ - internal: true + - 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(); - translations:import:themes: + \$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: - - for: - matrix: - THEME: - ref: .TRANSLATION_THEMES - cmd: task drush -- locale:import-all --override=none themes/custom/{{.ITEM.THEME}}/translations/ - internal: true + - task: contrib-translations:export + - task: config-translations:export + - task: module-translations:export + - task: theme-translations:export + silent: true - translations:import:all: + import: + prompt: "Really import all translations?" + desc: Run all translation import tasks cmds: - - task: translations:import:modules - - task: translations:import:themes + # 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 - config-translations:export: + clean-up-translations: + internal: true cmds: - - task drush -- config_translation_po:export da > translations/config-translations.da.po - # Fix plurals spec in PO file + # Fix plurals spec in Danish 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/config-translations.da.po' + - | + docker run --user=${COMPOSE_USER:-deploy} --rm --volume "$PWD:/app" itkdev/php8.3-fpm 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') + + # ------------------------------------------------------------------------------ + # 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 - config-translations:import: + # @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: - # Note: We use an empty type to import as not-customized. - - task drush -- config_translation_po:import --type='' --override=not-customized da ../translations/config-translations.da.po + - 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 diff --git a/translations/custom-translations.da.po b/translations/contrib-translations.da.po similarity index 88% rename from translations/custom-translations.da.po rename to translations/contrib-translations.da.po index 6b2f8a8dc..51fe1a77c 100644 --- a/translations/custom-translations.da.po +++ b/translations/contrib-translations.da.po @@ -3,217 +3,670 @@ 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" +"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: 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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Primary admin actions" -msgstr "Primary admin actions" +msgid "Block type" +msgstr "Block type" -msgid "Tabs" -msgstr "Tabs" +msgid "Content type" +msgstr "Content type" -msgid "User login" -msgstr "User login" +msgid "Description" +msgstr "Beskrivelse" -msgid "Status messages" -msgstr "Status messages" +msgid "Content" +msgstr "Content" -msgid "Page title" -msgstr "Page title" +msgid "Footer" +msgstr "Footer" -msgid "Tools" -msgstr "Tools" +msgid "Share the proposal" +msgstr "Del forslaget" -msgid "Fallback date format" -msgstr "Fallback date format" +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 "Default long date" -msgstr "Default long date" +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" -msgctxt "PHP date format" -msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" +msgid "Phone" +msgstr "Telefonnummer" -msgid "Default medium date" -msgstr "Default medium date" +msgid "Initiative" +msgstr "Initiativ" -msgctxt "PHP date format" -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" +msgid "Information page" +msgstr "Information" -msgid "Default short date" -msgstr "Default short date" +msgid "Public meeting" +msgstr "Begivenhed" -msgctxt "PHP date format" -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" +msgid "Finished" +msgstr "Afsluttet" -msgid "Register" -msgstr "Register" +msgid "Cancelled" +msgstr "Aflyst" -msgid "Full" -msgstr "Full" +msgid "Start date" +msgstr "Start dato" -msgid "Full content" -msgstr "Full content" +msgid "Upcoming" +msgstr "På vej" -msgid "Search index" -msgstr "Search index" +msgid "Reply date" +msgstr "Svarfrist" -msgid "Search result highlighting input" -msgstr "Search result highlighting input" +msgid "Your search yielded no result" +msgstr "Din søgning gav ingen resultater." -msgid "Teaser" -msgstr "Teaser" +msgid "Support the proposal" +msgstr "Støt borgerforslaget" -msgid "Taxonomy term page" -msgstr "Taxonomy term page" +msgid "Project info" +msgstr "Initiativ info" -msgid "Compact" -msgstr "Compact" +msgid "Hearing reply for" +msgstr "Høringssvar for" -msgid "User account" -msgstr "User account" +msgid "Show more hearings" +msgstr "Vis flere høringer" -msgid "Plain text" -msgstr "Plain text" +msgid "Expected finish" +msgstr "Forventet afsluttet" -msgid "Large (480×480)" -msgstr "Large (480×480)" +msgid "Meeting has already been held" +msgstr "Mødet er afholdt" -msgid "Medium (220×220)" -msgstr "Medium (330×330)" +msgid "Registration deadline passed" +msgstr "Deadline for tilmelding er overskredet" -msgid "Not specified" -msgstr "Not specified" +msgid "Sign up for public meeting" +msgstr "Tilmeld dig her" -msgid "Not applicable" -msgstr "Not applicable" +msgid "Content on this page" +msgstr "Indhold på denne side" -msgid "Delete content" -msgstr "Delete content" +msgid "Add hearing ticket" +msgstr "Tilføj høringssvar" -msgid "Make content sticky" -msgstr "Make content sticky" +msgid "Materials" +msgstr "Materialer" -msgid "Make content unsticky" -msgstr "Make content unsticky" +msgid "Date" +msgstr "Dato" -msgid "Promote content to front page" -msgstr "Promote content to front page" +msgid "Spots" +msgstr "Pladser" -msgid "Publish content" -msgstr "Publish content" +msgid "Sign up" +msgstr "Tilmeld dig her" -msgid "Save content" -msgstr "Save content" +msgid "Opens in a new tab" +msgstr "Åbner i en ny fane" -msgid "Remove content from front page" -msgstr "Remove content from front page" +msgid "Last date for signup" +msgstr "Tilmeldingsfrist" -msgid "Unpublish content" -msgstr "Unpublish content" +msgid "Open project gallery" +msgstr "Åbn projektgalleri" -msgid "Update URL alias" -msgstr "Update URL alias" +msgid "Page" +msgstr "Side" -msgid "Block the selected user(s)" -msgstr "Block the selected user(s)" +msgid "Create your proposal" +msgstr "Opret borgerforslag" -msgid "Cancel the selected user account(s)" -msgstr "Cancel the selected user account(s)" +msgid "Show on map" +msgstr "Vis på kort" -msgid "Unblock the selected user(s)" -msgstr "Unblock the selected user(s)" +msgid "The proposal list is empty" +msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" -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 "The hearing list is empty" +msgstr "Ingen høringer fundet" -msgid "User account menu" -msgstr "User account menu" +msgid "Show all hearings" +msgstr "Vis alle høringer" -msgid "Links related to the active user account" -msgstr "Links related to the active user account" +msgid "The meeting list is empty" +msgstr "Ingen begivenheder fundet" -msgid "Administrative task links" -msgstr "Administrative task links" +msgid "Show all meetings" +msgstr "Vis alle begivenheder" -msgid "Footer" -msgstr "Footer" +msgid "Search and results will show up here" +msgstr "Søg og resultaterne vil blive vist her" -msgid "Site information links" -msgstr "Site information links" +msgid "Search for %search_terms returned no results" +msgstr "Søgning på %search_terms gav ingen resultater" -msgid "Main navigation" -msgstr "Main navigation" +msgid "Try with less words or to phrase it differently" +msgstr "Prøv med færre eller andre søgeord " -msgid "Site section links" -msgstr "Site section links" +msgid "Create new proposal" +msgstr "Opret borgerforslag" -msgid "User tool links, often added by modules" -msgstr "User tool links, often added by modules" +msgid "Name" +msgstr "Navn" -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 "Display email" +msgstr "Ja, vis min e-mail på mit borgerforslag" -msgid "Account cancellation request for [user:display-name] at [site:name]" -msgstr "Account cancellation request for [user:display-name] at [site:name]" +msgid "Allow email" +msgstr " Ja, I må gerne kontakte mig." -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 " +msgid "Title" +msgstr "Titel" + +msgid "@remaining characters left." +msgstr "@remaining tegn tilbage" + +msgid "Proposal" +msgstr "Forslag" + +msgid "Remarks" +msgstr "Begrundelse" + +msgid "Personal data storage consent" +msgstr "" +"Jeg har læst betingelserne og giver mit samtykke Læs mere " +"her" + +msgid "Update proposal" +msgstr "Opdater borgerforslag" + +msgid "Create proposal" +msgstr "Opret borgerforslag" + +msgid "(Not shown on proposal)" +msgstr "Ikke synligt for andre" + +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 "Could not find a proposal to approve." +msgstr "Ikke muligt at finde et forslag at godkende" + +msgid "You're currently authenticated as @name" +msgstr "Du er logget ind som @name" + +msgid "Sign out" +msgstr "Log ud" + +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 "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 "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 "Number of supporters" +msgstr "Antal støtter" + +msgid "Author" +msgstr "Author" + +msgid "Hearing" +msgstr "Høring" + +msgid "Frontpage" +msgstr "Frontpage" + +msgid "Node address" +msgstr "Adresse" + +msgid "Node more info" +msgstr "Mere information" + +msgid "Note! Hearing deadline has passed." +msgstr "Note! Hørings tidsfristen er forbi." + +msgid "Note! This hearing has not started yet" +msgstr "Note! Denne høring er ikke startet endnu." + +msgid "Note! Hearing deadline approaching." +msgstr "Note! Hørings tidsfristen nærmer sig." + +msgid "Note! This public meeting has been held." +msgstr "Denne begivenhed er afholdt" + +msgid "Note! This public meeting has been cancelled." +msgstr "Note! Denne begivenhed er aflyst" + +msgid "Hearing tickets" +msgstr "Høringssvar" + +msgid "Point" +msgstr "Vælg punkt på kort" + +msgid "Deskpro" +msgstr "Sagsbehandlersystem" + +msgid "Email address" +msgstr "E-mailadresse" + +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 "Postal code and city" +msgstr "Postnummer og by" + +msgid "Street and number" +msgstr "Vejnavn og nummer" + +msgid "My address is secret" +msgstr "Jeg har adressebeskyttelse" + +msgid "Message" +msgstr "Høringssvar" + +msgid "Your name cannot contain numbers." +msgstr "Dit navn må ikke indeholde tal." + +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 "Sent d." +msgstr "Indsendt" + +msgid "Represents" +msgstr "Udtaler sig som" + +msgid "Ticket reference" +msgstr "Sagsnummer" + +msgid "Hearing reply" +msgstr "Høringssvar" + +msgid "Create hearing reply" +msgstr "Skriv høringssvar" + +msgid "Download ticket as pdf" +msgstr "Download høringssvar som pdf" + +msgid "Show hearing tickets" +msgstr "Vis indkomne svar" + +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." +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 "@ticket_ref by @person_name" +msgstr "@ticket_ref af @person_name" + +msgid "Add hearing reply" +msgstr "Tilføj høringssvar" + +msgid "Project start" +msgstr "Initiativ start" + +msgid "Expected end date" +msgstr "Forventet slutdato" + +msgid "Place" +msgstr "Lokation" + +msgid "Last signup date" +msgstr "Tilmeldingsfrist" + +msgid "Primary admin actions" +msgstr "Primary admin actions" + +msgid "Tabs" +msgstr "Tabs" + +msgid "Status messages" +msgstr "Status messages" + +msgid "Page title" +msgstr "Page title" + +msgid "Tools" +msgstr "Tools" + +msgid "Anonymous" +msgstr "Anonymous" + +msgid "Hero (1440×360)" +msgstr "Hero (1440w) - Crop" + +msgid "Default" +msgstr "Default" + +msgid "Advanced Queue jobs" +msgstr "Advanced queue jobs" + +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 "State" +msgstr "State" + +msgid "
    {{ payload }}
    " +msgstr "" + +msgid "Available date" +msgstr "" + +msgid "Message" +msgstr "Høringssvar" + +msgid "Operations" +msgstr "Operations" + +msgid "Available from" +msgstr "Available date" + +msgid "All" +msgstr "All" + +msgid "Page" +msgstr "Side" + +msgid "Full" +msgstr "Full" + +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 "Plain text" +msgstr "Plain text" + +msgid "Medium (220×220)" +msgstr "Medium (330×330)" + +msgid "Not specified" +msgstr "Not specified" + +msgid "Not applicable" +msgstr "Not applicable" + +msgid "Full content" +msgstr "Full content" + +msgid "Full content" +msgstr "Fuldt indhold" + +msgid "Teaser" +msgstr "Teaser" + +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 "‹ previous" +msgstr "‹ forrige" + +msgid "next ›" +msgstr "næste ›" + +msgid "« first" +msgstr "« første" + +msgid "last »" +msgstr "sidste »" + +msgid "From" +msgstr "Fra" + +msgid "Created" +msgstr "Oprettet" + +msgid "To" +msgstr "Til" + +msgid "Original language" +msgstr "Originalt sprog" + +msgid "Page" +msgstr "Side" + +msgid "Fallback date format" +msgstr "Fallback date format" + +msgid "Default long date" +msgstr "Default long date" + +msgid "l, F j, Y - H:i" +msgstr "l, j. F Y - H:i" + +msgid "Default medium date" +msgstr "Default medium date" + +msgid "D, m/d/Y - H:i" +msgstr "D, d/m/Y - H:i" + +msgid "Default short date" +msgstr "Default short date" + +msgid "m/d/Y - H:i" +msgstr "d/m/Y - H:i" + +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 "Sidefod" + +msgid "Site information links" +msgstr "Site information links" + +msgid "Main navigation" +msgstr "Main navigation" + +msgid "Site section links" +msgstr "Site section links" + +msgid "Tools" +msgstr "Værktøjer" + +msgid "User tool links, often added by modules" +msgstr "User tool links, often added by modules" + +msgid "Taxonomy term page" +msgstr "Taxonomy term page" + +msgid "Register" +msgstr "Register" + +msgid "Compact" +msgstr "Compact" + +msgid "User account" +msgstr "User account" + +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 "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 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 "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 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" @@ -243,9 +696,9 @@ msgstr "" "\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 "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" @@ -292,8 +745,8 @@ msgstr "" "\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 "Account details for [user:display-name] at [site:name]" +msgstr "Account details for [user:display-name] at [site:name]" msgid "" "[user:display-name],\n" @@ -340,8 +793,12 @@ msgstr "" "\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 "" +"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],\n" @@ -352,7 +809,6 @@ msgid "" "information about how to log in, set your password, and other " "details.\n" "\n" -"\n" "-- [site:name] team" msgstr "" "[user:display-name],\r\n" @@ -366,13 +822,6 @@ msgstr "" "\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" @@ -383,6 +832,9 @@ msgstr "" "\r\n" "[user:edit-url]" +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" @@ -434,8 +886,8 @@ msgstr "" "\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 "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" @@ -452,8 +904,8 @@ msgstr "" "\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 "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "Account details for [user:display-name] at [site:name] (canceled)" msgid "" "[user:display-name],\n" @@ -470,128 +922,98 @@ msgstr "" "\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 "Please log in to access this form." +msgstr "Please login to access this form." -msgid "Asc" -msgstr "Asc" +msgid "Preview" +msgstr "Gennemse" -msgid "Desc" -msgstr "Desc" +msgid "Please log in to access this submission." +msgstr "Please login to access this submission." -msgid "Items per page" -msgstr "Items per page" +msgid "More" +msgstr "More" -msgid "- All -" -msgstr "- All -" +msgid "Please log in to access the uploaded file." +msgstr "Please login to access the uploaded file." -msgid "Offset" -msgstr "Offset" +msgid "Language" +msgstr "Language" -msgid "Block" -msgstr "Block" +msgid "Size" +msgstr "Size" -msgid "Page" -msgstr "Side" +msgid "Preview" +msgstr "Gennemse" -msgid "Custom block library" +msgid "Content blocks" msgstr "Custom block library" -msgid "Find and manage custom blocks." +msgid "Find and manage content blocks." msgstr "Find and manage custom blocks." -msgid "‹ Previous" -msgstr "‹ Previous" - -msgid "Next ›" -msgstr "Next ›" +msgid "Default" +msgstr "Master" msgid "Block description" msgstr "Block description" msgid "Block type" -msgstr "Block type" +msgstr "Bloktype" msgid "Updated" msgstr "Updated" msgid "Operations" -msgstr "Operations" - -msgid "Content" -msgstr "Content" - -msgid "Find and manage content." -msgstr "Find and manage content." +msgstr "Handlinger" -msgid "« First" -msgstr "« First" +msgid "Next ›" +msgstr "Next ›" -msgid "Last »" -msgstr "Last »" +msgid "‹ Previous" +msgstr "‹ Previous" -msgid "Title" -msgstr "Titel" +msgid "Items per page" +msgstr "Antal elementer" -msgid "Content type" -msgstr "Content type" +msgid "- All -" +msgstr "- Alle -" -msgid "Author" -msgstr "Author" +msgid "Offset" +msgstr "Forskydning" -msgid "Published" -msgstr "Published" +msgid "Apply" +msgstr "Udfør" -msgid "Unpublished" -msgstr "Unpublished" +msgid "Reset" +msgstr "Gendan" -msgid "Published status" -msgstr "Published status" +msgid "Sort by" +msgstr "Sortér efter" -msgid "Language" -msgstr "Language" +msgid "Asc" +msgstr "Stigende" -msgid "No content available." -msgstr "No content available." +msgid "Desc" +msgstr "Faldende" -msgid "Find and manage content" -msgstr "Find and manage content" +msgid "There are no content blocks available." +msgstr "There are no custom blocks available." -msgid "Recent content" -msgstr "Recent content" +msgid "Page" +msgstr "Side" -msgid "Recent content." -msgstr "Recent content." +msgid "Blocks" +msgstr "Custom block library" -msgid "More" -msgstr "More" +msgid "Create and edit content blocks." +msgstr "Create and edit block content." msgid "Files" msgstr "Files" @@ -599,11 +1021,14 @@ msgstr "Files" msgid "Find and manage files." msgstr "Find and manage files." +msgid "Default" +msgstr "Master" + msgid "Name" msgstr "Navn" msgid "Size" -msgstr "Size" +msgstr "Størrelse" msgid "Temporary" msgstr "Temporary" @@ -617,12 +1042,44 @@ msgstr "Changed date" msgid "Used in" msgstr "Used in" -msgid "Filename" -msgstr "Filename" +msgid "@count place" +msgid_plural "@count places" +msgstr[0] "1 place" +msgstr[1] "@count places" + +msgid "Next ›" +msgstr "Næste ›" + +msgid "‹ Previous" +msgstr "‹ Forrige" + +msgid "Items per page" +msgstr "Antal elementer" + +msgid "- All -" +msgstr "- Alle -" + +msgid "Offset" +msgstr "Forskydning" + +msgid "Reset" +msgstr "Gendan" + +msgid "Sort by" +msgstr "Sortér efter" + +msgid "Asc" +msgstr "Stigende" + +msgid "Desc" +msgstr "Faldende" msgid "No files available." msgstr "No files available." +msgid "Filename" +msgstr "Filename" + msgid "Files overview" msgstr "Files overview" @@ -636,1003 +1093,981 @@ msgid "Use count" msgstr "Use count" msgid "All" -msgstr "All" +msgstr "Alle" msgid "File usage information for {{ arguments.fid }}" msgstr "File usage information for {{ arguments.fid }}" -msgid "Frontpage" -msgstr "Frontpage" +msgid "Delete media" +msgstr "Delete media" -msgid "All content promoted to the front page." -msgstr "All content promoted to the front page." +msgid "Publish media" +msgstr "Publish media" -msgid "Welcome to [site:name]" -msgstr "Welcome to [site:name]" +msgid "Save media" +msgstr "Save media" -msgid "Glossary" -msgstr "Glossary" +msgid "Unpublish media" +msgstr "Unpublish media" -msgid "All content, by letter." -msgstr "All content, by letter." +msgid "Find and manage media." +msgstr "" -msgid "Last update" -msgstr "Last update" +msgid "Action" +msgstr "Handling" -msgid "Attachment" -msgstr "Attachment" +msgid "Media name" +msgstr "Media name" -msgid "Taxonomy term" -msgstr "Taxonomy term" +msgid "Unpublished" +msgstr "Unpublished" -msgid "Content belonging to a certain taxonomy term." -msgstr "Content belonging to a certain taxonomy term." +msgid "Published" +msgstr "Published" -msgid "People" -msgstr "People" +msgid "« First" +msgstr "« First" -msgid "Find and manage people interacting with your site." -msgstr "Find and manage people interacting with your site." +msgid "Last »" +msgstr "Last »" -msgid "Bulk update" -msgstr "Bulk update" +msgid "No media available." +msgstr "No content available." -msgid "Username" -msgstr "Username" +msgid "True" +msgstr "Sandt" -msgid "Active" -msgstr "Active" +msgid "Published status" +msgstr "Published status" -msgid "Blocked" -msgstr "Blocked" +msgid "Archive" +msgstr "Archive" -msgid "Roles" -msgstr "Roles" +msgid "All content, by month." +msgstr "All content, by month." -msgid "Member for" -msgstr "Member for" +msgid "Default" +msgstr "Master" -msgid "Last access" -msgstr "Last access" +msgid "Monthly archive" +msgstr "Monthly archive" + +msgid "Items per page" +msgstr "Antal elementer" + +msgid "- All -" +msgstr "- Alle -" -msgid "Name or email contains" -msgstr "Name or email contains" +msgid "Offset" +msgstr "Forskydning" -msgid "Role" -msgstr "Role" +msgid "Apply" +msgstr "Udfør" -msgid "Permission" -msgstr "Permission" +msgid "Reset" +msgstr "Gendan" -msgid "No people available." -msgstr "No people available." +msgid "Sort by" +msgstr "Sortér efter" -msgid "more" -msgstr "more" +msgid "Asc" +msgstr "Stigende" -msgid "List" -msgstr "List" +msgid "Desc" +msgstr "Faldende" -msgid "Manage user accounts, roles, and permissions." -msgstr "Manage user accounts, roles, and permissions." +msgid "Block" +msgstr "Block" -msgid "Watchdog" -msgstr "Watchdog" +msgid "Page" +msgstr "Side" -msgid "Recent log messages" -msgstr "Recent log messages" +msgid "Content" +msgstr "Indhold" -msgid "Icon" -msgstr "Icon" +msgid "Find and manage content." +msgstr "Find and manage content." -msgid "Severity" -msgstr "Severity" +msgid "Default" +msgstr "Master" -msgid "Date" -msgstr "Dato" +msgid "Title" +msgstr "Titel" -msgid "Message" -msgstr "Høringssvar" +msgid "Content type" +msgstr "Indholdstype" -msgid "User" -msgstr "User" +msgid "Author" +msgstr "Forfatter" -msgid "No log messages available." -msgstr "No log messages available." +msgid "Unpublished" +msgstr "Ikke udgivet" -msgid "Who's new" -msgstr "Who's new" +msgid "Published" +msgstr "Udgivet" -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 "Updated" +msgstr "Opdateret" -msgid "A list of new users" -msgstr "A list of new users" +msgid "Operations" +msgstr "Handlinger" -msgid "Who's online block" -msgstr "Who's online block" +msgid "Next ›" +msgstr "Næste ›" -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 "‹ Previous" +msgstr "‹ Forrige" -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 "« First" +msgstr "« Første" -msgid "Who's online" -msgstr "Who's online" +msgid "Last »" +msgstr "Sidste »" -msgid "There are currently @total users online." -msgstr "There are currently @total users online." +msgid "Reset" +msgstr "Gendan" -msgid "There are currently 0 users online." -msgstr "There are currently 0 users online." +msgid "Sort by" +msgstr "Sortér efter" -msgid "A list of users that are currently logged in." -msgstr "A list of users that are currently logged in." +msgid "Asc" +msgstr "Stigende" -msgid "Description" -msgstr "Beskrivelse" +msgid "Desc" +msgstr "Faldende" -msgid "Hero (1440×360)" -msgstr "Hero (1440w) - Crop" +msgid "No content available." +msgstr "No content available." -msgid "There are no custom blocks available." -msgstr "There are no custom blocks available." +msgid "Published status" +msgstr "Publiceringsstatus" -msgid "Email address" -msgstr "E-mailadresse" +msgid "Language" +msgstr "Sprog" -msgid "Default" -msgstr "Default" +msgid "Page" +msgstr "Side" -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 "Find and manage content" +msgstr "Find and manage content" -msgid "Confirm removal" -msgstr "Bekræft sletning" +msgid "Recent content" +msgstr "Recent content" -msgid "Allowed types: @extensions." -msgstr "" -"Tilladte typer: @extensions. Hold gerne filernes navne korte, gerne " -"under 20 bogstaver og uden symboler som +/- og lignende." +msgid "Recent content." +msgstr "Recent content." -msgid "Remove selected" -msgstr "Fjern det valgte" +msgid "Default" +msgstr "Master" -msgid "Nodes" -msgstr "Indhold" +msgid "Apply" +msgstr "Udfør" -msgid "Document" -msgstr "Document" +msgid "Reset" +msgstr "Gendan" -msgid "File upload" -msgstr "File upload" +msgid "Sort by" +msgstr "Sortér efter" -msgid "Image upload" -msgstr "Image upload" +msgid "Asc" +msgstr "Stigende" -msgid "Delete media" -msgstr "Delete media" +msgid "Desc" +msgstr "Faldende" -msgid "Publish media" -msgstr "Publish media" +msgid "No content available." +msgstr "Der er intet indhold at vise." -msgid "Save media" -msgstr "Save media" +msgid "More" +msgstr "Mere" -msgid "Unpublish media" -msgstr "Unpublish media" +msgid "Block" +msgstr "Blok" -msgid "Media library" -msgstr "Medie bibliotek" +msgid "Glossary" +msgstr "Glossary" -msgid "A taxonomy to structure your media library" -msgstr "En taksonomi der kan bruges til at strukturere mediebiblioteket" +msgid "All content, by letter." +msgstr "All content, by letter." -msgid "The tag will help you navigate in your media library" -msgstr "The tag will help you navigate in your media library" +msgid "Default" +msgstr "Master" -msgid "Search for documents" -msgstr "Search for documents" +msgid "Title" +msgstr "Titel" -msgid "Search for images" -msgstr "Search for images" +msgid "Author" +msgstr "Forfatter" -msgid "Upload new image" -msgstr "Upload new image" +msgid "Last update" +msgstr "Last update" -msgid "Upload new document" -msgstr "Upload new document" +msgid "Items per page" +msgstr "Antal elementer" -msgid "Media name" -msgstr "Media name" +msgid "- All -" +msgstr "- Alle -" -msgid "Initiative" -msgstr "Initiativ" +msgid "Offset" +msgstr "Forskydning" -msgid "Find and manage media." -msgstr "" +msgid "Apply" +msgstr "Udfør" -msgid "Project info" -msgstr "Initiativ info" +msgid "Reset" +msgstr "Gendan" -msgid "Add another item" -msgstr "Tilføj endnu et element" +msgid "Sort by" +msgstr "Sortér efter" -msgid "Materials" -msgstr "Materialer" +msgid "Asc" +msgstr "Stigende" -msgid "Node address" -msgstr "Adresse" +msgid "Desc" +msgstr "Faldende" -msgid "Node more info" -msgstr "Mere information" +msgid "Attachment" +msgstr "Attachment" -msgid "Hearing tickets" -msgstr "Høringssvar" +msgid "Page" +msgstr "Side" -msgid "Deskpro" -msgstr "Sagsbehandlersystem" +msgid "next ›" +msgstr "næste ›" -msgid "Attachments" -msgstr "Vedhæftninger" +msgid "‹ previous" +msgstr "‹ forrige" -msgid "Replies" -msgstr "Bidrag" +msgid "« first" +msgstr "« første" -msgid "Block title" -msgstr "Titel" +msgid "last »" +msgstr "sidste »" -msgid "Description field" -msgstr "Beskrivelse" +msgid "Taxonomy term" +msgstr "Taxonomy term" -msgid "State" -msgstr "State" +msgid "Content belonging to a certain taxonomy term." +msgstr "Content belonging to a certain taxonomy term." -msgid "Start date" -msgstr "Start dato" +msgid "Default" +msgstr "Master" -msgid "Reply" -msgstr "Bidrag" +msgid "Items per page" +msgstr "Antal elementer" -msgid "Project not secure" -msgstr "Initiativ ikke sikkert" +msgid "- All -" +msgstr "- Alle -" -msgid "Project revoked" -msgstr "Initiativ tilbagekaldt" +msgid "Offset" +msgstr "Forskydning" -msgid "Project not supported" -msgstr "Initiativ ikke understøttet" +msgid "Apply" +msgstr "Udfør" -msgid "Your email address" -msgstr "" -"Din e-mailadresse (Obs. din e-mail vil ikke blive vist på " -"deltag.aarhus.dk)" +msgid "Reset" +msgstr "Gendan" -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." +msgid "Sort by" +msgstr "Sortér efter" -msgctxt "Entity type group" -msgid "Content" -msgstr "Indhold" +msgid "Asc" +msgstr "Stigende" -msgid "Email addresses to notify when updates are available" -msgstr "E-mailadresser, der underrettes, når opdateringer er tilgængelige" +msgid "Desc" +msgstr "Faldende" -msgid "This must be an external URL such as %url." -msgstr "Skal være en ekstern URL som fx %url." +msgid "All" +msgstr "Alle" -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" +msgid "Page" +msgstr "Side" -msgid "Hearing tickets (@count)" -msgstr "Høringssvar (@count)" +msgid "People" +msgstr "People" -msgid "Reply date" -msgstr "Svarfrist" +msgid "Find and manage people interacting with your site." +msgstr "Find and manage people interacting with your site." -msgid "Show on map" -msgstr "Vis på kort" +msgid "Default" +msgstr "Master" -msgid "Your search yielded no result" -msgstr "Din søgning gav ingen resultater." +msgid "Bulk update" +msgstr "Bulk update" -msgid "Information page" -msgstr "Information" +msgid "Username" +msgstr "Username" -msgid "Answer @number by @name" -msgstr "Bidrag @number af @name" +msgid "Blocked" +msgstr "Blocked" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +msgid "Active" +msgstr "Active" -msgid "Show more hearings" -msgstr "Vis flere høringer" +msgid "Roles" +msgstr "Roles" -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." +msgid "Member for" +msgstr "Member for" -msgid "Note! Hearing deadline approaching." -msgstr "Note! Hørings tidsfristen nærmer sig." +msgid "Last access" +msgstr "Last access" -msgid "Content on this page" -msgstr "Indhold på denne side" +msgid "Operations" +msgstr "Handlinger" -msgid "Open project gallery" -msgstr "Åbn projektgalleri" +msgid "Next ›" +msgstr "Næste ›" -msgid "Finished" -msgstr "Afsluttet" +msgid "‹ Previous" +msgstr "‹ Forrige" -msgid "Hearing" -msgstr "Høring" +msgid "« First" +msgstr "« Første" -msgid "Hearing reply for" -msgstr "Høringssvar for" +msgid "Last »" +msgstr "Sidste »" -msgid "Hearing reply by @name" -msgstr "Høringssvar fra @name" +msgid "Items per page" +msgstr "Antal elementer" -msgid "Answer #@number by @name" -msgstr "Bidrag #@number af @name" +msgid "- All -" +msgstr "- Alle -" -msgid "Create hearing reply" -msgstr "Skriv høringssvar" +msgid "Offset" +msgstr "Forskydning" -msgid "Note! This hearing has not started yet" -msgstr "Note! Denne høring er ikke startet endnu." +msgid "Reset" +msgstr "Gendan" -msgid "Project start" -msgstr "Initiativ start" +msgid "Sort by" +msgstr "Sortér efter" -msgid "Project end" -msgstr "Initiativ slut" +msgid "Asc" +msgstr "Stigende" -msgid "Project finish" -msgstr "Initiativ afslutning" +msgid "Desc" +msgstr "Faldende" -msgid "Download ticket as pdf" -msgstr "Download høringssvar som pdf" +msgid "No people available." +msgstr "No people available." -msgid "Meeting" -msgstr "Møde" +msgid "Name or email contains" +msgstr "Name or email contains" -msgid "Debate" -msgstr "Debat" +msgid "Role" +msgstr "Role" -msgid "Expected end date" -msgstr "Forventet slutdato" +msgid "Permission" +msgstr "Permission" -msgid "Hearing id" -msgstr "Hørings-id" +msgid "more" +msgstr "more" -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 "Page" +msgstr "Side" -msgid "Hearing reply" -msgstr "Høringssvar" +msgid "List" +msgstr "List" -msgid "Sent d." -msgstr "Indsendt" +msgid "Manage user accounts, roles, and permissions." +msgstr "Manage user accounts, roles, and permissions." -msgid "Represents" -msgstr "Udtaler sig som" +msgid "Who's new" +msgstr "Who's new" -msgid "My address is secret" -msgstr "Jeg har adressebeskyttelse" +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 "Select entities" -msgstr "Vælg fil" +msgid "Default" +msgstr "Master" -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 "Apply" +msgstr "Udfør" -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 "Reset" +msgstr "Gendan" -msgid "Upcoming" -msgstr "På vej" +msgid "Sort by" +msgstr "Sortér efter" -msgid "Teaser/indledning" -msgstr "Teaser/indledning" +msgid "Asc" +msgstr "Stigende" -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 "Desc" +msgstr "Faldende" -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 "A list of new users" +msgstr "A list of new users" -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 "User" +msgstr "User" -msgid "Video embed" -msgstr "Video" +msgid "Who's online block" +msgstr "Who's online block" 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." +"Shows the user names of the most recently active users, and the total " +"number of active users." 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." +"Shows the user names of the most recently active users, and the total " +"number of active users." -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 "Default" +msgstr "Master" -msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" -msgstr "" -"Find evt. lokalplan-id'er på " -"https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgid "Who's online" +msgstr "Who's online" -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 "Apply" +msgstr "Udfør" -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 "Reset" +msgstr "Gendan" -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 "Sort by" +msgstr "Sortér efter" -msgid "Ticket reference" -msgstr "Sagsnummer" +msgid "Asc" +msgstr "Stigende" -msgid "media" -msgstr "medie" +msgid "Desc" +msgstr "Faldende" -msgid "Project gallery" -msgstr "Projektgalleri" +msgid "There are currently 0 users online." +msgstr "There are currently 0 users online." -msgid "Point" -msgstr "Vælg punkt på kort" +msgid "Last access" +msgstr "Seneste tilgang" -msgid "Available date" +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 "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 "There are currently @total users online." +msgstr "There are currently @total users online." -msgid "Available from" -msgstr "Available date" +msgid "A list of users that are currently logged in." +msgstr "A list of users that are currently logged in." -msgid "Spots" -msgstr "Pladser" +msgid "Created" +msgstr "Oprettet" -msgid "Beskrivelse af borgemødet." -msgstr "" -"Kort beskrivelse af begivenheden. Udvidet beskrivelse indsættes under " -"'indhold' længere nede på siden." +msgid "Action" +msgstr "Handling" -msgid "Vælg billeder der skal vises i teaservisningen." -msgstr "Vælg billede der skal vises i oversigten" +msgid "Update URL alias" +msgstr "Update URL alias" -msgid "Start time" -msgstr "Starttidspunkt" +msgid "Update URL alias" +msgstr "Opdatér alternativ URL" -msgid "End time" -msgstr "Sluttidspunkt" +msgid "Revision" +msgstr "Version" -msgid "Number of spots" -msgstr "Antal pladser" +msgctxt "PHP date format" +msgid "l, F j, Y - H:i" +msgstr "l, j. F Y - H:i" -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." +msgctxt "PHP date format" +msgid "D, m/d/Y - H:i" +msgstr "D, d/m/Y - H:i" -msgid "Select template event" -msgstr "Vælg skabelon til dit møde" +msgctxt "PHP date format" +msgid "m/d/Y - H:i" +msgstr "d/m/Y - H:i" -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 "User login" +msgstr "User login" -msgid "Synchronize event in pretix" -msgstr "Synkroniser event i Pretix (Skal altid være slået til) " +msgid "Search index" +msgstr "Search index" -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 "Search result highlighting input" +msgstr "Search result highlighting input" -msgid "Last date for signup" -msgstr "Tilmeldingsfrist" +msgid "Large (480×480)" +msgstr "Large (480×480)" + +msgid "Delete content" +msgstr "Delete content" msgid "" -"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun i " -"backend som eventuel hjælp til redaktørerne." +"[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 "" -"En beskrivelse tilknyttet til tidslinjen. Beskrivelsen vises kun til " -"redaktører." +"[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 "" -"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." +"[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 "" -"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." +"[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 "Public meeting" -msgstr "Begivenhed" +msgid "Custom block library" +msgstr "Custom block library" -msgid "You can select one @entity_type." -msgstr "Du kan kun vælge ét @entity_type." +msgid "Find and manage custom blocks." +msgstr "Find and manage custom blocks." -msgid "Meeting has already been held" -msgstr "Mødet er afholdt" +msgid "All content promoted to the front page." +msgstr "All content promoted to the front page." -msgid "Sign up for public meeting" -msgstr "Tilmeld dig her" +msgid "Welcome to [site:name]" +msgstr "Welcome to [site:name]" -msgid "Sign up" -msgstr "Tilmeld dig her" +msgid "Watchdog" +msgstr "Watchdog" -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 "Recent log messages" +msgstr "Recent log messages" -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 "Icon" +msgstr "Icon" -msgid "Note! This public meeting has been held." -msgstr "Denne begivenhed er afholdt" +msgid "Severity" +msgstr "Severity" -msgid "Show pretix orders" -msgstr "Se deltagerliste" +msgid "No log messages available." +msgstr "No log messages available." -msgid "@ticket_ref by @person_name" -msgstr "@ticket_ref af @person_name" +msgid "There are no custom blocks available." +msgstr "There are no custom blocks available." -msgid "Your address will not be shown on the website." +msgid "Briefly describe the changes you have made." msgstr "" -"Din adresse vil ikke blive vist på hjemmesiden - se evt. betingelser " -"nederst på siden" +"Giv en kort beskrivelse af dine ændringer, hvis du har ændret i " +"indholdet efter publicering." -msgid "Registration deadline passed" -msgstr "Deadline for tilmelding er overskredet" +msgid "Confirm removal" +msgstr "Bekræft sletning" -msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." +msgid "Allowed types: @extensions." 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." +"Tilladte typer: @extensions. Hold gerne filernes navne korte, gerne " +"under 20 bogstaver og uden symboler som +/- og lignende." -msgid "Opens in a new tab" -msgstr "Åbner i en ny fane" +msgid "Remove selected" +msgstr "Fjern det valgte" -msgid "Place" -msgstr "Lokation" +msgid "Nodes" +msgstr "Indhold" -msgid "Last signup date" -msgstr "Tilmeldingsfrist" +msgid "Document" +msgstr "Document" -msgid "Expected finish" -msgstr "Forventet afsluttet" +msgid "File upload" +msgstr "File upload" -msgid "Cancelled" -msgstr "Aflyst" +msgid "Image upload" +msgstr "Image upload" -msgid "Check this box if the meeting is cancelled" -msgstr "Sæt kryds her hvis mødet er aflyst" +msgid "Media library" +msgstr "Medie bibliotek" -msgid "Cancelled text" -msgstr "Tekst omhandlende aflysning" +msgid "A taxonomy to structure your media library" +msgstr "En taksonomi der kan bruges til at strukturere mediebiblioteket" -msgid "Cancelled date" -msgstr "Aflyst dato" +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 "Cancellation" -msgstr "Aflysning" +msgid "Add another item" +msgstr "Tilføj endnu et element" -msgid "Note! This public meeting has been cancelled." -msgstr "Note! Denne begivenhed er aflyst" +msgid "Attachments" +msgstr "Vedhæftninger" -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 "Replies" +msgstr "Bidrag" -msgid "Postal code and city" -msgstr "Postnummer og by" +msgid "Block title" +msgstr "Titel" -msgid "Street and number" -msgstr "Vejnavn og nummer" +msgid "Description field" +msgstr "Beskrivelse" -msgid "Name (@organization)" -msgstr "Navn (@organization)" +msgid "Reply" +msgstr "Bidrag" -msgid "Email address (@organization)" -msgstr "" -"Email adresse (@organization) Obs. din e-mail vil ikke være synlig " -"på deltag.aarhus.dk" +msgid "Project not secure" +msgstr "Initiativ ikke sikkert" -msgid "Your postal code and city" -msgstr "" -"Dit postnummer og by (Obs. din adresse vil ikke blive vist på " -"deltag.aarhus.dk)" +msgid "Project revoked" +msgstr "Initiativ tilbagekaldt" -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 "Project not supported" +msgstr "Initiativ ikke understøttet" -msgid "Your street and number" +msgid "Your email address" msgstr "" -"Dit vejnavn og nummer (Obs. din adresse vil ikke blive vist på " +"Din e-mailadresse (Obs. din e-mail vil ikke blive vist på " "deltag.aarhus.dk)" -msgid "Street and number (@organization)" +msgid "" +"Email address for a given user. This field is normally not shown to " +"users, so be cautious when using it." msgstr "" -"Vejnavn og nummer (@organization) \r\n" -"Obs. din adresse vil ikke være " -"synlig på deltag.aarhus.dk" +"E-mailadresse for en given bruger. Dette felt vises normalt ikke til " +"brugere, så brug det med omtanke." -msgid "Select none" -msgstr "Vælg ingen" +msgctxt "Entity type group" +msgid "Content" +msgstr "Indhold" -msgid "Add hearing reply" -msgstr "Tilføj høringssvar" +msgid "Email addresses to notify when updates are available" +msgstr "E-mailadresser, der underrettes, når opdateringer er tilgængelige" -msgid "Dagtilbud og skole" -msgstr "Dagtilbud, skole og fritids- og ungdomsskoleområdet." +msgid "This must be an external URL such as %url." +msgstr "Skal være en ekstern URL som fx %url." -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 "Hearing tickets (@count)" +msgstr "Høringssvar (@count)" -msgid "Borgermødet" -msgstr "Begivenheden" +msgid "Answer @number by @name" +msgstr "Bidrag @number af @name" -msgid "No media available." -msgstr "No content available." +msgid "Note! Hearing deadline has passed." +msgstr "Note! Hørings tidsfristen er forbi." -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 "Hearing reply by @name" +msgstr "Høringssvar fra @name" -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 "Answer #@number by @name" +msgstr "Bidrag #@number af @name" -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 "Project end" +msgstr "Initiativ slut" -msgid "Show hearing tickets" -msgstr "Vis indkomne svar" +msgid "Project finish" +msgstr "Initiativ afslutning" -msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" +msgid "Meeting" +msgstr "Møde" -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" +msgid "Debate" +msgstr "Debat" -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" +msgid "Hearing id" +msgstr "Hørings-id" -msgid "Phone" -msgstr "Telefonnummer" +msgid "Select entities" +msgstr "Vælg fil" -msgid "Display email" -msgstr "Ja, vis min e-mail på mit borgerforslag" +msgid "Teaser/indledning" +msgstr "Teaser/indledning" -msgid "@remaining characters left." -msgstr "@remaining tegn tilbage" +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 "Proposal" -msgstr "Forslag" +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 "Remarks" -msgstr "Begrundelse" +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 "Create proposal" -msgstr "Opret borgerforslag" +msgid "Video embed" +msgstr "Video" -msgid "Create new proposal" -msgstr "Opret borgerforslag" +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 "Share the proposal" -msgstr "Del forslaget" +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 "Create your proposal" -msgstr "Opret borgerforslag" +msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgstr "" +"Find evt. lokalplan-id'er på " +"https://visplaner.plandata.dk/visplaner/lokalplaner.html" -msgid "Sign out" -msgstr "Log ud" +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 "You're currently authenticated as %name" -msgstr "Du er logget ind som %name" +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 "Phone number" -msgstr "Telefonnummer" +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 "Approve proposal" -msgstr "Godkend borgerforslag" +msgid "media" +msgstr "medie" -msgid "Edit proposal" -msgstr "Ret borgerforslag" +msgid "Project gallery" +msgstr "Projektgalleri" -msgid "Cancel proposal" -msgstr "Fortryd borgerforslag" +msgid "You can select up to @maximum @entity_type (@remaining left)." +msgstr "Du kan vælge op til @maximum @entity_type (@remaining tilbage)." -msgid "Your submission has been cancelled." -msgstr "Dit borgerforslag er blevet slettet" +msgid "Beskrivelse af borgemødet." +msgstr "" +"Kort beskrivelse af begivenheden. Udvidet beskrivelse indsættes under " +"'indhold' længere nede på siden." -msgid "Number of supporters" -msgstr "Antal støtter" +msgid "Vælg billeder der skal vises i teaservisningen." +msgstr "Vælg billede der skal vises i oversigten" -msgid "Support the proposal" -msgstr "Støt borgerforslaget" +msgid "Start time" +msgstr "Starttidspunkt" -msgid "You're supporting @label on behalf of a citizen" -msgstr "Du støtter nu @label på vegne af en borger " +msgid "End time" +msgstr "Sluttidspunkt" -msgid "Support proposal" -msgstr "Støt forslaget" +msgid "Number of spots" +msgstr "Antal pladser" -msgid "Thank you for your support." -msgstr "Tak for din støtte" +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 "Could not find a proposal to approve." -msgstr "Ikke muligt at finde et forslag at godkende" +msgid "Select template event" +msgstr "Vælg skabelon til dit møde" -msgid "Update proposal" -msgstr "Opdater borgerforslag" +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 "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 "Synchronize event in pretix" +msgstr "Synkroniser event i Pretix (Skal altid være slået til) " msgid "" -"You already supported this proposal on @support_date. You can only " -"support a proposal once." +"If set, the pretix event will be updated when changes are made to the " +"dates on this node" msgstr "" -"Du har allerede støttet dette borgerforslag d. @support_date. Du kan " -"kun støtte et forslag en gang. " +"Når denne er valgt vil ændringer her på siden automatisk slå " +"igennem i Pretix (Tilmeldingssystemet)" -msgid "Reset" -msgstr "Nulstil" +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 "Preview" -msgstr "Gennemse" +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 "Reset" -msgstr "Nulstil" +msgid "You can select one @entity_type." +msgstr "Du kan kun vælge ét @entity_type." -msgid "Created" -msgstr "Oprettet" +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 "Action" -msgstr "Handling" +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 "Allow email" -msgstr " Ja, I må gerne kontakte mig." +msgid "Show pretix orders" +msgstr "Se deltagerliste" -msgid "Personal data storage consent" +msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." msgstr "" -"Jeg har læst betingelserne og giver mit samtykke Læs mere " -"her" +"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 "" -"Number of supporters: @number_of_supporters of " -"@required_number_of_supporters" -msgstr "" -"Antal støtter: @number_of_supporters af " -"@required_number_of_supporters" +msgid "Check this box if the meeting is cancelled" +msgstr "Sæt kryds her hvis mødet er aflyst" -msgid "The proposal list is empty" -msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" +msgid "Cancelled text" +msgstr "Tekst omhandlende aflysning" -msgid "(Not shown on proposal)" -msgstr "Ikke synligt for andre" +msgid "Cancelled date" +msgstr "Aflyst dato" -msgid "Content blocks" -msgstr "Custom block library" +msgid "Cancellation" +msgstr "Aflysning" -msgid "Find and manage content blocks." -msgstr "Find and manage custom blocks." +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 "There are no content blocks available." -msgstr "There are no custom blocks available." +msgid "Name (@organization)" +msgstr "Navn (@organization)" -msgid "Blocks" -msgstr "Custom block library" +msgid "Email address (@organization)" +msgstr "" +"Email adresse (@organization) Obs. din e-mail vil ikke være synlig " +"på deltag.aarhus.dk" -msgid "Create and edit content blocks." -msgstr "Create and edit block content." +msgid "Your postal code and city" +msgstr "" +"Dit postnummer og by (Obs. din adresse vil ikke blive vist på " +"deltag.aarhus.dk)" -msgid "The hearing list is empty" -msgstr "Ingen høringer fundet" +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 "Show all hearings" -msgstr "Vis alle høringer" +msgid "Your street and number" +msgstr "" +"Dit vejnavn og nummer (Obs. din adresse vil ikke blive vist på " +"deltag.aarhus.dk)" -msgid "The meeting list is empty" -msgstr "Ingen begivenheder fundet" +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 "Show all meetings" -msgstr "Vis alle begivenheder" +msgid "Select none" +msgstr "Vælg ingen" -msgid "Your name cannot contain numbers." -msgstr "Dit navn må ikke indeholde tal." +msgid "Dagtilbud og skole" +msgstr "Dagtilbud, skole og fritids- og ungdomsskoleområdet." -msgid "You're currently authenticated as @name" -msgstr "Du er logget ind som @name" +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 "The hearing replies were deleted on @date" -msgstr "Høringssvarene er blevet fjernet d. @date" +msgid "Borgermødet" +msgstr "Begivenheden" + +msgid "You're currently authenticated as %name" +msgstr "Du er logget ind som %name" 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 @" +"Number of supporters: @number_of_supporters of " +"@required_number_of_supporters" 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

    " +"Antal støtter: @number_of_supporters af " +"@required_number_of_supporters" msgid "" "The time limit for how long we are allowed to keep the replies has " -"been reached so we where obligated to delete them." +"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" @@ -1656,34 +2091,4 @@ msgstr "" "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 index 34a50421c..723713f7c 100644 --- a/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po +++ b/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml b/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml index a2ae4660d..00f0a5f4e 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml +++ b/web/modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml @@ -6,7 +6,3 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - twig_tweak:twig_tweak - drupal:symfony_mailer - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_citizen_proposal -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 6e796dfa8..f5a93559f 100644 --- 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 @@ -27,8 +27,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml index fecbb954b..d5f152c28 100644 --- a/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml +++ b/web/modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml @@ -7,7 +7,3 @@ dependencies: - advancedqueue:advancedqueue - entity_events:entity_events - hoeringsportal_citizen_proposal:hoeringsportal_citizen_proposal - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_citizen_proposal_archiving -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 60d6eb11d..d48321146 100644 --- 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 @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml b/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml index 26d5a1994..5734c37c1 100755 --- a/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml +++ b/web/modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml @@ -5,7 +5,3 @@ core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal dependencies: - drupal:itk_admin - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_config_settings -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index e60d8e504..a69b36ba8 100644 --- 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 @@ -16,8 +16,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" @@ -77,15 +77,15 @@ msgstr "" msgid "The number of hours before the deadline of a hearing the warning should appear." msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php:48 modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:222 +#: 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:46 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:47 msgid "Footer" msgstr "Footer" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:54 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:55 msgid "Footer bottom menu" msgstr "" @@ -117,91 +117,139 @@ msgstr "" 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:110 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:112 msgid "Initiative overview page" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:114 +#: 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:120 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:122 msgid "Hearings overview page" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:124 +#: 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:129 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:131 msgid "External references" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:133 +#: 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:139 +#: 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:142 +#: 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/src/Form/ItkGeneralSettingsForm.php:147 +#: 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:150 +#: 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:155 +#: 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:158 +#: 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:162 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:164 +msgid "Default images" +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:176 +msgid "Hearing teaser default image" +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:189 +msgid "Public meeting teaser default image" +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:202 +msgid "Citizen proposal teaser default image" +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:215 +msgid "Project teaser default image" +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:228 +msgid "Static page teaser default image" +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:240 msgid "Pages" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:171 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:249 msgid "Front page" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:179 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:257 msgid "User's manual url" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:186 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:264 msgid "Newsletter node page" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:190 +#: 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/ItkGeneralSettingsForm.php:195 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:273 msgid "Newsletter iframe source" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:201 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:279 msgid "Newsletter iframe height" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:203 +#: 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:207 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:285 msgid "Messages" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:215 +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:293 msgid "Login message" msgstr "" diff --git a/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml b/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml index e91cb1e34..488bb5716 100755 --- a/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml +++ b/web/modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml @@ -3,7 +3,3 @@ type: module description: 'Control access to certain content' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_content_access -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 900215122..efaec594e 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml b/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml index b4de7acc8..7b573e71e 100755 --- a/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml +++ b/web/modules/custom/hoeringsportal_content_blocks/hoeringsportal_content_blocks.info.yml @@ -3,7 +3,3 @@ type: module description: 'Blocks used for displaying content on nodes' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_content_blocks -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 45b1829a0..87dd4c3d9 100644 --- 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 @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:00+0100\n" -"PO-Revision-Date: 2025-03-28 11:00+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml b/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml index bff4de66f..f42add977 100644 --- a/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml +++ b/web/modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml @@ -7,7 +7,3 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - field - hoeringsportal_deskpro - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_data -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po diff --git a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po index 4d9aa64d4..472c3f33d 100644 --- a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po +++ b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po @@ -21,8 +21,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" @@ -78,7 +78,7 @@ msgstr "" msgid "No hearings found" msgstr "" -#: modules/custom/hoeringsportal_data/src/Helper/HearingHelper.php:115 +#: modules/custom/hoeringsportal_data/src/Helper/HearingHelper.php:117 msgid "Error finding hearing whose replies must be deleted: @message" msgstr "" diff --git a/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml b/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml index d72541f11..94c66a11e 100644 --- a/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml +++ b/web/modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml @@ -6,7 +6,3 @@ core_version_requirement: ^8.8 || ^9 || ^10 dependencies: - itk_admin - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_deskpro -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po diff --git a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po index 50c3b5368..9da1de5db 100644 --- a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po +++ b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po @@ -28,8 +28,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml b/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml index 89065bec9..5f6f9884e 100755 --- a/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml +++ b/web/modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml @@ -3,7 +3,3 @@ type: module description: 'Customization of backend forms' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_forms -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po diff --git a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po index 6eaeffbbc..6ba762cc3 100644 --- a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po +++ b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml b/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml index 9d12b6a64..0b5542623 100644 --- a/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml +++ b/web/modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml @@ -3,7 +3,3 @@ type: module description: 'Stuff related to hearing content type' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_hearing -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po diff --git a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po index ff5c36b01..dda092952 100644 --- a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po +++ b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml b/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml index 1df005639..90f30891d 100644 --- a/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml +++ b/web/modules/custom/hoeringsportal_openid_connect/hoeringsportal_openid_connect.info.yml @@ -5,7 +5,3 @@ package: ITK core_version_requirement: ^9 || ^10 dependencies: - drupal:drupal_psr6_cache - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_openid_connect -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 100505d58..51e89db70 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml b/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml index 512577781..3da31da6e 100644 --- a/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml +++ b/web/modules/custom/hoeringsportal_project_timeline/hoeringsportal_project_timeline.info.yml @@ -3,7 +3,3 @@ type: module description: 'Provides timeline block for projects' core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_project_timeline -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index df0a1c2c6..96b2d99ed 100644 --- 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 @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml b/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml index 06f881cbc..a0f237e2c 100755 --- a/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml +++ b/web/modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml @@ -3,7 +3,3 @@ type: module description: 'Stuff related to public meeting content type' package: Hoeringsportal core_version_requirement: ^8.8 || ^9 || ^10 - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_public_meeting -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po 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 index 39223c5a0..9cb057ced 100644 --- 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 @@ -12,8 +12,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" diff --git a/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml b/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml index 920489d87..891531095 100644 --- a/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml +++ b/web/modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml @@ -3,7 +3,3 @@ type: module description: 'Provides quicklinks block' core_version_requirement: ^8.8 || ^9 || ^10 package: Hoeringsportal - -# https://git.drupalcode.org/project/drupal/-/blob/11.x/core/modules/locale/locale.api.php -'interface translation project': hoeringsportal_quicklinks -'interface translation server pattern': modules/custom/%project/translations/%project.%language.po diff --git a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po index b95db16e6..347aefdf1 100644 --- a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po +++ b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po @@ -10,8 +10,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" 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 index e13ca657e..4d6de053c 100644 --- 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 @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:01+0100\n" -"PO-Revision-Date: 2025-03-28 11:01+0100\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" "MIME-Version: 1.0\n" 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 index 91fb76f6c..598b7c8c7 100644 --- a/web/modules/custom/itk_admin/translations/itk_admin.da.po +++ b/web/modules/custom/itk_admin/translations/itk_admin.da.po @@ -14,8 +14,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:02+0100\n" -"PO-Revision-Date: 2025-03-28 11:02+0100\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" "MIME-Version: 1.0\n" 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 index 2f05d81de..4363fffa8 100644 --- 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 @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:02+0100\n" -"PO-Revision-Date: 2025-03-28 11:02+0100\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" "MIME-Version: 1.0\n" diff --git a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po index ea22e8ff8..daec4ae5d 100644 --- a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po +++ b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po @@ -10,11 +10,12 @@ # 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--list-display.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--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 @@ -49,8 +50,8 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" -"POT-Creation-Date: 2025-03-28 11:02+0100\n" -"PO-Revision-Date: 2025-03-28 11:02+0100\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" "MIME-Version: 1.0\n" @@ -200,14 +201,46 @@ msgstr "" msgid "Phone" msgstr "Telefonnummer" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:9 +msgid "Hearing" +msgstr "Høring" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:12 +msgid "Project" +msgstr "Project" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:15 +msgid "Public meeting" +msgstr "Begivenhed" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:18 +msgid "Article" +msgstr "" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:21 +msgid "Citizen proposal" +msgstr "" + #: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 msgid "Progress" msgstr "" -#: themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig:82 +#: themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig:11 msgid "End date" msgstr "" +#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:33 +msgid "replies" +msgstr "" + +#: 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 "" + +#: 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/content/node--list-display.html.twig:72 msgid "Initiative" msgstr "Initiativ" @@ -216,34 +249,6 @@ msgstr "Initiativ" msgid "Information page" msgstr "Information" -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:89 -msgid "Public meeting" -msgstr "Begivenhed" - -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:93;97 themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:104;108 -msgid "Finished" -msgstr "Afsluttet" - -#: themes/custom/hoeringsportal/templates/content/node--public-meeting--teaser.html.twig:105 -msgid "Cancelled" -msgstr "Aflyst" - -#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:73 -msgid "Project" -msgstr "Project" - -#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:97 -msgid "Start date" -msgstr "Start dato" - -#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:101 -msgid "Upcoming" -msgstr "På vej" - -#: themes/custom/hoeringsportal/templates/content/node--teaser.html.twig:112 -msgid "Reply date" -msgstr "Svarfrist" - #: 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." From e635aa27fc331c5b815c8bc5c69af1aab5b92a97 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 23 Apr 2025 15:13:05 +0200 Subject: [PATCH 11/14] Updated (bootstrapped) translations --- config/translations/config.da.po | 310 +++--- translations/contrib-translations.da.po | 1207 +++-------------------- 2 files changed, 273 insertions(+), 1244 deletions(-) diff --git a/config/translations/config.da.po b/config/translations/config.da.po index 7c86dcf99..d1b6de404 100644 --- a/config/translations/config.da.po +++ b/config/translations/config.da.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "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" +"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" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgctxt "advancedqueue.advancedqueue_queue.default:label" -msgid "Default" +msgid "Master" msgstr "" msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" @@ -109,11 +109,11 @@ msgid "Site branding" msgstr "" msgctxt "block.block.stark_local_actions:settings:label" -msgid "Primary admin actions" +msgid "Primære adminsitratorhandlinger" msgstr "" msgctxt "block.block.stark_local_tasks:settings:label" -msgid "Tabs" +msgid "Faner" msgstr "" msgctxt "block.block.stark_login:settings:label" @@ -121,15 +121,15 @@ msgid "User login" msgstr "" msgctxt "block.block.stark_messages:settings:label" -msgid "Status messages" +msgid "Statusmeddelelser" msgstr "" msgctxt "block.block.stark_page_title:settings:label" -msgid "Page title" +msgid "Sidetitel" msgstr "" msgctxt "block.block.stark_tools:settings:label" -msgid "Tools" +msgid "Værktøjer" msgstr "" msgctxt "block.block.tabs:settings:label" @@ -275,7 +275,7 @@ msgid "Afbrudt" msgstr "" msgctxt "core.date_format.fallback:label" -msgid "Fallback date format" +msgid "Reservedatoformat" msgstr "" msgctxt "core.date_format.hoeringsportal_date:label" @@ -355,7 +355,7 @@ msgid "HTML Yearless date" msgstr "" msgctxt "core.date_format.long:label" -msgid "Default long date" +msgid "Standard lang dato" msgstr "" msgctxt "core.date_format.long:pattern" @@ -363,7 +363,7 @@ msgid "l, j. F Y - H:i" msgstr "" msgctxt "core.date_format.medium:label" -msgid "Default medium date" +msgid "Standard mellem dato" msgstr "" msgctxt "core.date_format.medium:pattern" @@ -371,7 +371,7 @@ msgid "D, d/m/Y - H:i" msgstr "" msgctxt "core.date_format.short:label" -msgid "Default short date" +msgid "Standard kort dato" msgstr "" msgctxt "core.date_format.short:pattern" @@ -611,7 +611,7 @@ msgid "Image" msgstr "" msgctxt "core.entity_form_mode.user.register:label" -msgid "Register" +msgid "Opret konto" msgstr "" msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" @@ -631,7 +631,7 @@ msgid "Token" msgstr "" msgctxt "core.entity_view_mode.block_content.full:label" -msgid "Full" +msgid "Fuld" msgstr "" msgctxt "core.entity_view_mode.entity_subqueue.token:label" @@ -647,7 +647,7 @@ msgid "Content display" msgstr "" msgctxt "core.entity_view_mode.media.full:label" -msgid "Full content" +msgid "Fuldt indhold" msgstr "" msgctxt "core.entity_view_mode.media.material_display:label" @@ -699,7 +699,7 @@ msgid "Search result" msgstr "" msgctxt "core.entity_view_mode.node.teaser:label" -msgid "Teaser" +msgid "Smagsprøve" msgstr "" msgctxt "core.entity_view_mode.paragraph.preview:label" @@ -707,15 +707,15 @@ msgid "Gennemse" msgstr "" msgctxt "core.entity_view_mode.taxonomy_term.full:label" -msgid "Taxonomy term page" +msgid "Termside" msgstr "" msgctxt "core.entity_view_mode.user.compact:label" -msgid "Compact" +msgid "Kompakt" msgstr "" msgctxt "core.entity_view_mode.user.full:label" -msgid "User account" +msgid "Brugerkonto" msgstr "" msgctxt "core.entity_view_mode.user.token:label" @@ -1959,7 +1959,7 @@ msgid "Hearing description" msgstr "" msgctxt "filter.format.plain_text:name" -msgid "Plain text" +msgid "Ren tekst" msgstr "" msgctxt "image.style.carousel_300x168:label" @@ -1975,7 +1975,7 @@ msgid "Hero (1440w) - Crop" msgstr "" msgctxt "image.style.medium:label" -msgid "Medium (330×330)" +msgid "Mellem (220×220)" msgstr "" msgctxt "image.style.responsive_large_default:label" @@ -2039,11 +2039,11 @@ msgid "Danish" msgstr "" msgctxt "language.entity.und:label" -msgid "Not specified" +msgid "Ikke angivet" msgstr "" msgctxt "language.entity.zxx:label" -msgid "Not applicable" +msgid "ikke relevant" msgstr "" msgctxt "media.type.document:label" @@ -2629,35 +2629,35 @@ msgid "Unpublish media" msgstr "" msgctxt "system.action.node_make_sticky_action:label" -msgid "Make content sticky" +msgid "Gør indhold klæbrigt" msgstr "" msgctxt "system.action.node_make_unsticky_action:label" -msgid "Make content unsticky" +msgid "Fjern klæbrighed" msgstr "" msgctxt "system.action.node_promote_action:label" -msgid "Promote content to front page" +msgid "Vis indhold på forsiden" msgstr "" msgctxt "system.action.node_publish_action:label" -msgid "Publish content" +msgid "Udgiv indhold" msgstr "" msgctxt "system.action.node_save_action:label" -msgid "Save content" +msgid "Gem indhold" msgstr "" msgctxt "system.action.node_unpromote_action:label" -msgid "Remove content from front page" +msgid "Fjern indhold fra forsiden" msgstr "" msgctxt "system.action.node_unpublish_action:label" -msgid "Unpublish content" +msgid "Afpubliceer indhold" msgstr "" msgctxt "system.action.pathauto_update_alias_node:label" -msgid "Update URL alias" +msgid "Opdatér alternativ URL" msgstr "" msgctxt "system.action.pathauto_update_alias_user:label" @@ -2689,11 +2689,11 @@ msgid "Add the public meeting editor role to the selected user(s)" msgstr "" msgctxt "system.action.user_block_user_action:label" -msgid "Block the selected user(s)" +msgid "Blokér de(n) valgte bruger(e)" msgstr "" msgctxt "system.action.user_cancel_user_action:label" -msgid "Cancel the selected user account(s)" +msgid "Opsig de valgte brugerkonti" msgstr "" msgctxt "system.action.user_remove_role_action.administrator:label" @@ -2717,7 +2717,7 @@ msgid "Remove the public meeting editor role from the selected user(s)" msgstr "" msgctxt "system.action.user_unblock_user_action:label" -msgid "Unblock the selected user(s)" +msgid "Fjern blokering af de(n) valgte bruger(e)" msgstr "" msgctxt "system.action.webform_archive_action:label" @@ -2762,16 +2762,16 @@ msgstr "" msgctxt "system.maintenance:message" msgid "" -"@site is currently under maintenance. We should be back shortly. Thank " -"you for your patience." +"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " +"tålmodighed." msgstr "" msgctxt "system.menu.account:label" -msgid "User account menu" +msgid "Brugerkontomenu" msgstr "" msgctxt "system.menu.account:description" -msgid "Links related to the active user account" +msgid "Links relateret til den aktive brugerkonto" msgstr "" msgctxt "system.menu.admin:label" @@ -2779,7 +2779,7 @@ msgid "Administration" msgstr "" msgctxt "system.menu.admin:description" -msgid "Administrative task links" +msgid "Links til administrative opgaver" msgstr "" msgctxt "system.menu.footer:label" @@ -2787,15 +2787,15 @@ msgid "Sidefod" msgstr "" msgctxt "system.menu.footer:description" -msgid "Site information links" +msgid "Links til informationen om sitet" msgstr "" msgctxt "system.menu.main:label" -msgid "Main navigation" +msgid "Primær navigation" msgstr "" msgctxt "system.menu.main:description" -msgid "Site section links" +msgid "Links til sitets sektioner" msgstr "" msgctxt "system.menu.secondary-navigation:label" @@ -2811,7 +2811,7 @@ msgid "Værktøjer" msgstr "" msgctxt "system.menu.tools:description" -msgid "User tool links, often added by modules" +msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" msgstr "" msgctxt "system.site:name" @@ -2883,7 +2883,9 @@ msgid "Type" msgstr "" msgctxt "user.mail:cancel_confirm:subject" -msgid "Account cancellation request for [user:display-name] at [site:name]" +msgid "" +"Anmodning om opsigelse af konto for [user:display-name] på " +"[site:name]" msgstr "" msgctxt "user.mail:cancel_confirm:body" @@ -2910,7 +2912,7 @@ msgid "" msgstr "" msgctxt "user.mail:password_reset:subject" -msgid "Replacement login information for [user:display-name] at [site:name]" +msgid "Ny login-information for [user:display-name] på [site:name]" msgstr "" msgctxt "user.mail:password_reset:body" @@ -2935,7 +2937,7 @@ msgid "" msgstr "" msgctxt "user.mail:register_admin_created:subject" -msgid "An administrator created an account for you at [site:name]" +msgid "En administrator har oprettet en konto til dig på [site:name]" msgstr "" msgctxt "user.mail:register_admin_created:body" @@ -2965,7 +2967,7 @@ msgid "" msgstr "" msgctxt "user.mail:register_no_approval_required:subject" -msgid "Account details for [user:display-name] at [site:name]" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgstr "" msgctxt "user.mail:register_no_approval_required:body" @@ -2996,8 +2998,8 @@ msgstr "" msgctxt "user.mail:register_pending_approval:subject" msgid "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" msgstr "" msgctxt "user.mail:register_pending_approval:body" @@ -3016,8 +3018,8 @@ msgstr "" msgctxt "user.mail:register_pending_approval_admin:subject" msgid "" -"Account details for [user:display-name] at [site:name] (pending admin " -"approval)" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" msgstr "" msgctxt "user.mail:register_pending_approval_admin:body" @@ -3029,7 +3031,7 @@ msgid "" msgstr "" msgctxt "user.mail:status_activated:subject" -msgid "Account details for [user:display-name] at [site:name] (approved)" +msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" msgstr "" msgctxt "user.mail:status_activated:body" @@ -3061,7 +3063,7 @@ msgid "" msgstr "" msgctxt "user.mail:status_blocked:subject" -msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgstr "" msgctxt "user.mail:status_blocked:body" @@ -3075,7 +3077,7 @@ msgid "" msgstr "" msgctxt "user.mail:status_canceled:subject" -msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" msgstr "" msgctxt "user.mail:status_canceled:body" @@ -3117,7 +3119,7 @@ msgid "Begivenhedsredaktør" msgstr "" msgctxt "user.settings:anonymous" -msgid "Anonymous" +msgid "Anonym" msgstr "" msgctxt "views.view.advancedqueue_jobs:label" @@ -3187,39 +3189,39 @@ msgid "Message: {{ message }}" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" -msgid "Operations" +msgid "Handlinger" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgid "Antal elementer" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgid "- Alle -" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgid "Forskydning" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgid "Udfør" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Nulstil" +msgid "Gendan" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgid "Sortér efter" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgid "Stigende" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgid "Faldende" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" @@ -3227,7 +3229,7 @@ msgid "No jobs found" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" -msgid "All" +msgid "Alle" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" @@ -3711,11 +3713,11 @@ msgid "Område" msgstr "" msgctxt "views.view.archive:label" -msgid "Archive" +msgid "Arkiv" msgstr "" msgctxt "views.view.archive:description" -msgid "All content, by month." +msgid "Alt indhold, efter måned." msgstr "" msgctxt "views.view.archive:display:default:display_title" @@ -3723,7 +3725,7 @@ msgid "Master" msgstr "" msgctxt "views.view.archive:display:default:display_options:title" -msgid "Monthly archive" +msgid "Månedsarkiv" msgstr "" msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" @@ -3763,7 +3765,7 @@ msgid "{{ arguments.created_year_month }}" msgstr "" msgctxt "views.view.archive:display:block_1:display_title" -msgid "Block" +msgid "Blok" msgstr "" msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" @@ -3945,11 +3947,11 @@ msgid "Nodes Autocompletion Callback" msgstr "" msgctxt "views.view.block_content:label" -msgid "Custom block library" +msgid "Brugerdefineret blokbibliotek" msgstr "" msgctxt "views.view.block_content:description" -msgid "Find and manage custom blocks." +msgid "Find og håndtér brugerdefinerede blokke." msgstr "" msgctxt "views.view.block_content:display:default:display_title" @@ -3957,11 +3959,11 @@ msgid "Master" msgstr "" msgctxt "views.view.block_content:display:default:display_options:title" -msgid "Custom block library" +msgid "Brugerdefineret blokbibliotek" msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:info:label" -msgid "Block description" +msgid "Beskrivelse" msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:type:label" @@ -3969,7 +3971,7 @@ msgid "Bloktype" msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" -msgid "Updated" +msgid "Opdateret" msgstr "" msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" @@ -3977,11 +3979,11 @@ msgid "Handlinger" msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:next" -msgid "Next ›" +msgid "Næste ›" msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" -msgid "‹ Previous" +msgid "‹ Forrige" msgstr "" msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" @@ -4021,7 +4023,7 @@ msgid "There are no custom blocks available." msgstr "" msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" -msgid "Block description" +msgid "Beskrivelse" msgstr "" msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" @@ -4033,7 +4035,7 @@ msgid "Side" msgstr "" msgctxt "views.view.block_content:display:page_1:display_options:menu:title" -msgid "Custom block library" +msgid "Brugerdefineret blokbibliotek" msgstr "" msgctxt "views.view.block_content:display:page_1:display_options:menu:description" @@ -4185,7 +4187,7 @@ msgid "Indhold" msgstr "" msgctxt "views.view.content:description" -msgid "Find and manage content." +msgid "Find og håndtér indhold." msgstr "" msgctxt "views.view.content:display:default:display_title" @@ -4269,7 +4271,7 @@ msgid "Faldende" msgstr "" msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" -msgid "No content available." +msgid "Der er intet indhold at vise." msgstr "" msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" @@ -4393,15 +4395,15 @@ msgid "Indhold" msgstr "" msgctxt "views.view.content:display:page_1:display_options:tab_options:description" -msgid "Find and manage content" +msgid "Find og håndtér indhold" msgstr "" msgctxt "views.view.content_recent:label" -msgid "Recent content" +msgid "Seneste indhold" msgstr "" msgctxt "views.view.content_recent:description" -msgid "Recent content." +msgid "Seneste indhold." msgstr "" msgctxt "views.view.content_recent:display:default:display_title" @@ -4409,7 +4411,7 @@ msgid "Master" msgstr "" msgctxt "views.view.content_recent:display:default:display_options:title" -msgid "Recent content" +msgid "Seneste indhold" msgstr "" msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" @@ -4445,11 +4447,11 @@ msgid "Blok" msgstr "" msgctxt "views.view.files:label" -msgid "Files" +msgid "Filer" msgstr "" msgctxt "views.view.files:description" -msgid "Find and manage files." +msgid "Find og håndtér filer." msgstr "" msgctxt "views.view.files:display:default:display_title" @@ -4457,7 +4459,7 @@ msgid "Master" msgstr "" msgctxt "views.view.files:display:default:display_options:title" -msgid "Files" +msgid "Filer" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:fid:label" @@ -4481,7 +4483,7 @@ msgid "Status" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Temporary" +msgid "Midlertidig" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" @@ -4489,15 +4491,15 @@ msgid "Permanent" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:created:label" -msgid "Upload date" +msgid "Upload-dato" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:changed:label" -msgid "Changed date" +msgid "Ændringsdato" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:count:label" -msgid "Used in" +msgid "Brugt i" msgstr "" msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" @@ -4549,11 +4551,11 @@ msgid "Faldende" msgstr "" msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" -msgid "No files available." +msgid "Ingen tilgængelige filer." msgstr "" msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" -msgid "Filename" +msgid "Filnavn" msgstr "" msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" @@ -4565,11 +4567,11 @@ msgid "Status" msgstr "" msgctxt "views.view.files:display:page_1:display_title" -msgid "Files overview" +msgid "Filoversigt" msgstr "" msgctxt "views.view.files:display:page_1:display_options:menu:title" -msgid "Files" +msgid "Filer" msgstr "" msgctxt "views.view.files:display:page_2:display_title" @@ -4585,15 +4587,15 @@ msgid "Entity" msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:type:label" -msgid "Entity type" +msgid "Entity-type" msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:module:label" -msgid "Registering module" +msgid "Registrerer modul" msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:count:label" -msgid "Use count" +msgid "Brug antal" msgstr "" msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" @@ -4625,7 +4627,7 @@ msgid "Alle" msgstr "" msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" -msgid "File usage information for {{ arguments.fid }}" +msgid "Information om brug af filen {{ arguments.fid }}" msgstr "" msgctxt "views.view.form_list_active_projects:label" @@ -4677,11 +4679,11 @@ msgid "Entity Reference" msgstr "" msgctxt "views.view.glossary:label" -msgid "Glossary" +msgid "Ordliste" msgstr "" msgctxt "views.view.glossary:description" -msgid "All content, by letter." +msgid "Alt indhold efter forbogstav." msgstr "" msgctxt "views.view.glossary:display:default:display_title" @@ -4697,7 +4699,7 @@ msgid "Forfatter" msgstr "" msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" -msgid "Last update" +msgid "Seneste opdatering" msgstr "" msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" @@ -4733,7 +4735,7 @@ msgid "Faldende" msgstr "" msgctxt "views.view.glossary:display:attachment_1:display_title" -msgid "Attachment" +msgid "Bilag" msgstr "" msgctxt "views.view.glossary:display:page_1:display_title" @@ -4741,7 +4743,7 @@ msgid "Side" msgstr "" msgctxt "views.view.glossary:display:page_1:display_options:menu:title" -msgid "Glossary" +msgid "Ordliste" msgstr "" msgctxt "views.view.hearings_related_to_project:label" @@ -5450,11 +5452,11 @@ msgid "Status" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Unpublished" +msgid "Ikke udgivet" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Published" +msgid "Udgivet" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:changed:label" @@ -5474,11 +5476,11 @@ msgid "‹ Previous" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgid "« Første" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" -msgid "Last »" +msgid "Sidste »" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_label" @@ -5522,15 +5524,15 @@ msgid "Sandt" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" -msgid "Published status" +msgid "Publiceringsstatus" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Published" +msgid "Udgivet" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Unpublished" +msgid "Ikke udgivet" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" @@ -5810,11 +5812,11 @@ msgid "Page" msgstr "" msgctxt "views.view.taxonomy_term:label" -msgid "Taxonomy term" +msgid "Ord i ordforråd" msgstr "" msgctxt "views.view.taxonomy_term:description" -msgid "Content belonging to a certain taxonomy term." +msgid "Indhold som er knyttet til en bestemt term." msgstr "" msgctxt "views.view.taxonomy_term:display:default:display_title" @@ -5914,11 +5916,11 @@ msgid "Block" msgstr "" msgctxt "views.view.user_admin_people:label" -msgid "People" +msgid "Personer" msgstr "" msgctxt "views.view.user_admin_people:description" -msgid "Find and manage people interacting with your site." +msgid "Find og håndtér personer som bruger dit site." msgstr "" msgctxt "views.view.user_admin_people:display:default:display_title" @@ -5926,15 +5928,15 @@ msgid "Master" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:title" -msgid "People" +msgid "Personer" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:user_bulk_form:label" -msgid "Bulk update" +msgid "Masseopdatering" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:name:label" -msgid "Username" +msgid "Brugernavn" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" @@ -5942,15 +5944,15 @@ msgid "Status" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Blocked" +msgid "Blokeret" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Active" +msgid "Aktiv" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" -msgid "Roles" +msgid "Roller" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" @@ -5958,7 +5960,7 @@ msgid "Department" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" -msgid "Member for" +msgid "Medlem i" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" @@ -5970,7 +5972,7 @@ msgid "@interval" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" -msgid "Last access" +msgid "Seneste tilgang" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" @@ -6034,11 +6036,11 @@ msgid "Faldende" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:empty:area_text_custom:content" -msgid "No people available." +msgid "Ingen personer til rådighed." msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" -msgid "Name or email contains" +msgid "Navn eller e-mail indeholder" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" @@ -6046,23 +6048,23 @@ msgid "Status" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Active" +msgid "Aktiv" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Blocked" +msgid "Blokeret" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" -msgid "Role" +msgid "Rolle" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" -msgid "Permission" +msgid "Tilladelse" msgstr "" msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" -msgid "more" +msgid "mere" msgstr "" msgctxt "views.view.user_admin_people:display:data_export_1:display_title" @@ -6174,19 +6176,19 @@ msgid "Side" msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" -msgid "List" +msgid "Vis" msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:description" -msgid "Find and manage people interacting with your site." +msgid "Find og håndtér personer som bruger dit site." msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" -msgid "People" +msgid "Personer" msgstr "" msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" -msgid "Manage user accounts, roles, and permissions." +msgid "Håndtér brugerkonti, roller og tilladelser." msgstr "" msgctxt "views.view.video_display:label" @@ -6642,11 +6644,11 @@ msgid "Review submissions." msgstr "" msgctxt "views.view.who_s_new:label" -msgid "Who's new" +msgid "Nye brugere" msgstr "" msgctxt "views.view.who_s_new:description" -msgid "Shows a list of the newest user accounts on the site." +msgid "Viser en liste af de nyeste brugerkonti på sitet." msgstr "" msgctxt "views.view.who_s_new:display:default:display_title" @@ -6654,7 +6656,7 @@ msgid "Master" msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:title" -msgid "Who's new" +msgid "Nye brugere" msgstr "" msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" @@ -6678,19 +6680,19 @@ msgid "Faldende" msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_title" -msgid "Who's new" +msgid "Nye brugere" msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:display_description" -msgid "A list of new users" +msgid "En liste af nye brugere" msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" -msgid "Who's new" +msgid "Nye brugere" msgstr "" msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" -msgid "User" +msgid "Bruger" msgstr "" msgctxt "views.view.who_s_online:label" @@ -6699,8 +6701,8 @@ msgstr "" msgctxt "views.view.who_s_online:description" msgid "" -"Shows the user names of the most recently active users, and the total " -"number of active users." +"Viser navnene på de brugere, der senste har været aktive, og det " +"totale antal af aktive brugere." msgstr "" msgctxt "views.view.who_s_online:display:default:display_title" @@ -6708,7 +6710,7 @@ msgid "Master" msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:title" -msgid "Who's online" +msgid "Hvem er online" msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:submit_button" @@ -6732,7 +6734,7 @@ msgid "Faldende" msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:empty:area_text_custom:content" -msgid "There are currently 0 users online." +msgid "Der er i øjeblikket 0 brugere online." msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" @@ -6741,24 +6743,24 @@ msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:description" msgid "" -"A user is considered online for this long after they have last viewed " -"a page." +"En bruger bliver opfattet som online i dette tidsrum efter hun sidst " +"har set en side." msgstr "" msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" -msgid "There are currently @total users online." +msgid "Der er i øjeblikket @total brugere online." msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" -msgid "Who's online" +msgid "Hvem er online" msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:display_description" -msgid "A list of users that are currently logged in." +msgid "En liste af indloggede brugere." msgstr "" msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" -msgid "Who's online" +msgid "Hvem er online" msgstr "" msgctxt "webform.settings:settings:default_submit_button_label" @@ -6943,7 +6945,7 @@ msgid "{Empty}" msgstr "" msgctxt "webform.settings:element:default_more_title" -msgid "More" +msgid "Mere" msgstr "" msgctxt "webform.settings:element:default_section_title_tag" @@ -7521,7 +7523,7 @@ msgid "Languages" msgstr "" msgctxt "webform.webform_options.languages:category" -msgid "Language" +msgid "Sprog" msgstr "" msgctxt "webform.webform_options.likert_agreement:label" @@ -7835,7 +7837,7 @@ msgid "" msgstr "" msgctxt "webform.webform_options.size:label" -msgid "Size" +msgid "Størrelse" msgstr "" msgctxt "webform.webform_options.size:category" diff --git a/translations/contrib-translations.da.po b/translations/contrib-translations.da.po index 51fe1a77c..d61560637 100644 --- a/translations/contrib-translations.da.po +++ b/translations/contrib-translations.da.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "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" +"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" "MIME-Version: 1.0\n" @@ -12,431 +12,30 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -msgid "Block type" -msgstr "Block type" - -msgid "Content type" -msgstr "Content type" - -msgid "Description" -msgstr "Beskrivelse" - -msgid "Content" -msgstr "Content" - -msgid "Footer" -msgstr "Footer" - -msgid "Share the proposal" -msgstr "Del forslaget" - -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 "Phone" -msgstr "Telefonnummer" - -msgid "Initiative" -msgstr "Initiativ" - -msgid "Information page" -msgstr "Information" - -msgid "Public meeting" -msgstr "Begivenhed" - -msgid "Finished" -msgstr "Afsluttet" - -msgid "Cancelled" -msgstr "Aflyst" - -msgid "Start date" -msgstr "Start dato" - -msgid "Upcoming" -msgstr "På vej" - -msgid "Reply date" -msgstr "Svarfrist" - -msgid "Your search yielded no result" -msgstr "Din søgning gav ingen resultater." - -msgid "Support the proposal" -msgstr "Støt borgerforslaget" - -msgid "Project info" -msgstr "Initiativ info" - -msgid "Hearing reply for" -msgstr "Høringssvar for" - -msgid "Show more hearings" -msgstr "Vis flere høringer" - -msgid "Expected finish" -msgstr "Forventet afsluttet" - -msgid "Meeting has already been held" -msgstr "Mødet er afholdt" - -msgid "Registration deadline passed" -msgstr "Deadline for tilmelding er overskredet" - -msgid "Sign up for public meeting" -msgstr "Tilmeld dig her" - -msgid "Content on this page" -msgstr "Indhold på denne side" - -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" - -msgid "Materials" -msgstr "Materialer" - -msgid "Date" -msgstr "Dato" - -msgid "Spots" -msgstr "Pladser" - -msgid "Sign up" -msgstr "Tilmeld dig her" - -msgid "Opens in a new tab" -msgstr "Åbner i en ny fane" - -msgid "Last date for signup" -msgstr "Tilmeldingsfrist" - -msgid "Open project gallery" -msgstr "Åbn projektgalleri" - -msgid "Page" -msgstr "Side" - -msgid "Create your proposal" -msgstr "Opret borgerforslag" - -msgid "Show on map" -msgstr "Vis på kort" - -msgid "The proposal list is empty" -msgstr "Der er i øjeblikket ingen borgerforslag i denne kategori" - -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 "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 " - -msgid "Create new proposal" -msgstr "Opret borgerforslag" - -msgid "Name" -msgstr "Navn" - -msgid "Display email" -msgstr "Ja, vis min e-mail på mit borgerforslag" - -msgid "Allow email" -msgstr " Ja, I må gerne kontakte mig." - -msgid "Title" -msgstr "Titel" - -msgid "@remaining characters left." -msgstr "@remaining tegn tilbage" - -msgid "Proposal" -msgstr "Forslag" - -msgid "Remarks" -msgstr "Begrundelse" - -msgid "Personal data storage consent" -msgstr "" -"Jeg har læst betingelserne og giver mit samtykke Læs mere " -"her" - -msgid "Update proposal" -msgstr "Opdater borgerforslag" - -msgid "Create proposal" -msgstr "Opret borgerforslag" - -msgid "(Not shown on proposal)" -msgstr "Ikke synligt for andre" - -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 "Could not find a proposal to approve." -msgstr "Ikke muligt at finde et forslag at godkende" - -msgid "You're currently authenticated as @name" -msgstr "Du er logget ind som @name" - -msgid "Sign out" -msgstr "Log ud" - -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 "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 "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 "Number of supporters" -msgstr "Antal støtter" - -msgid "Author" -msgstr "Author" - -msgid "Hearing" -msgstr "Høring" - -msgid "Frontpage" -msgstr "Frontpage" - -msgid "Node address" -msgstr "Adresse" - -msgid "Node more info" -msgstr "Mere information" - -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." - -msgid "Note! This hearing has not started yet" -msgstr "Note! Denne høring er ikke startet endnu." - -msgid "Note! Hearing deadline approaching." -msgstr "Note! Hørings tidsfristen nærmer sig." - -msgid "Note! This public meeting has been held." -msgstr "Denne begivenhed er afholdt" - -msgid "Note! This public meeting has been cancelled." -msgstr "Note! Denne begivenhed er aflyst" - -msgid "Hearing tickets" -msgstr "Høringssvar" - -msgid "Point" -msgstr "Vælg punkt på kort" - -msgid "Deskpro" -msgstr "Sagsbehandlersystem" - -msgid "Email address" -msgstr "E-mailadresse" - -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 "Postal code and city" -msgstr "Postnummer og by" - -msgid "Street and number" -msgstr "Vejnavn og nummer" - -msgid "My address is secret" -msgstr "Jeg har adressebeskyttelse" - -msgid "Message" -msgstr "Høringssvar" - -msgid "Your name cannot contain numbers." -msgstr "Dit navn må ikke indeholde tal." - -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 "Sent d." -msgstr "Indsendt" - -msgid "Represents" -msgstr "Udtaler sig som" - -msgid "Ticket reference" -msgstr "Sagsnummer" - -msgid "Hearing reply" -msgstr "Høringssvar" - -msgid "Create hearing reply" -msgstr "Skriv høringssvar" - -msgid "Download ticket as pdf" -msgstr "Download høringssvar som pdf" - -msgid "Show hearing tickets" -msgstr "Vis indkomne svar" - -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." -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 "@ticket_ref by @person_name" -msgstr "@ticket_ref af @person_name" - -msgid "Add hearing reply" -msgstr "Tilføj høringssvar" - -msgid "Project start" -msgstr "Initiativ start" - -msgid "Expected end date" -msgstr "Forventet slutdato" - -msgid "Place" -msgstr "Lokation" - -msgid "Last signup date" -msgstr "Tilmeldingsfrist" - msgid "Primary admin actions" -msgstr "Primary admin actions" +msgstr "Primære adminsitratorhandlinger" msgid "Tabs" -msgstr "Tabs" +msgstr "Faner" msgid "Status messages" -msgstr "Status messages" +msgstr "Statusmeddelelser" msgid "Page title" -msgstr "Page title" +msgstr "Sidetitel" msgid "Tools" -msgstr "Tools" +msgstr "Værktøjer" msgid "Anonymous" -msgstr "Anonymous" +msgstr "Anonym" msgid "Hero (1440×360)" msgstr "Hero (1440w) - Crop" -msgid "Default" -msgstr "Default" - msgid "Advanced Queue jobs" msgstr "Advanced queue jobs" -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 "State" -msgstr "State" - msgid "
    {{ payload }}
    " msgstr "" @@ -446,20 +45,14 @@ msgstr "" msgid "Message" msgstr "Høringssvar" -msgid "Operations" -msgstr "Operations" - msgid "Available from" msgstr "Available date" -msgid "All" -msgstr "All" - msgid "Page" msgstr "Side" msgid "Full" -msgstr "Full" +msgstr "Fuld" msgid "" "This question is for testing whether or not you are a human visitor " @@ -469,46 +62,43 @@ msgstr "" "human" msgid "Plain text" -msgstr "Plain text" +msgstr "Ren tekst" msgid "Medium (220×220)" -msgstr "Medium (330×330)" +msgstr "Mellem (220×220)" msgid "Not specified" -msgstr "Not specified" +msgstr "Ikke angivet" msgid "Not applicable" -msgstr "Not applicable" - -msgid "Full content" -msgstr "Full content" +msgstr "ikke relevant" msgid "Full content" msgstr "Fuldt indhold" msgid "Teaser" -msgstr "Teaser" +msgstr "Smagsprøve" msgid "Make content sticky" -msgstr "Make content sticky" +msgstr "Gør indhold klæbrigt" msgid "Make content unsticky" -msgstr "Make content unsticky" +msgstr "Fjern klæbrighed" msgid "Promote content to front page" -msgstr "Promote content to front page" +msgstr "Vis indhold på forsiden" msgid "Publish content" -msgstr "Publish content" +msgstr "Udgiv indhold" msgid "Save content" -msgstr "Save content" +msgstr "Gem indhold" msgid "Remove content from front page" -msgstr "Remove content from front page" +msgstr "Fjern indhold fra forsiden" msgid "Unpublish content" -msgstr "Unpublish content" +msgstr "Afpubliceer indhold" msgid "‹ previous" msgstr "‹ forrige" @@ -538,22 +128,22 @@ msgid "Page" msgstr "Side" msgid "Fallback date format" -msgstr "Fallback date format" +msgstr "Reservedatoformat" msgid "Default long date" -msgstr "Default long date" +msgstr "Standard lang dato" msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" +msgstr "\\d. j. F Y" msgid "Default medium date" -msgstr "Default medium date" +msgstr "Standard mellem dato" msgid "D, m/d/Y - H:i" msgstr "D, d/m/Y - H:i" msgid "Default short date" -msgstr "Default short date" +msgstr "Standard kort dato" msgid "m/d/Y - H:i" msgstr "d/m/Y - H:i" @@ -562,59 +152,61 @@ 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." +"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " +"tålmodighed." msgid "User account menu" -msgstr "User account menu" +msgstr "Brugerkontomenu" msgid "Links related to the active user account" -msgstr "Links related to the active user account" +msgstr "Links relateret til den aktive brugerkonto" msgid "Administrative task links" -msgstr "Administrative task links" +msgstr "Links til administrative opgaver" msgid "Footer" msgstr "Sidefod" msgid "Site information links" -msgstr "Site information links" +msgstr "Links til informationen om sitet" msgid "Main navigation" -msgstr "Main navigation" +msgstr "Primær navigation" msgid "Site section links" -msgstr "Site section links" +msgstr "Links til sitets sektioner" msgid "Tools" msgstr "Værktøjer" msgid "User tool links, often added by modules" -msgstr "User tool links, often added by modules" +msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" msgid "Taxonomy term page" -msgstr "Taxonomy term page" +msgstr "Termside" msgid "Register" -msgstr "Register" +msgstr "Opret konto" msgid "Compact" -msgstr "Compact" +msgstr "Kompakt" msgid "User account" -msgstr "User account" +msgstr "Brugerkonto" msgid "Block the selected user(s)" -msgstr "Block the selected user(s)" +msgstr "Blokér de(n) valgte bruger(e)" msgid "Cancel the selected user account(s)" -msgstr "Cancel the selected user account(s)" +msgstr "Opsig de valgte brugerkonti" msgid "Unblock the selected user(s)" -msgstr "Unblock the selected user(s)" +msgstr "Fjern blokering af de(n) valgte bruger(e)" msgid "Account cancellation request for [user:display-name] at [site:name]" -msgstr "Account cancellation request for [user:display-name] at [site:name]" +msgstr "" +"Anmodning om opsigelse af konto for [user:display-name] på " +"[site:name]" msgid "" "[user:display-name]\n" @@ -657,7 +249,7 @@ msgstr "" "-- [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]" +msgstr "Ny login-information for [user:display-name] på [site:name]" msgid "" "[user:display-name],\n" @@ -697,7 +289,7 @@ msgstr "" "-- [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]" +msgstr "En administrator har oprettet en konto til dig på [site:name]" msgid "" "[user:display-name],\n" @@ -746,7 +338,7 @@ msgstr "" "-- [site:name] team" msgid "Account details for [user:display-name] at [site:name]" -msgstr "Account details for [user:display-name] at [site:name]" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgid "" "[user:display-name],\n" @@ -797,8 +389,8 @@ 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)" +"Kontoinformation for [user:display-name] på [site:name] (afventer " +"godkendelse af administrator)" msgid "" "[user:display-name],\n" @@ -833,7 +425,7 @@ msgstr "" "[user:edit-url]" msgid "Account details for [user:display-name] at [site:name] (approved)" -msgstr "Account details for [user:display-name] at [site:name] (approved)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" msgid "" "[user:display-name],\n" @@ -887,7 +479,7 @@ msgstr "" "-- [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)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgid "" "[user:display-name],\n" @@ -905,7 +497,7 @@ msgstr "" "-- [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)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" msgid "" "[user:display-name],\n" @@ -937,47 +529,38 @@ msgstr "Gennemse" msgid "Please log in to access this submission." msgstr "Please login to access this submission." -msgid "More" -msgstr "More" - msgid "Please log in to access the uploaded file." msgstr "Please login to access the uploaded file." -msgid "Language" -msgstr "Language" - -msgid "Size" -msgstr "Size" - msgid "Preview" msgstr "Gennemse" msgid "Content blocks" -msgstr "Custom block library" +msgstr "Brugerdefineret blokbibliotek" msgid "Find and manage content blocks." -msgstr "Find and manage custom blocks." +msgstr "Find og håndtér brugerdefinerede blokke." msgid "Default" msgstr "Master" msgid "Block description" -msgstr "Block description" +msgstr "Beskrivelse" msgid "Block type" msgstr "Bloktype" msgid "Updated" -msgstr "Updated" +msgstr "Opdateret" msgid "Operations" msgstr "Handlinger" msgid "Next ›" -msgstr "Next ›" +msgstr "Næste ›" msgid "‹ Previous" -msgstr "‹ Previous" +msgstr "‹ Forrige" msgid "Items per page" msgstr "Antal elementer" @@ -1010,16 +593,16 @@ msgid "Page" msgstr "Side" msgid "Blocks" -msgstr "Custom block library" +msgstr "Brugerdefineret blokbibliotek" msgid "Create and edit content blocks." msgstr "Create and edit block content." msgid "Files" -msgstr "Files" +msgstr "Filer" msgid "Find and manage files." -msgstr "Find and manage files." +msgstr "Find og håndtér filer." msgid "Default" msgstr "Master" @@ -1031,16 +614,16 @@ msgid "Size" msgstr "Størrelse" msgid "Temporary" -msgstr "Temporary" +msgstr "Midlertidig" msgid "Upload date" -msgstr "Upload date" +msgstr "Upload-dato" msgid "Changed date" -msgstr "Changed date" +msgstr "Ændringsdato" msgid "Used in" -msgstr "Used in" +msgstr "Brugt i" msgid "@count place" msgid_plural "@count places" @@ -1075,40 +658,28 @@ msgid "Desc" msgstr "Faldende" msgid "No files available." -msgstr "No files available." +msgstr "Ingen tilgængelige filer." msgid "Filename" -msgstr "Filename" +msgstr "Filnavn" msgid "Files overview" -msgstr "Files overview" +msgstr "Filoversigt" msgid "Entity type" -msgstr "Entity type" +msgstr "Entity-type" msgid "Registering module" -msgstr "Registering module" +msgstr "Registrerer modul" msgid "Use count" -msgstr "Use count" +msgstr "Brug antal" msgid "All" msgstr "Alle" msgid "File usage information for {{ arguments.fid }}" -msgstr "File usage information for {{ arguments.fid }}" - -msgid "Delete media" -msgstr "Delete media" - -msgid "Publish media" -msgstr "Publish media" - -msgid "Save media" -msgstr "Save media" - -msgid "Unpublish media" -msgstr "Unpublish media" +msgstr "Information om brug af filen {{ arguments.fid }}" msgid "Find and manage media." msgstr "" @@ -1116,41 +687,23 @@ msgstr "" msgid "Action" msgstr "Handling" -msgid "Media name" -msgstr "Media name" - -msgid "Unpublished" -msgstr "Unpublished" - -msgid "Published" -msgstr "Published" - -msgid "« First" -msgstr "« First" - -msgid "Last »" -msgstr "Last »" - msgid "No media available." msgstr "No content available." msgid "True" msgstr "Sandt" -msgid "Published status" -msgstr "Published status" - msgid "Archive" -msgstr "Archive" +msgstr "Arkiv" msgid "All content, by month." -msgstr "All content, by month." +msgstr "Alt indhold, efter måned." msgid "Default" msgstr "Master" msgid "Monthly archive" -msgstr "Monthly archive" +msgstr "Månedsarkiv" msgid "Items per page" msgstr "Antal elementer" @@ -1177,7 +730,7 @@ msgid "Desc" msgstr "Faldende" msgid "Block" -msgstr "Block" +msgstr "Blok" msgid "Page" msgstr "Side" @@ -1186,7 +739,7 @@ msgid "Content" msgstr "Indhold" msgid "Find and manage content." -msgstr "Find and manage content." +msgstr "Find og håndtér indhold." msgid "Default" msgstr "Master" @@ -1237,7 +790,7 @@ msgid "Desc" msgstr "Faldende" msgid "No content available." -msgstr "No content available." +msgstr "Der er intet indhold at vise." msgid "Published status" msgstr "Publiceringsstatus" @@ -1249,13 +802,13 @@ msgid "Page" msgstr "Side" msgid "Find and manage content" -msgstr "Find and manage content" +msgstr "Find og håndtér indhold" msgid "Recent content" -msgstr "Recent content" +msgstr "Seneste indhold" msgid "Recent content." -msgstr "Recent content." +msgstr "Seneste indhold." msgid "Default" msgstr "Master" @@ -1285,10 +838,10 @@ msgid "Block" msgstr "Blok" msgid "Glossary" -msgstr "Glossary" +msgstr "Ordliste" msgid "All content, by letter." -msgstr "All content, by letter." +msgstr "Alt indhold efter forbogstav." msgid "Default" msgstr "Master" @@ -1300,7 +853,7 @@ msgid "Author" msgstr "Forfatter" msgid "Last update" -msgstr "Last update" +msgstr "Seneste opdatering" msgid "Items per page" msgstr "Antal elementer" @@ -1327,7 +880,7 @@ msgid "Desc" msgstr "Faldende" msgid "Attachment" -msgstr "Attachment" +msgstr "Bilag" msgid "Page" msgstr "Side" @@ -1345,10 +898,10 @@ msgid "last »" msgstr "sidste »" msgid "Taxonomy term" -msgstr "Taxonomy term" +msgstr "Ord i ordforråd" msgid "Content belonging to a certain taxonomy term." -msgstr "Content belonging to a certain taxonomy term." +msgstr "Indhold som er knyttet til en bestemt term." msgid "Default" msgstr "Master" @@ -1384,34 +937,34 @@ msgid "Page" msgstr "Side" msgid "People" -msgstr "People" +msgstr "Personer" msgid "Find and manage people interacting with your site." -msgstr "Find and manage people interacting with your site." +msgstr "Find og håndtér personer som bruger dit site." msgid "Default" msgstr "Master" msgid "Bulk update" -msgstr "Bulk update" +msgstr "Masseopdatering" msgid "Username" -msgstr "Username" +msgstr "Brugernavn" msgid "Blocked" -msgstr "Blocked" +msgstr "Blokeret" msgid "Active" -msgstr "Active" +msgstr "Aktiv" msgid "Roles" -msgstr "Roles" +msgstr "Roller" msgid "Member for" -msgstr "Member for" +msgstr "Medlem i" msgid "Last access" -msgstr "Last access" +msgstr "Seneste tilgang" msgid "Operations" msgstr "Handlinger" @@ -1450,34 +1003,34 @@ msgid "Desc" msgstr "Faldende" msgid "No people available." -msgstr "No people available." +msgstr "Ingen personer til rådighed." msgid "Name or email contains" -msgstr "Name or email contains" +msgstr "Navn eller e-mail indeholder" msgid "Role" -msgstr "Role" +msgstr "Rolle" msgid "Permission" -msgstr "Permission" +msgstr "Tilladelse" msgid "more" -msgstr "more" +msgstr "mere" msgid "Page" msgstr "Side" msgid "List" -msgstr "List" +msgstr "Vis" msgid "Manage user accounts, roles, and permissions." -msgstr "Manage user accounts, roles, and permissions." +msgstr "Håndtér brugerkonti, roller og tilladelser." msgid "Who's new" -msgstr "Who's new" +msgstr "Nye brugere" msgid "Shows a list of the newest user accounts on the site." -msgstr "Shows a list of the newest user accounts on the site." +msgstr "Viser en liste af de nyeste brugerkonti på sitet." msgid "Default" msgstr "Master" @@ -1498,26 +1051,23 @@ msgid "Desc" msgstr "Faldende" msgid "A list of new users" -msgstr "A list of new users" +msgstr "En liste af nye brugere" msgid "User" -msgstr "User" - -msgid "Who's online block" -msgstr "Who's online block" +msgstr "Bruger" 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." +"Viser navnene på de brugere, der senste har været aktive, og det " +"totale antal af aktive brugere." msgid "Default" msgstr "Master" msgid "Who's online" -msgstr "Who's online" +msgstr "Hvem er online" msgid "Apply" msgstr "Udfør" @@ -1535,7 +1085,7 @@ msgid "Desc" msgstr "Faldende" msgid "There are currently 0 users online." -msgstr "There are currently 0 users online." +msgstr "Der er i øjeblikket 0 brugere online." msgid "Last access" msgstr "Seneste tilgang" @@ -1544,14 +1094,14 @@ 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." +"En bruger bliver opfattet som online i dette tidsrum efter hun sidst " +"har set en side." msgid "There are currently @total users online." -msgstr "There are currently @total users online." +msgstr "Der er i øjeblikket @total brugere online." msgid "A list of users that are currently logged in." -msgstr "A list of users that are currently logged in." +msgstr "En liste af indloggede brugere." msgid "Created" msgstr "Oprettet" @@ -1560,7 +1110,7 @@ msgid "Action" msgstr "Handling" msgid "Update URL alias" -msgstr "Update URL alias" +msgstr "Opdatér alternativ URL" msgid "Update URL alias" msgstr "Opdatér alternativ URL" @@ -1568,527 +1118,4 @@ msgstr "Opdatér alternativ URL" msgid "Revision" msgstr "Version" -msgctxt "PHP date format" -msgid "l, F j, Y - H:i" -msgstr "l, j. F Y - H:i" - -msgctxt "PHP date format" -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" - -msgctxt "PHP date format" -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" - -msgid "User login" -msgstr "User login" - -msgid "Search index" -msgstr "Search index" - -msgid "Search result highlighting input" -msgstr "Search result highlighting input" - -msgid "Large (480×480)" -msgstr "Large (480×480)" - -msgid "Delete content" -msgstr "Delete content" - -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 "" -"[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 "Custom block library" -msgstr "Custom block library" - -msgid "Find and manage custom blocks." -msgstr "Find and manage custom blocks." - -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 "Watchdog" -msgstr "Watchdog" - -msgid "Recent log messages" -msgstr "Recent log messages" - -msgid "Icon" -msgstr "Icon" - -msgid "Severity" -msgstr "Severity" - -msgid "No log messages available." -msgstr "No log messages available." - -msgid "There are no custom blocks available." -msgstr "There are no custom blocks available." - -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 "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 "Add another item" -msgstr "Tilføj endnu et element" - -msgid "Attachments" -msgstr "Vedhæftninger" - -msgid "Replies" -msgstr "Bidrag" - -msgid "Block title" -msgstr "Titel" - -msgid "Description field" -msgstr "Beskrivelse" - -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 "Hearing tickets (@count)" -msgstr "Høringssvar (@count)" - -msgid "Answer @number by @name" -msgstr "Bidrag @number af @name" - -msgid "Note! Hearing deadline has passed." -msgstr "Note! Hørings tidsfristen er forbi." - -msgid "Hearing reply by @name" -msgstr "Høringssvar fra @name" - -msgid "Answer #@number by @name" -msgstr "Bidrag #@number af @name" - -msgid "Project end" -msgstr "Initiativ slut" - -msgid "Project finish" -msgstr "Initiativ afslutning" - -msgid "Meeting" -msgstr "Møde" - -msgid "Debate" -msgstr "Debat" - -msgid "Hearing id" -msgstr "Hørings-id" - -msgid "Select entities" -msgstr "Vælg fil" - -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 "media" -msgstr "medie" - -msgid "Project gallery" -msgstr "Projektgalleri" - -msgid "You can select up to @maximum @entity_type (@remaining left)." -msgstr "Du kan vælge op til @maximum @entity_type (@remaining tilbage)." - -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 "" -"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 "You can select one @entity_type." -msgstr "Du kan kun vælge ét @entity_type." - -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 "Show pretix orders" -msgstr "Se deltagerliste" - -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 "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 "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 "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 "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 "You're currently authenticated as %name" -msgstr "Du er logget ind som %name" - -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 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

    " - From 4ff6d8b839cfa985143f5574bb1d9c0c384632da Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 23 Apr 2025 15:26:25 +0200 Subject: [PATCH 12/14] Removed superfluous actions --- .github/workflows/pr.yaml | 40 --------------------------------------- 1 file changed, 40 deletions(-) diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index b5d68f241..9d0a0a8c8 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -372,43 +372,3 @@ jobs: - name: Reverse patch run: | docker compose exec phpfpm patch --strip=1 --verbose --input=${{ matrix.patch }} --reverse - - check-translations: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: arduino/setup-task@v2 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - - - name: Install site - run: | - docker network create frontend - task site-install --yes - - - name: Extract translations - run: | - task translations:extract - - - run: | - task translations:diff - - check-config-translations: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - 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 config translations - run: | - task config-translations:export - - - run: | - task translations:diff From 62fead81818b18305ac59324fc97759ea4c4e369 Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 23 Apr 2025 16:02:28 +0200 Subject: [PATCH 13/14] Updated config and its translation --- .../block.block.hoeringsportal_branding.yml | 2 + .../block.block.hoeringsportal_messages.yml | 2 + .../da/core.entity_view_mode.block.token.yml | 1 + ...entity_view_mode.entity_subqueue.token.yml | 1 + .../da/core.entity_view_mode.file.token.yml | 1 + .../da/core.entity_view_mode.user.token.yml | 1 + ...ler.mailer_policy.update.status_notify.yml | 18 ++ ...iler.mailer_policy.user.cancel_confirm.yml | 10 + ...iler.mailer_policy.user.password_reset.yml | 10 + ...ler_policy.user.register_admin_created.yml | 15 ++ ...icy.user.register_no_approval_required.yml | 15 ++ ..._policy.user.register_pending_approval.yml | 10 + ...y.user.register_pending_approval_admin.yml | 8 + ...er.mailer_policy.user.status_activated.yml | 15 ++ ...iler.mailer_policy.user.status_blocked.yml | 10 + ...ler.mailer_policy.user.status_canceled.yml | 10 + ...ssword.register_confirmation_with_pass.yml | 13 ++ config/translations/config.da.po | 197 +++--------------- 18 files changed, 166 insertions(+), 173 deletions(-) create mode 100644 config/sync/language/da/block.block.hoeringsportal_branding.yml create mode 100644 config/sync/language/da/block.block.hoeringsportal_messages.yml create mode 100644 config/sync/language/da/core.entity_view_mode.block.token.yml create mode 100644 config/sync/language/da/core.entity_view_mode.entity_subqueue.token.yml create mode 100644 config/sync/language/da/core.entity_view_mode.file.token.yml create mode 100644 config/sync/language/da/core.entity_view_mode.user.token.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.update.status_notify.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.cancel_confirm.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.password_reset.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.register_admin_created.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.register_no_approval_required.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.register_pending_approval_admin.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.status_activated.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.status_blocked.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user.status_canceled.yml create mode 100644 config/sync/language/da/symfony_mailer.mailer_policy.user_registrationpassword.register_confirmation_with_pass.yml 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 }}.

    +
      + {% for message in messages %} +
    • {{ message }}
    • + {% endfor %} +
    + +

    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:

    +
      +
    • username: [user:account-name]
    • +
    • password: Your password
    • +
    \ 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:

    +
      +
    • username: [user:account-name]
    • +
    • password: Your password
    • +
    \ 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:

    +
      +
    • username: [user:account-name]
    • +
    • password: Your password
    • +
    \ 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:

    +
      +
    • username: [user:account-name]
    • +
    • password: Your password
    • +
    \ No newline at end of file diff --git a/config/translations/config.da.po b/config/translations/config.da.po index d1b6de404..95a4addd1 100644 --- a/config/translations/config.da.po +++ b/config/translations/config.da.po @@ -3,8 +3,8 @@ 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" +"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" "MIME-Version: 1.0\n" @@ -13,7 +13,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" msgctxt "advancedqueue.advancedqueue_queue.default:label" -msgid "Master" +msgid "Default" msgstr "" msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" @@ -647,7 +647,7 @@ msgid "Content display" msgstr "" msgctxt "core.entity_view_mode.media.full:label" -msgid "Fuldt indhold" +msgid "Full content" msgstr "" msgctxt "core.entity_view_mode.media.material_display:label" @@ -3189,39 +3189,39 @@ msgid "Message: {{ message }}" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" -msgid "Handlinger" +msgid "Operations" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgid "Items per page" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgid "- All -" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgid "Offset" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgid "Apply" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgid "Reset" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgid "Sort by" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgid "Asc" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgid "Desc" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" @@ -3229,7 +3229,7 @@ msgid "No jobs found" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" -msgid "Alle" +msgid "All" msgstr "" msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" @@ -5452,11 +5452,11 @@ msgid "Status" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Ikke udgivet" +msgid "Unpublished" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Udgivet" +msgid "Published" msgstr "" msgctxt "views.view.media:display:default:display_options:fields:changed:label" @@ -5476,11 +5476,11 @@ msgid "‹ Previous" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" -msgid "« Første" +msgid "« First" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" -msgid "Sidste »" +msgid "Last »" msgstr "" msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_label" @@ -5524,15 +5524,15 @@ msgid "Sandt" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" -msgid "Publiceringsstatus" +msgid "Published status" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Udgivet" +msgid "Published" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Ikke udgivet" +msgid "Unpublished" msgstr "" msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" @@ -6945,7 +6945,7 @@ msgid "{Empty}" msgstr "" msgctxt "webform.settings:element:default_more_title" -msgid "Mere" +msgid "More" msgstr "" msgctxt "webform.settings:element:default_section_title_tag" @@ -7136,155 +7136,6 @@ msgid "" "" msgstr "" -msgctxt "webform.webform.alder:title" -msgid "Alder" -msgstr "" - -msgctxt "webform.webform.alder:description" -msgid "10-14 år" -msgstr "" - -msgctxt "webform.webform.alder:categories:0" -msgid "14-16" -msgstr "" - -msgctxt "webform.webform.alder:elements" -msgid "" -"hvor_gammel_er_du_:\n" -" '#type': checkbox\n" -" '#title': 'Er du over 15 " -"år?'\n" -"skriv_lidt_om_dig_selv:\n" -" '#type': textfield\n" -" '#title': " -"'Skriv lidt om dig selv'" -msgstr "" - -msgctxt "webform.webform.skriv_lidt_om_dig_selv:title" -msgid "Skriv lidt om dig selv" -msgstr "" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:title" -msgid "Spørgsmål til forslagsstillere" -msgstr "" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:description" -msgid "Denne formular er til forslagsstillere" -msgstr "" - -msgctxt "webform.webform.spoergsmaal_til_forslagsstillere:elements" -msgid "" -"hvad_er_din_alder_1:\n" -" '#type': select\n" -" '#title': 'Hvad er din " -"alder?'\n" -" '#options':\n" -" '15-20 år': '15-20 år'\n" -" '21-30 " -"år': '21-30 år'\n" -" '31-40 år': '31-40 år'\n" -" '41-50 år ': " -"'41-50 år '\n" -" '51-60 år ': '51-60 år '\n" -" '61-70 år ': " -"'61-70 år '\n" -" '71 + år ': '71 + år '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"hvad_er_din_laengst_gennemfoerte_uddannelse_hvis_du_er_i_gang_me:\n" -" " -" '#type': select\n" -" '#title': 'Hvad er din længst gennemførte " -"uddannelse? Hvis du er i gang med en uddannelse, skal du vælge den " -"uddannelse, du er i gang med. '\n" -" '#options':\n" -" 'Grundskole, fx " -"folkeskolen ': 'Grundskole, fx folkeskolen '\n" -" 'Gymnasial " -"uddannelse ': 'Gymnasial uddannelse '\n" -" 'Erhvervsuddannelse ': " -"'Erhvervsuddannelse '\n" -" 'Kort eller mellemlang videregående " -"uddannelse ': 'Kort eller mellemlang videregående uddannelse '\n" -" " -"'Lang videregående uddannelse ': 'Lang videregående uddannelse '\n" -" " -" 'Andet ': 'Andet '\n" -" 'Ved ikke': 'Ved ikke'\n" -" '#empty_option': " -"'- Ingen - " -"'\n" -"hvor_stor_tillid_har_du_i_almindelighed_til_aarhus_kommune_:\n" -" " -"'#type': select\n" -" '#title': 'Hvor stor tillid har du i almindelighed " -"til Aarhus Kommune? '\n" -" '#options':\n" -" 'Meget stor tillid ': " -"'Meget stor tillid '\n" -" 'Ret stor tillid ': 'Ret stor tillid '\n" -" " -" 'Ret begrænset tillid ': 'Ret begrænset tillid '\n" -" 'Meget " -"begrænset tillid ': 'Meget begrænset tillid '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"i_hvor_hoej_grad_forventer_du_at_borgerforslag_styrker_din_mulig:\n" -" " -" '#type': select\n" -" '#title': 'I hvor høj grad forventer du, at " -"borgerforslag styrker din mulighed for at få indflydelse? '\n" -" " -"'#options':\n" -" 'I høj grad': 'I høj grad'\n" -" 'I meget høj " -"grad ': 'I meget høj grad '\n" -" 'I lav grad ': 'I lav grad '\n" -" " -"'I meget lav grad ': 'I meget lav grad '\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - " -"'\n" -"hvad_forventer_du_konkret_at_du_opnaar_ved_at_stille_et_borgerfo:\n" -" " -" '#type': select\n" -" '#title': 'Hvad forventer du konkret at opnå ved " -"at stille et borgerforslag? Vælg den mulighed der passer bedst. '\n" -" " -"'#options':\n" -" 'At forslaget bliver gennemført ': 'At forslaget " -"bliver gennemført '\n" -" 'At byrådet drøfter forslaget ': 'At " -"byrådet drøfter forslaget '\n" -" 'At skabe en offentlig debat ': " -"'At skabe en offentlig debat '\n" -" 'At gøre kommunen opmærksom på " -"et problem ': 'At gøre kommunen opmærksom på et problem '\n" -" " -"'Ingenting ': 'Ingenting '\n" -" Andet: Andet\n" -" 'Ved ikke': 'Ved " -"ikke'\n" -" '#empty_option': '- Ingen - '\n" -"borgerforslag:\n" -" '#type': " -"entity_autocomplete\n" -" '#title': Borgerforslag\n" -" '#target_type': " -"node\n" -" '#selection_handler': 'default:node'\n" -" " -"'#selection_settings':\n" -" target_bundles:\n" -" citizen_proposal: " -"citizen_proposal" -msgstr "" - msgctxt "webform.webform_options.country_codes:label" msgid "Country codes" msgstr "" @@ -7523,7 +7374,7 @@ msgid "Languages" msgstr "" msgctxt "webform.webform_options.languages:category" -msgid "Sprog" +msgid "Language" msgstr "" msgctxt "webform.webform_options.likert_agreement:label" @@ -7837,7 +7688,7 @@ msgid "" msgstr "" msgctxt "webform.webform_options.size:label" -msgid "Størrelse" +msgid "Size" msgstr "" msgctxt "webform.webform_options.size:category" From 2946bbe1af15b8a9a56ea3f87b47a9f269c93a4a Mon Sep 17 00:00:00 2001 From: Mikkel Ricky Date: Wed, 23 Apr 2025 21:56:42 +0200 Subject: [PATCH 14/14] Cleaned up translations --- config/translations/config.da.po | 8880 ++++++++--------- task/Taskfile.translation.yml | 35 +- translations/contrib-translations.da.po | 1410 +-- .../translations/aarhus_hero.da.po | 42 +- .../hoeringsportal_citizen_proposal.da.po | 536 +- ...ngsportal_citizen_proposal_archiving.da.po | 108 +- .../hoeringsportal_config_settings.da.po | 227 +- .../hoeringsportal_content_access.da.po | 8 +- .../hoeringsportal_content_blocks.da.po | 56 +- .../translations/hoeringsportal_data.da.po | 149 +- .../translations/hoeringsportal_deskpro.da.po | 491 +- .../translations/hoeringsportal_forms.da.po | 58 +- .../translations/hoeringsportal_hearing.da.po | 66 +- .../hoeringsportal_openid_connect.da.po | 20 +- .../hoeringsportal_project_timeline.da.po | 46 +- .../hoeringsportal_public_meeting.da.po | 106 +- .../hoeringsportal_quicklinks.da.po | 8 +- ...ringsportal_test_delta_sync_fixtures.da.po | 6 +- .../itk_admin/translations/itk_admin.da.po | 39 +- .../translations/itk_admin_links.da.po | 26 +- .../translations/hoeringsportal.da.po | 593 +- 21 files changed, 5981 insertions(+), 6929 deletions(-) diff --git a/config/translations/config.da.po b/config/translations/config.da.po index 95a4addd1..cd871473b 100644 --- a/config/translations/config.da.po +++ b/config/translations/config.da.po @@ -7,6984 +7,7180 @@ msgstr "" "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 "advancedqueue.advancedqueue_queue.default:label" -msgid "Default" +msgctxt "core.entity_form_display.node.hearing.default:content:field_hearing_ticket_add:settings:placeholder_title" +msgid " " msgstr "" -msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" -msgid "Citizen proposal archiving" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:sid:label" +msgid "#" msgstr "" -msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_deskpro:label" -msgid "Deskpro" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sid:label" +msgid "#" msgstr "" -msgctxt "block.block.aarhushero:settings:label" -msgid "Aarhus hero" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sid:label" +msgid "#" msgstr "" -msgctxt "block.block.breadcrumbs:settings:label" -msgid "Breadcrumbs" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sid:label" +msgid "#" msgstr "" -msgctxt "block.block.claro_breadcrumbs:settings:label" -msgid "Breadcrumbs" +msgctxt "field.storage.node.field_teaser_color:settings:format" +msgid "#HEXHEX" msgstr "" -msgctxt "block.block.claro_content:settings:label" -msgid "Main page content" +msgctxt "field.storage.taxonomy_term.field_timeline_item_color:settings:format" +msgid "#HEXHEX" msgstr "" -msgctxt "block.block.claro_local_actions:settings:label" -msgid "Primary admin actions" +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 "block.block.claro_messages:settings:label" -msgid "Status messages" +msgctxt "views.view.form_list_active_projects:display:default:display_options:fields:nid:alter:text" +msgid "(Indholds ID: {{ nid }})" msgstr "" -msgctxt "block.block.claro_page_title:settings:label" -msgid "Page title" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.claro_primary_local_tasks:settings:label" -msgid "Primary tabs" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.claro_secondary_local_tasks:settings:label" -msgid "Secondary tabs" +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.hoeringsportal_branding:settings:label" -msgid "Aarhus kommune" +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.hoeringsportal_messages:settings:label" -msgid "Status messages" +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.itkadminlinks:settings:label" -msgid "ITK Admin links" +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.mainpagecontent:settings:label" -msgid "Main page content" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.messages:settings:label" -msgid "Status messages" +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.pagetitle:settings:label" -msgid "Page title" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.primaernavigation:settings:label" -msgid "Primær navigation" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.primaryadminactions:settings:label" -msgid "Primary admin actions" +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.sekundaernavigation:settings:label" -msgid "Sekundær navigation" +msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.sidefod:settings:label" -msgid "Sidefod" +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.stark_admin:settings:label" -msgid "Administration" +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.stark_branding:settings:label" -msgid "Site branding" +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.stark_local_actions:settings:label" -msgid "Primære adminsitratorhandlinger" +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.stark_local_tasks:settings:label" -msgid "Faner" +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- All -" msgstr "" -msgctxt "block.block.stark_login:settings:label" -msgid "User login" +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block.block.stark_messages:settings:label" -msgid "Statusmeddelelser" +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block.block.stark_page_title:settings:label" -msgid "Sidetitel" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block.block.stark_tools:settings:label" -msgid "Værktøjer" +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block.block.tabs:settings:label" -msgid "Primary tabs" +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block.block.tabs_2:settings:label" -msgid "Secondary tabs" +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block_content.type.aside_contact_info:label" -msgid "Aside contact info" +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block_content.type.aside_contact_info:description" -msgid "Used to show contact info on a page" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_options_all_label" +msgid "- Alle -" msgstr "" -msgctxt "block_content.type.aside_link_box:label" -msgid "Aside link box" +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 "block_content.type.aside_link_box:description" -msgid "Used to create a link box in the right column." +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 "captcha.captcha_point.contact_message_feedback_form:label" -msgid "contact_message_feedback_form" +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 "captcha.captcha_point.contact_message_personal_form:label" -msgid "contact_message_personal_form" +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 "captcha.captcha_point.hearing_add_form:label" -msgid "hearing_add_form" +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 "captcha.captcha_point.node_hearing_form:label" -msgid "node_hearing_form" +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 "captcha.captcha_point.node_landing_page_form:label" -msgid "node_landing_page_form" +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 "captcha.captcha_point.node_project_form:label" -msgid "node_project_form" +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 "captcha.captcha_point.node_static_page_form:label" -msgid "node_static_page_form" +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 "captcha.captcha_point.user_login_form:label" -msgid "user_login_form" +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 "captcha.captcha_point.user_pass:label" -msgid "user_pass" +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 "captcha.captcha_point.user_register_form:label" -msgid "user_register_form" +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 "captcha.settings:description" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" msgid "" -"Please type the text you see in the captcha image to prove you are " -"human" +"- Any -|Område\n" +"- Enhver -|Vis alle områder" msgstr "" -msgctxt "core.base_field_override.node.citizen_proposal.promote:label" -msgid "Promoted to front page" +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 "core.base_field_override.node.citizen_proposal.promote:settings:on_label" -msgid "On" +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 "core.base_field_override.node.citizen_proposal.promote:settings:off_label" -msgid "Off" +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 "core.base_field_override.node.citizen_proposal.status:label" -msgid "Published" +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 "core.base_field_override.node.citizen_proposal.status:settings:on_label" -msgid "On" +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.base_field_override.node.citizen_proposal.status:settings:off_label" -msgid "Off" +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette" +msgid "1" msgstr "" -msgctxt "core.base_field_override.node.hearing.promote:label" -msgid "Forfremmet til forside" +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette_only" +msgid "1" msgstr "" -msgctxt "core.base_field_override.node.hearing.promote:settings:on_label" -msgid "Tilsluttet" +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette" +msgid "1" msgstr "" -msgctxt "core.base_field_override.node.hearing.promote:settings:off_label" -msgid "Afbrudt" +msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette_only" +msgid "1" msgstr "" -msgctxt "core.base_field_override.node.landing_page.promote:label" -msgid "Forfremmet til forside" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.landing_page.promote:settings:on_label" -msgid "Tilsluttet" +msgctxt "views.view.authmap:display:default:display_options:fields:uid:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.landing_page.promote:settings:off_label" -msgid "Afbrudt" +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.project.promote:label" -msgid "Forfremmet til forside" +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.project.promote:settings:on_label" -msgid "Tilsluttet" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.project.promote:settings:off_label" -msgid "Afbrudt" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.static_page.promote:label" -msgid "Forfremmet til forside" +msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" +msgid "1@count" msgstr "" -msgctxt "core.base_field_override.node.static_page.promote:settings:on_label" -msgid "Tilsluttet" +msgctxt "views.view.files:display:default:display_options:fields:count:format_plural_string" +msgid "1 place@count places" msgstr "" -msgctxt "core.base_field_override.node.static_page.promote:settings:off_label" -msgid "Afbrudt" +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 "core.date_format.fallback:label" -msgid "Reservedatoformat" +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 "core.date_format.hoeringsportal_date:label" -msgid "Høringsportalen – dato" +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 "core.date_format.hoeringsportal_date:pattern" -msgid "d/m/Y" +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 "core.date_format.hoeringsportal_datetime:label" -msgid "Høringsportalen – dato og tid" +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 "core.date_format.hoeringsportal_datetime:pattern" -msgid "d/m/Y H:i" +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 "core.date_format.hoeringsportal_date_long:label" -msgid "Høringsportalen – dato (lang)" +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 "core.date_format.hoeringsportal_date_long:pattern" -msgid "l \\d. j. F Y" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:1:title" +msgid "300 Multiple Choices" msgstr "" -msgctxt "core.date_format.hoeringsportal_day_only:label" -msgid "Høringsportalen – dag" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:2:title" +msgid "301 Moved Permanently" msgstr "" -msgctxt "core.date_format.hoeringsportal_day_only:pattern" -msgid "d" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:3:title" +msgid "302 Found" msgstr "" -msgctxt "core.date_format.hoeringsportal_month_short:label" -msgid "Høringsportalen – måned kort" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:4:title" +msgid "303 See Other" msgstr "" -msgctxt "core.date_format.hoeringsportal_month_short:pattern" -msgid "M" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:5:title" +msgid "304 Not Modified" msgstr "" -msgctxt "core.date_format.hoeringsportal_time:label" -msgid "Høringsportalen – tid" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:6:title" +msgid "305 Use Proxy" msgstr "" -msgctxt "core.date_format.hoeringsportal_time:pattern" -msgid "H:i" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:7:title" +msgid "307 Temporary Redirect" msgstr "" -msgctxt "core.date_format.html_date:label" -msgid "HTML Date" +msgctxt "webform.settings:settings:default_preview_prev_button_label" +msgid "< Previous" msgstr "" -msgctxt "core.date_format.html_datetime:label" -msgid "HTML Datetime" +msgctxt "webform.settings:settings:default_wizard_prev_button_label" +msgid "< Previous" msgstr "" -msgctxt "core.date_format.html_month:label" -msgid "HTML Month" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.html_time:label" -msgid "HTML Time" +msgctxt "views.view.all_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.html_week:label" -msgid "HTML Week" +msgctxt "views.view.all_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.html_year:label" -msgid "HTML Year" +msgctxt "views.view.all_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.html_yearless_date:label" -msgid "HTML Yearless date" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.long:label" -msgid "Standard lang dato" +msgctxt "views.view.latest_hearings:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.long:pattern" -msgid "l, j. F Y - H:i" +msgctxt "views.view.latest_projects:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.medium:label" -msgid "Standard mellem dato" +msgctxt "views.view.latest_public_meetings:display:default:display_options:empty:area_text_custom:content" +msgid "" msgstr "" -msgctxt "core.date_format.medium:pattern" -msgid "D, d/m/Y - H:i" +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 "core.date_format.short:label" -msgid "Standard kort dato" +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 "core.date_format.short:pattern" -msgid "d/m/Y - H:i" +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 "core.entity_form_display.block_content.aside_link_box.default:content:field_title:third_party_settings:maxlength:maxlength_js_label" +msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_body:content:value" msgid "" -"Content limited to @limit characters, remaining: " -"@remaining" +"

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

    \n" +"
      \n" +"{% for message in messages %}\n" +"
    • {{ message }}
    • \n" +"{% endfor %}\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 "core.entity_form_display.node.citizen_proposal.default:third_party_settings:field_group:group_getorganized:label" -msgid "GetOrganized" +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 "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_information:label" -msgid "Informationer" +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 "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_system_settings:label" -msgid "Systemindstillinger" +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 "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_deskpro:label" -msgid "Deskpro" +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" +"
      \n" +"
    • username: [user:account-name]
    • \n" +"
    • password: Your password
    • \n" +"
    " msgstr "" -msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_edoc:label" -msgid "eDoc" +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" +"
      \n" +"
    • username: [user:account-name]
    • \n" +"
    • password: Your password
    • \n" +"
    " msgstr "" -msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_contact:label" -msgid "Kontakt" +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" +"
      \n" +"
    • username: [user:account-name]
    • \n" +"
    • password: Your password
    • \n" +"
    " msgstr "" -msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_more_info:label" -msgid "Vil du vide mere?" +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 "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_getorganized:label" -msgid "GetOrganized" +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" +"
      \n" +"
    • username: [user:account-name]
    • \n" +"
    • password: Your password
    • \n" +"
    " msgstr "" -msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_hearing_ticket_system:label" -msgid "Høringssvarsystem" +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 "core.entity_form_display.node.hearing.default:content:field_hearing_ticket_add:settings:placeholder_title" -msgid " " +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 "core.entity_form_display.node.landing_page.default:content:field_section:settings:title" -msgid "sektion" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:future_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title_plural" -msgid "sektioner" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:past_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_system_settings:label" -msgid "Systemindstillinger" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:future_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_timeline:label" -msgid "Tidslinje" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:past_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title" -msgid "Paragraph" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title_plural" -msgid "Paragraphs" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:past_format" +msgid "@interval" msgstr "" -msgctxt "core.entity_form_display.node.project_main_page.default:third_party_settings:field_group:group_project_area:label" -msgid "Project area" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:past_format" +msgid "@interval ago" 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_main_page.default:content:field_content_sections:settings:title_plural" -msgid "Paragraphs" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:past_format" +msgid "@interval ago" 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" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:past_format" +msgid "@interval ago" 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" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:future_format" +msgid "@interval hence" msgstr "" -msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title" -msgid "Paragraph" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:future_format" +msgid "@interval hence" msgstr "" -msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title_plural" -msgid "Paragraphs" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" +msgid "@interval hence" 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" +msgctxt "media.type.document:description" +msgid "A document to be stored in the media library" msgstr "" -msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_information:label" -msgid "Informationer" +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 "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_system_settings:label" -msgid "Systemindstillinger" +msgctxt "webform.settings:settings:default_draft_loaded_message" +msgid "A partially-completed form was found. Please complete the remaining portions." msgstr "" -msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_contact:label" -msgid "Kontakt" +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 "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" -msgid "Tilmelding" +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 "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_cancellation:label" -msgid "Cancellation" +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 "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title" -msgid "Paragraph" +msgctxt "block.block.aarhushero:settings:label" +msgid "Aarhus hero" msgstr "" -msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title_plural" -msgid "Paragraphs" +msgctxt "block.block.hoeringsportal_branding:settings:label" +msgid "Aarhus kommune" msgstr "" -msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_sidebar:label" -msgid "Sidebar" +msgctxt "field.field.paragraph.content_promotion.field_abstract:label" +msgid "Abstract" msgstr "" -msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:label" -msgid "Systemindstillinger" +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:label" +msgid "Abstract" msgstr "" -msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:format_settings:label" -msgid "Systemindstillinger" +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 "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_teaser_display:label" -msgid "Teaser visning" +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 "core.entity_form_display.node.static_page.default:content:field_section:settings:title" -msgid "Paragraph" +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 "core.entity_form_display.node.static_page.default:content:field_section:settings:title_plural" -msgid "Paragraphs" +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 "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette" -msgid "1" +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 "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:palette" -msgid "[\"#008486\",\"#333333\", \"#B2DADA\"]" +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 "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:show_palette_only" -msgid "1" +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 "core.entity_form_display.paragraph.content_promotion.default:content:field_abstract:third_party_settings:maxlength:maxlength_js_label" +msgctxt "webform.webform_options.industry:options" msgid "" -"Content limited to @limit characters, remaining: " -"@remaining" +"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 "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title" -msgid "Paragraph" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Active" msgstr "" -msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title_plural" -msgid "Paragraphs" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Active" 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" +msgctxt "system.action.user_add_role_action.administrator:label" +msgid "Add the Administrator role to the selected user(s)" msgstr "" -msgctxt "core.entity_form_display.paragraph.link.default:content:field_link:settings:placeholder" -msgid "Search the name of the page" +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 "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title" -msgid "Paragraph" +msgctxt "system.action.user_add_role_action.project_editor:label" +msgid "Add the Project editor role to the selected user(s)" msgstr "" -msgctxt "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title_plural" -msgid "Paragraphs" +msgctxt "system.action.user_add_role_action.hearing_editor:label" +msgid "Add the hearing editor role to the selected user(s)" 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" +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 "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" +msgctxt "field.field.block_content.aside_contact_info.field_address:label" +msgid "Address" msgstr "" -msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette" -msgid "1" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:display_description" +msgid "Administer submissions." 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\"]" +msgctxt "block.block.stark_admin:settings:label" +msgid "Administration" msgstr "" -msgctxt "core.entity_form_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:show_palette_only" -msgid "1" +msgctxt "system.menu.admin:label" +msgid "Administration" msgstr "" -msgctxt "core.entity_form_mode.media.image:label" -msgid "Image" +msgctxt "user.role.administrator:label" +msgid "Administrator" msgstr "" -msgctxt "core.entity_form_mode.user.register:label" -msgid "Opret konto" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" -msgid "Tilmelding" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_display.node.public_meeting.search_result:third_party_settings:field_group:group_signup:label" -msgid "Tilmelding" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:format" -msgid "hex" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_mode.block.token:label" -msgid "Token" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_mode.block_content.full:label" -msgid "Fuld" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_mode.entity_subqueue.token:label" -msgid "Token" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Advanced options" msgstr "" -msgctxt "core.entity_view_mode.file.token:label" -msgid "Token" +msgctxt "views.view.advancedqueue_jobs:label" +msgid "Advanced queue jobs" msgstr "" -msgctxt "core.entity_view_mode.media.content_display:label" -msgid "Content display" +msgctxt "core.base_field_override.node.hearing.promote:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.media.full:label" -msgid "Full content" +msgctxt "core.base_field_override.node.landing_page.promote:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.media.material_display:label" -msgid "Material display" +msgctxt "core.base_field_override.node.project.promote:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.media.node_form_display:label" -msgid "Node form display" +msgctxt "core.base_field_override.node.static_page.promote:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.media.project_gallery_display:label" -msgid "Project gallery display" +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.media.teaser_display:label" -msgid "Teaser display" +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:off_label" +msgid "Afbrudt" msgstr "" -msgctxt "core.entity_view_mode.node.citizen_proposal_add:label" -msgid "Citizen proposal add" +msgctxt "field.field.node.hearing.field_deskpro_department_id:label" +msgid "Afdeling" msgstr "" -msgctxt "core.entity_view_mode.node.citizen_proposal_approval:label" -msgid "Citizen proposal approval" +msgctxt "taxonomy.vocabulary.department:name" +msgid "Afdeling" msgstr "" -msgctxt "core.entity_view_mode.node.full:label" -msgid "Fuldt indhold" +msgctxt "taxonomy.vocabulary.department:description" +msgid "Afdeling (Magistrat) for brugere og indhold" msgstr "" -msgctxt "core.entity_view_mode.node.hearing_ticket_add:label" -msgid "Hearing ticket add" +msgctxt "system.action.node_unpublish_action:label" +msgid "Afpubliceer indhold" msgstr "" -msgctxt "core.entity_view_mode.node.hearing_ticket_view:label" -msgid "Hearing ticket view" +msgctxt "field.storage.node.field_content_state:settings:allowed_values:2:label" +msgid "Afsluttet" msgstr "" -msgctxt "core.entity_view_mode.node.list_display:label" -msgid "List display" +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:2:title" +msgid "Afsluttet" msgstr "" -msgctxt "core.entity_view_mode.node.revision:label" -msgid "Version" +msgctxt "field.field.node.citizen_proposal.field_vote_end:label" +msgid "Afstemning afslutningsdato" msgstr "" -msgctxt "core.entity_view_mode.node.search_result:label" -msgid "Search result" +msgctxt "field.field.node.citizen_proposal.field_vote_start:label" +msgid "Afstemning start" msgstr "" -msgctxt "core.entity_view_mode.node.teaser:label" -msgid "Smagsprøve" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" +msgid "Afstemning start" msgstr "" -msgctxt "core.entity_view_mode.paragraph.preview:label" -msgid "Gennemse" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" +msgid "Afstemning start" msgstr "" -msgctxt "core.entity_view_mode.taxonomy_term.full:label" -msgid "Termside" +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 "core.entity_view_mode.user.compact:label" -msgid "Kompakt" +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 "core.entity_view_mode.user.full:label" -msgid "Brugerkonto" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Aktiv" msgstr "" -msgctxt "core.entity_view_mode.user.token:label" -msgid "Token" +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Aktiv" msgstr "" -msgctxt "crop.type.content_display:label" -msgid "Indholdsvisning" +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 "crop.type.content_display:description" +msgctxt "webform.webform_options.state_names:options" msgid "" -"Visningen der anvendes når billedet vises på det fulde " -"indholdselement" +"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 "crop.type.medium_squared:label" -msgid "Medium kvadratisk" +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 "crop.type.medium_squared:description" -msgid "Anvendt til visning af materialer" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" +msgid "All" msgstr "" -msgctxt "crop.type.teaser_display:label" -msgid "Teaser display" +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:exception:title" +msgid "All" msgstr "" -msgctxt "crop.type.teaser_display:description" -msgid "Visningen der anvendes når billedet vises som del af en teaser" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:arguments:node_id:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:label" -msgid "ITK document browser" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:arguments:nid:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:display_configuration:link_text" -msgid "Vælg fil" +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:label" -msgid "Overblik" +msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:settings:submit_text" -msgid "Vælg fil" +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:label" -msgid "Upload new document" +msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid_1:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:settings:submit_text" -msgid "Upload document to media library" +msgctxt "views.view.video_display:display:default:display_options:arguments:delta:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:label" -msgid "ITK icon browser" +msgctxt "views.view.video_display:display:default:display_options:arguments:nid:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:display_configuration:link_text" -msgid "Vælg ikon" +msgctxt "views.view.webform_submissions:display:default:display_options:arguments:in_draft:exception:title" +msgid "All" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:label" -msgid "Overblik" +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:exception:title" +msgid "Alle" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:settings:submit_text" -msgid "Vælg ikon" +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:exception:title" +msgid "Alle" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:widgets:81d6533a-5ddc-40e9-b2ef-6ed8dfb46b89:label" -msgid "Upload new icon" +msgctxt "views.view.all_meetings:label" +msgid "Alle begivenheder" msgstr "" -msgctxt "entity_browser.browser.itk_icon_browser:widgets:81d6533a-5ddc-40e9-b2ef-6ed8dfb46b89:settings:submit_text" -msgid "Upload new icon to media library" +msgctxt "views.view.all_citizen_proposals:label" +msgid "Alle borgerforslag" msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:label" -msgid "ITK image browser" +msgctxt "views.view.all_hearings:label" +msgid "Alle høringer" msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:display_configuration:link_text" -msgid "Vælg fil" +msgctxt "views.view.all_projects:label" +msgid "Alle projekter" msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:label" -msgid "Overblik" +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:label" +msgid "Allow email" msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:settings:submit_text" -msgid "Vælg fil" +msgctxt "views.view.glossary:description" +msgid "Alt indhold efter forbogstav." msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:label" -msgid "Upload new image" +msgctxt "views.view.archive:description" +msgid "Alt indhold, efter måned." msgstr "" -msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:settings:submit_text" -msgid "Upload image to media library" +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 "field.field.block_content.aside_contact_info.field_address:label" -msgid "Address" +msgctxt "media.type.image:description" +msgid "An image to be stored in the media library" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_address:description" -msgid "Used to add address" +msgctxt "user.mail:cancel_confirm:subject" +msgid "Anmodning om opsigelse af konto for [user:display-name] på [site:name]" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_department:label" -msgid "Department" +msgctxt "user.settings:anonymous" +msgid "Anonym" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_department:description" -msgid "Used as the name of the department" +msgctxt "user.role.anonymous:label" +msgid "Anonym bruger" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_email:label" -msgid "Email" +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_email:description" -msgid "Used to show the email address" +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_image:label" -msgid "Image" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_image:description" -msgid "Used to add image to the top of the box" +msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_phone_number:label" -msgid "Phone number" +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_phone_number:description" -msgid "Used to show the phone number" +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_title:label" -msgid "Title" +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_contact_info.field_title:description" -msgid "Used to show the title" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Antal elementer" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_color:label" -msgid "Color" +msgctxt "crop.type.medium_squared:description" +msgid "Anvendt til visning af materialer" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_color:description" -msgid "Used to set the color of the box" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_link:label" -msgid "Link" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_link:description" -msgid "Used to point to a target for the link box" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_title:label" -msgid "Title" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.block_content.aside_link_box.field_title:description" -msgid "Used to show the title" +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.document.field_itk_media_file_upload:label" -msgid "File upload" +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.document.field_itk_media_mime_type:label" -msgid "Mime type" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.document.field_itk_media_size:label" -msgid "Size" +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.document.field_itk_media_tag:label" -msgid "Tag" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.document.field_itk_media_tag:description" -msgid "The tag will help you navigate in your media library" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.icon.field_itk_media_image_upload:label" -msgid "Image" +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.image.field_itk_media_height:label" -msgid "Højde" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.image.field_itk_media_image_upload:label" -msgid "Image upload" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.image.field_itk_media_mime_type:label" -msgid "Mime type" +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.image.field_itk_media_tag:label" -msgid "Tag" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.media.image.field_itk_media_width:label" -msgid "Bredde" +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_allow_email:label" -msgid "Allow email" +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_allow_email:description" -msgid "Author accepts receiving emails." +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:on_label" -msgid "On" +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:submit_button" +msgid "Apply" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:off_label" -msgid "Off" +msgctxt "system.action.webform_archive_action:label" +msgid "Archive webform" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_email:label" -msgid "Email" +msgctxt "views.view.archive:label" +msgid "Arkiv" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_email_display:label" -msgid "Author email display" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:on_label" -msgid "On" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:off_label" -msgid "Off" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_name:label" -msgid "Navn" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_phone:label" -msgid "Phone" +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_author_uuid:label" -msgid "Author UUID" +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_content_state:label" -msgid "Content state" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_getorganized_case_id:label" -msgid "GetOrganized-sags-ID" +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_more_info:label" -msgid "Vil du vide mere?" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_proposal:label" -msgid "Forslaget" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_remarks:label" -msgid "Bemærkninger" +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_vote_end:label" -msgid "Afstemning afslutningsdato" +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.citizen_proposal.field_vote_start:label" -msgid "Afstemning start" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_area:label" -msgid "Område" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" 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." +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_contact:label" -msgid "Kontakt" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_content_state:label" -msgid "Content state" +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_content_state:description" -msgid "Høringens status." +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_delete_date:label" -msgid "Dato for sletning af høringssvar" +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" 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" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_department:label" -msgid "Department" +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_description:label" -msgid "Beskrivelse" +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_description:description" -msgid "Beskrivelse af høringen." +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_deskpro_agent_email:label" -msgid "Sagsbehandler" +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Asc" msgstr "" -msgctxt "field.field.node.hearing.field_deskpro_agent_email:description" -msgid "Vælg sagsbehandler for høringen." +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:label" +msgid "Aside block" msgstr "" -msgctxt "field.field.node.hearing.field_deskpro_department_id:label" -msgid "Afdeling" +msgctxt "block_content.type.aside_contact_info:label" +msgid "Aside contact info" msgstr "" -msgctxt "field.field.node.hearing.field_deskpro_department_id:description" -msgid "Vælg afdeling for høringen." +msgctxt "block_content.type.aside_link_box:label" +msgid "Aside link box" msgstr "" -msgctxt "field.field.node.hearing.field_edoc_casefile_id:label" -msgid "eDoc-sagsnr." +msgctxt "views.view.authmap:display:default:display_options:fields:authname:label" +msgid "Authentication Name" msgstr "" -msgctxt "field.field.node.hearing.field_edoc_casefile_id:description" -msgid "Indtast eDoc-sagsnr. for høringen." +msgctxt "views.view.authmap:display:default:display_options:filters:authname:expose:label" +msgid "Authentication name" msgstr "" -msgctxt "field.field.node.hearing.field_getorganized_case_id:label" -msgid "GetOrganized-sags-ID" +msgctxt "views.view.media:display:default:display_options:fields:uid:label" +msgid "Author" msgstr "" -msgctxt "field.field.node.hearing.field_getorganized_case_id:description" -msgid "Indtast GetOrganized-sags-ID for høringen." +msgctxt "field.field.node.citizen_proposal.field_author_uuid:label" +msgid "Author UUID" msgstr "" -msgctxt "field.field.node.hearing.field_hearing_ticket_add:label" -msgid "Tilføj høringssvar" +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:description" +msgid "Author accepts receiving emails." 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" +msgctxt "field.field.node.citizen_proposal.field_author_email_display:label" +msgid "Author email display" msgstr "" -msgctxt "field.field.node.hearing.field_hearing_ticket_list:label" -msgid "Vis høringssvar" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:available:label" +msgid "Available date" 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" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:available:expose:label" +msgid "Available date" msgstr "" -msgctxt "field.field.node.hearing.field_lokalplaner:label" -msgid "Lokalplaner" +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Avancerede indstillinger" msgstr "" -msgctxt "field.field.node.hearing.field_lokalplaner:description" -msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" +msgid "Avancerede indstillinger" msgstr "" -msgctxt "field.field.node.hearing.field_map:label" -msgid "Kortvisning" +msgctxt "webform.settings:settings:default_confirmation_back_label" +msgid "Back to form" msgstr "" -msgctxt "field.field.node.hearing.field_map:description" -msgid "Vælg kortvisning for høringen." +msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:label" +msgid "Background image" msgstr "" -msgctxt "field.field.node.hearing.field_map_display:label" -msgid "Kortvisning" +msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:label" +msgid "Background image" 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." +msgctxt "node.type.public_meeting:name" +msgid "Begivenhed" msgstr "" -msgctxt "field.field.node.hearing.field_media_document:label" -msgid "Dokumenter" +msgctxt "user.role.public_meeting_editor:label" +msgid "Begivenhedsredaktør" msgstr "" -msgctxt "field.field.node.hearing.field_media_document:description" -msgid "Vælg dokumenter der beskriver høringen." +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.hearing.field_media_image:label" -msgid "Billeder" +msgctxt "field.field.node.citizen_proposal.field_remarks:label" +msgid "Bemærkninger" msgstr "" -msgctxt "field.field.node.hearing.field_media_image:description" -msgid "Vælg billeder der skal vises på høringssiden." +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:1:label" +msgid "Benyt ikke tilmeldingssystem" msgstr "" -msgctxt "field.field.node.hearing.field_more_info:label" -msgid "Vil du vide mere?" +msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:0:label" +msgid "Benyt tilmeldingssystem" msgstr "" -msgctxt "field.field.node.hearing.field_project_reference:label" -msgid "Projekttidslinje" +msgctxt "field.field.node.hearing.field_description:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_project_reference:description" -msgid "Vælg den projekttidslinje som høringen er tilknyttet." +msgctxt "field.field.node.project.field_description:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_reply_deadline:label" -msgid "Svarfrist" +msgctxt "field.field.node.public_meeting.field_description:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_reply_deadline:description" -msgid "Vælg hvornår der er svarfrist for høringen." +msgctxt "field.field.paragraph.timeline_items.field_timeline_description:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_start_date:label" -msgid "Startdato" +msgctxt "field.field.paragraph.timeline_period.field_timeline_description:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_start_date:description" -msgid "Vælg startdato for høringen." +msgctxt "views.view.block_content:display:default:display_options:fields:info:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_tags:label" -msgid "Emneord" +msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" +msgid "Beskrivelse" msgstr "" -msgctxt "field.field.node.hearing.field_tags:description" -msgid "Vælg emneord for høringen." +msgctxt "field.field.node.public_meeting.field_description:description" +msgid "Beskrivelse af borgemødet." msgstr "" -msgctxt "field.field.node.hearing.field_teaser:label" -msgid "Teaser/indledning" +msgctxt "field.field.node.hearing.field_description:description" +msgid "Beskrivelse af høringen." msgstr "" -msgctxt "field.field.node.hearing.field_teaser:description" -msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" +msgctxt "views.view.glossary:display:attachment_1:display_title" +msgid "Bilag" msgstr "" -msgctxt "field.field.node.hearing.field_type:label" -msgid "Type" +msgctxt "field.field.node.landing_page.field_media_image_single:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.hearing.field_video_embed:label" -msgid "Video embed" +msgctxt "field.field.node.public_meeting.field_media_image_single:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.hearing.field_video_embed:description" -msgid "" -"Tilføj video embed code.\r\n" -"Det er redaktørens ansvar at videoen " -"overholder kommunens GDPR retningslinjer. \r\n" -"Hvis du er i tvivl kan " -"du spørge den GDPR ansvarlige i din afdeling." +msgctxt "field.field.node.static_page.field_media_image_single:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.landing_page.field_media_image_single:label" +msgctxt "field.field.paragraph.content_block.field_paragraph_image:label" msgid "Billede" msgstr "" -msgctxt "field.field.node.landing_page.field_section:label" -msgid "Indholds region" +msgctxt "field.field.paragraph.image.field_paragraph_image:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.landing_page.field_section:description" -msgid "Vælg den type indhold du ønsker at indsætte" +msgctxt "media.type.image:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.landing_page.field_show_page_title:label" -msgid "Show page title" +msgctxt "paragraphs.paragraphs_type.image:label" +msgid "Billede" msgstr "" -msgctxt "field.field.node.landing_page.field_show_page_title:description" -msgid "Toggle to either show or hide the title of the page." +msgctxt "field.field.node.static_page.field_media_image_single:description" +msgid "Billede til visning i header" msgstr "" -msgctxt "field.field.node.landing_page.field_show_page_title:settings:on_label" -msgid "On" +msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" +msgid "Billedegalleri" msgstr "" -msgctxt "field.field.node.landing_page.field_show_page_title:settings:off_label" -msgid "Off" +msgctxt "field.field.node.hearing.field_media_image:label" +msgid "Billeder" msgstr "" -msgctxt "field.field.node.landing_page.field_teaser:label" -msgid "Teaser/indledning" +msgctxt "views.view.hearings_related_to_project:display:block_1:display_title" +msgid "Block" msgstr "" -msgctxt "field.field.node.landing_page.field_teaser:description" -msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgctxt "views.view.nearest_hearings:display:block_1:display_title" +msgid "Block" msgstr "" -msgctxt "field.field.node.page_map.field_map_configuration:label" -msgid "Map configuration" +msgctxt "views.view.timeline_related_items:display:block_1:display_title" +msgid "Block" 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.\r\n" -"The " -"value can also be a URL pointing to a JSON map configuration." +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" msgstr "" -msgctxt "field.field.node.page_map.field_map_type:label" -msgid "Map type" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_false" +msgid "Blocked" msgstr "" -msgctxt "field.field.node.project.field_description:label" -msgid "Beskrivelse" +msgctxt "views.view.archive:display:block_1:display_title" +msgid "Blok" 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." +msgctxt "views.view.content_recent:display:block_1:display_title" +msgid "Blok" msgstr "" -msgctxt "field.field.node.project.field_project_finish:label" -msgid "Projektafslutning" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Blokeret" msgstr "" -msgctxt "field.field.node.project.field_project_finish:description" -msgid "Vælg afslutningsdato for projektet." +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Blokeret" msgstr "" -msgctxt "field.field.node.project.field_project_start:label" -msgid "Projekt start" +msgctxt "views.view.block_content:display:default:display_options:fields:type:label" +msgid "Bloktype" msgstr "" -msgctxt "field.field.node.project.field_project_start:description" -msgid "Vælg startdato for projektet." -msgstr "" - -msgctxt "field.field.node.project.field_timeline_items:label" -msgid "Tidslinjepunkter" -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.\r\n" -"Du kan bruge dette felt til " -"at plotte flere relevante punkter ind." +msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" +msgid "Bloktype" msgstr "" -msgctxt "field.field.node.project_main_page.field_area:label" -msgid "Område" +msgctxt "system.action.user_block_user_action:label" +msgid "Blokér de(n) valgte bruger(e)" 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." +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:label" +msgid "Body" msgstr "" -msgctxt "field.field.node.project_main_page.field_content_sections:label" -msgid "Content sections" +msgctxt "node.type.citizen_proposal:name" +msgid "Borgerforslag" msgstr "" -msgctxt "field.field.node.project_main_page.field_content_sections:description" -msgid "Used to create page sections with the Drupal Paragraphs module" +msgctxt "user.role.citizen_proposal_editor:label" +msgid "Borgerforslagsredaktør" msgstr "" -msgctxt "field.field.node.project_main_page.field_project_category:label" -msgid "Project category" +msgctxt "block.block.breadcrumbs:settings:label" +msgid "Breadcrumbs" msgstr "" -msgctxt "field.field.node.project_main_page.field_project_category:description" -msgid "" -"Used to categorize the project. Create " -"new categories here" +msgctxt "block.block.claro_breadcrumbs:settings:label" +msgid "Breadcrumbs" msgstr "" -msgctxt "field.field.node.project_main_page.field_project_image:label" -msgid "Project image" +msgctxt "field.field.media.image.field_itk_media_width:label" +msgid "Bredde" msgstr "" -msgctxt "field.field.node.project_main_page.field_project_image:description" -msgid "Used to show project image" +msgctxt "views.view.files:display:page_2:display_options:fields:count:label" +msgid "Brug antal" msgstr "" -msgctxt "field.field.node.project_main_page.field_short_description:label" -msgid "Short description" +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 "field.field.node.project_main_page.field_short_description:description" -msgid "Short description of the project." +msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" +msgid "Bruger" msgstr "" -msgctxt "field.field.node.project_page.field_content_sections:label" -msgid "Content sections" +msgctxt "system.menu.tools:description" +msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" msgstr "" -msgctxt "field.field.node.project_page.field_content_sections:description" -msgid "Used to create page sections with the Drupal Paragraphs module" +msgctxt "views.view.block_content:display:default:display_options:title" +msgid "Brugerdefineret blokbibliotek" msgstr "" -msgctxt "field.field.node.project_page.field_project_category:label" -msgid "Project category" +msgctxt "views.view.block_content:display:page_1:display_options:menu:title" +msgid "Brugerdefineret blokbibliotek" msgstr "" -msgctxt "field.field.node.project_page.field_project_category:description" -msgid "" -"Used to categorize the project. Create " -"new categories here" +msgctxt "views.view.block_content:label" +msgid "Brugerdefineret blokbibliotek" msgstr "" -msgctxt "field.field.node.public_meeting.field_area:label" -msgid "Område" +msgctxt "core.entity_view_mode.user.full:label" +msgid "Brugerkonto" 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." +msgctxt "system.menu.account:label" +msgid "Brugerkontomenu" msgstr "" -msgctxt "field.field.node.public_meeting.field_cancelled_date:label" -msgid "Cancelled date" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:name:label" +msgid "Brugernavn" msgstr "" -msgctxt "field.field.node.public_meeting.field_cancelled_text:label" -msgid "Cancelled text" +msgctxt "node.type.static_page:description" +msgid "" +"Bruges til indhold der sjældent ændres.\n" +"Eksempler: Cookie politik, \"Om\" side, FAQ" msgstr "" -msgctxt "field.field.node.public_meeting.field_contact:label" -msgid "Kontakt" +msgctxt "views.view.files:display:default:display_options:fields:count:label" +msgid "Brugt i" msgstr "" -msgctxt "field.field.node.public_meeting.field_content_state:label" -msgid "Content state" +msgctxt "field.field.paragraph.content_promotion.field_button:label" +msgid "Button" msgstr "" -msgctxt "field.field.node.public_meeting.field_department:label" -msgid "Department" +msgctxt "field.field.paragraph.link.field_button_variant:label" +msgid "Button variant" msgstr "" -msgctxt "field.field.node.public_meeting.field_description:label" -msgid "Beskrivelse" +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_description:description" -msgid "Beskrivelse af borgemødet." +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:label" +msgid "Cancelled" msgstr "" -msgctxt "field.field.node.public_meeting.field_email_address:label" -msgid "Email address" +msgctxt "field.field.node.public_meeting.field_cancelled_date:label" +msgid "Cancelled date" msgstr "" -msgctxt "field.field.node.public_meeting.field_email_address:description" -msgid "Enter the contact email address." +msgctxt "field.field.node.public_meeting.field_cancelled_text:label" +msgid "Cancelled text" msgstr "" -msgctxt "field.field.node.public_meeting.field_first_meeting_time:label" -msgid "First meeting time" +msgctxt "image.style.carousel_300x168:label" +msgid "Carousel 576x322" msgstr "" -msgctxt "field.field.node.public_meeting.field_first_meeting_time:description" +msgctxt "webform.webform_options.ethnicity:options" 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 "field.field.node.public_meeting.field_hidden_signup:label" -msgid "Skjul tilmelding" +"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_hidden_signup:settings:on_label" -msgid "Tilsluttet" +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:description" +msgid "Check this box if the meeting is cancelled" msgstr "" -msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:off_label" -msgid "Afbrudt" +msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:description" +msgid "Choose the image to display in the background" msgstr "" -msgctxt "field.field.node.public_meeting.field_last_meeting_time:label" -msgid "Mødedato" +msgctxt "core.entity_view_mode.node.citizen_proposal_add:label" +msgid "Citizen proposal add" msgstr "" -msgctxt "field.field.node.public_meeting.field_last_meeting_time_end:label" -msgid "Sluttidspunkt" +msgctxt "core.entity_view_mode.node.citizen_proposal_approval:label" +msgid "Citizen proposal approval" msgstr "" -msgctxt "field.field.node.public_meeting.field_map:label" -msgid "Kortvisning" +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_citizen_proposal_archiving:label" +msgid "Citizen proposal archiving" msgstr "" -msgctxt "field.field.node.public_meeting.field_media_document:label" -msgid "Dokumenter" +msgctxt "filter.format.citizen_proposal_content:name" +msgid "Citizen proposal content" msgstr "" -msgctxt "field.field.node.public_meeting.field_media_document:description" -msgid "Vælg dokumenter der beskriver høringen." +msgctxt "views.view.citizen_proposal_support:display:default:display_options:title" +msgid "Citizen proposal support" msgstr "" -msgctxt "field.field.node.public_meeting.field_media_image_single:label" -msgid "Billede" +msgctxt "views.view.citizen_proposal_support:label" +msgid "Citizen proposal support" msgstr "" -msgctxt "field.field.node.public_meeting.field_media_image_single:description" -msgid "Vælg billeder der skal vises i teaservisningen." +msgctxt "field.field.taxonomy_term.department.field_claim_value:label" +msgid "Claim value" msgstr "" -msgctxt "field.field.node.public_meeting.field_pretix_dates:label" -msgid "Tilmelding" +msgctxt "system.action.webform_close_action:label" +msgid "Close webform" msgstr "" -msgctxt "field.field.node.public_meeting.field_pretix_event_settings:label" -msgid "pretix-indstillinger" +msgctxt "field.field.block_content.aside_link_box.field_color:label" +msgid "Color" msgstr "" -msgctxt "field.field.node.public_meeting.field_project_reference:label" -msgid "Projekttidslinje" +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 "field.field.node.public_meeting.field_project_reference:description" -msgid "Vælg tidslinje som borgermødet er knyttet til." +msgctxt "webform.settings:settings:default_wizard_confirmation_label" +msgid "Complete" msgstr "" -msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:label" -msgid "Cancelled" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:completed:label" +msgid "Completed" msgstr "" -msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:description" -msgid "Check this box if the meeting is cancelled" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:completed:label" +msgid "Completed" msgstr "" -msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:on_label" -msgid "Tilsluttet" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:completed:label" +msgid "Completed" msgstr "" -msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:off_label" -msgid "Afbrudt" +msgctxt "field.field.paragraph.teaser_row.field_content:label" +msgid "Content" msgstr "" -msgctxt "field.field.node.public_meeting.field_registration_deadline:label" -msgid "Tilmeldingsfrist" +msgctxt "core.entity_view_mode.media.content_display:label" +msgid "Content display" msgstr "" -msgctxt "field.field.node.public_meeting.field_section:label" -msgid "Indhold" +msgctxt "responsive_image.styles.content_image:label" +msgid "Content image" msgstr "" -msgctxt "field.field.node.public_meeting.field_signup_link:label" -msgid "Tilmeldingslink" +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 "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”." +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 "field.field.node.public_meeting.field_signup_selection:label" -msgid "Vælg tilmeldingstype" +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 "field.field.node.public_meeting.field_signup_selection:description" -msgid "Bemærk at du ikke kan ændre tilmeldingstypen senere." +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 "field.field.node.public_meeting.field_signup_text:label" -msgid "Tilmeldingstekst" +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 "field.field.node.public_meeting.field_signup_text:description" -msgid "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." +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 "field.field.node.public_meeting.field_teaser:label" -msgid "Teaser/indledning" +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 "field.field.node.public_meeting.field_teaser:description" -msgid "Kort tekst der vises i teasers og i toppen af indholdsvisningen" +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 "field.field.node.public_meeting.field_type:label" -msgid "Type" +msgctxt "paragraphs.paragraphs_type.content_promotion:label" +msgid "Content promotion" msgstr "" -msgctxt "field.field.node.static_page.field_media_image_single:label" -msgid "Billede" +msgctxt "field.field.node.project_main_page.field_content_sections:label" +msgid "Content sections" msgstr "" -msgctxt "field.field.node.static_page.field_media_image_single:description" -msgid "Billede til visning i header" +msgctxt "field.field.node.project_page.field_content_sections:label" +msgid "Content sections" msgstr "" -msgctxt "field.field.node.static_page.field_section:label" -msgid "Indholds region" +msgctxt "field.field.node.citizen_proposal.field_content_state:label" +msgid "Content state" msgstr "" -msgctxt "field.field.node.static_page.field_sidebar:label" -msgid "Sidebar" +msgctxt "field.field.node.hearing.field_content_state:label" +msgid "Content state" msgstr "" -msgctxt "field.field.node.static_page.field_sidebar:description" -msgid "Tekst til visning i højre side på fuldskærmsvisning" +msgctxt "field.field.node.public_meeting.field_content_state:label" +msgid "Content state" msgstr "" -msgctxt "field.field.node.static_page.field_teaser:label" -msgid "Teaser/indledning" +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 "field.field.node.static_page.field_teaser:description" -msgid "Kort tekst der vises i teasers og ved siden af billede på indhold." +msgctxt "webform.webform_options.country_codes:label" +msgid "Country codes" msgstr "" -msgctxt "field.field.node.static_page.field_teaser_color:label" -msgid "Teaser color" +msgctxt "webform.webform_options.country_names:label" +msgid "Country names" msgstr "" -msgctxt "field.field.paragraph.content_block.field_content_block_text:label" -msgid "Indhold" +msgctxt "views.view.block_content:display:page_1:display_options:menu:description" +msgid "Create and edit block content." msgstr "" -msgctxt "field.field.paragraph.content_block.field_paragraph_image:label" -msgid "Billede" +msgctxt "image.style.crop_thumbnail:label" +msgid "Crop thumbnail" msgstr "" -msgctxt "field.field.paragraph.content_block.field_paragraph_title:label" -msgid "Titel" +msgctxt "core.date_format.medium:pattern" +msgid "D, d/m/Y - H:i" msgstr "" -msgctxt "field.field.paragraph.content_list.field_content_list:label" -msgid "Indholdsliste" +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:0:label" +msgid "Danger" msgstr "" -msgctxt "field.field.paragraph.content_list.field_list_title:label" -msgid "Liste titel" +msgctxt "language.entity.da:label" +msgid "Danish" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_abstract:label" -msgid "Abstract" +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_title" +msgid "Data export (CSV)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_abstract:description" -msgid "Used to quickly introduce the overall article content." +msgctxt "views.view.content:display:data_export_1:display_title" +msgid "Data export (CSV)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_button:label" -msgid "Button" +msgctxt "views.view.user_admin_people:display:data_export_1:display_title" +msgid "Data export (CSV)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_button:description" -msgid "Used to create a button" +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_title" +msgid "Data export (XLSX)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_lead:label" -msgid "Lead" +msgctxt "views.view.content:display:data_export_2:display_title" +msgid "Data export (XLSX)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_lead:description" -msgid "Short text to lead a Title" +msgctxt "views.view.user_admin_people:display:data_export_2:display_title" +msgid "Data export (XLSX)" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:label" -msgid "Background image" +msgctxt "views.view.watchdog:display:default:display_options:fields:timestamp:label" +msgid "Date" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:description" -msgid "Used for the background image on the section" +msgctxt "webform.webform_options.days:category" +msgid "Date and time" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_title:label" -msgid "Title" +msgctxt "webform.webform_options.months:category" +msgid "Date and time" msgstr "" -msgctxt "field.field.paragraph.content_promotion.field_title:description" -msgid "Used for the title" +msgctxt "webform.webform_options.time_zones:category" +msgid "Date and time" msgstr "" -msgctxt "field.field.paragraph.files.field_files:label" -msgid "Files" +msgctxt "field.field.paragraph.timeline_items.field_timeline_date:label" +msgid "Dato" msgstr "" -msgctxt "field.field.paragraph.files.field_files:description" -msgid "Used to reference the files" +msgctxt "field.field.paragraph.timeline_period.field_timeline_date:label" +msgid "Dato" msgstr "" -msgctxt "field.field.paragraph.files.field_title:label" -msgid "Title" +msgctxt "field.field.node.hearing.field_delete_date:label" +msgid "Dato for sletning af høringssvar" msgstr "" -msgctxt "field.field.paragraph.files.field_title:description" -msgid "Used for the title" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:label" +msgid "Dato og tid" msgstr "" -msgctxt "field.field.paragraph.image.field_paragraph_image:label" -msgid "Billede" +msgctxt "webform.webform_options.days:label" +msgid "Days" msgstr "" -msgctxt "field.field.paragraph.info_box.field_content_block_text:label" -msgid "Indhold" +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.info_box.field_paragraph_title:label" -msgid "Overskrift" +msgctxt "field.field.paragraph.link.field_decorative_arrow:label" +msgid "Decorative arrow" msgstr "" -msgctxt "field.field.paragraph.info_box.field_variant:label" -msgid "Variant" +msgctxt "advancedqueue.advancedqueue_queue.default:label" +msgid "Default" msgstr "" -msgctxt "field.field.paragraph.info_box.field_variant:description" -msgid "Used to set the variant style for the info box." +msgctxt "views.view.citizen_proposal_support:display:default:display_title" +msgid "Default" msgstr "" -msgctxt "field.field.paragraph.introduction.field_intro_body:label" -msgid "Introduktion" +msgctxt "views.view.heyloyalty_feed:display:default:display_title" +msgid "Default" msgstr "" -msgctxt "field.field.paragraph.introduction.field_intro_link:label" -msgid "Link" +msgctxt "views.view.media:display:default:display_title" +msgid "Default" msgstr "" -msgctxt "field.field.paragraph.introduction.field_paragraph_title:label" -msgid "Titel" +msgctxt "views.view.search_db:display:default:display_title" +msgid "Default" msgstr "" -msgctxt "field.field.paragraph.link.field_button_variant:label" -msgid "Button variant" +msgctxt "views.view.webform_submissions:description" +msgid "Default webform submissions views." msgstr "" -msgctxt "field.field.paragraph.link.field_decorative_arrow:label" -msgid "Decorative arrow" +msgctxt "webform.settings:settings:default_delete_button_label" +msgid "Delete" msgstr "" -msgctxt "field.field.paragraph.link.field_decorative_arrow:description" -msgid "Whether to show a decorative arrow or not." +msgctxt "system.action.media_delete_action:label" +msgid "Delete media" msgstr "" -msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:on_label" -msgid "On" +msgctxt "system.action.redirect_delete_action:label" +msgid "Delete redirect" msgstr "" -msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:off_label" -msgid "Off" +msgctxt "system.action.webform_submission_delete_action:label" +msgid "Delete submission" msgstr "" -msgctxt "field.field.paragraph.link.field_icon:label" -msgid "Icon" +msgctxt "system.action.webform_delete_action:label" +msgid "Delete webform" msgstr "" -msgctxt "field.field.paragraph.link.field_icon:description" -msgid "Select an icon" +msgctxt "system.site:name" +msgid "Deltag Aarhus – Aarhus kommune" msgstr "" -msgctxt "field.field.paragraph.link.field_link:label" -msgid "Link" +msgctxt "webform.webform_options.education:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.link.field_link:description" -msgid "Select the content to link to" +msgctxt "webform.webform_options.employment_status:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.links_on_a_background_image.field_links_list:label" -msgid "Links list" +msgctxt "webform.webform_options.ethnicity:category" +msgid "Demographic" 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." +msgctxt "webform.webform_options.gender:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:label" -msgid "Background image" +msgctxt "webform.webform_options.industry:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.links_on_a_background_image.field_paragraph_image:description" -msgid "Choose the image to display in the background" +msgctxt "webform.webform_options.marital_status:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.projekt_billede_galleri.field_external_link:label" -msgid "Eksternt link" +msgctxt "webform.webform_options.phone_types:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.projekt_billede_galleri.field_image_gallery:label" -msgid "Billedegalleri" +msgctxt "webform.webform_options.relationship:category" +msgid "Demographic" 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." +msgctxt "webform.webform_options.sex:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.teaser_row.field_content:label" -msgid "Content" +msgctxt "webform.webform_options.sex_icao:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.teaser_row.field_content:description" -msgid "Used to select up to 3 content items to show in the row" +msgctxt "webform.webform_options.titles:category" +msgid "Demographic" msgstr "" -msgctxt "field.field.paragraph.teaser_row.field_paragraph_title:label" -msgid "Titel" +msgctxt "field.field.block_content.aside_contact_info.field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text.field_content_block_text:label" -msgid "Indhold" +msgctxt "field.field.node.hearing.field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text.field_external_link:label" -msgid "Link" +msgctxt "field.field.node.public_meeting.field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:label" -msgid "Abstract" +msgctxt "field.field.user.user.field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:description" -msgid "Used to quickly introduce the overall article content." +msgctxt "views.view.content:display:default:display_options:fields:field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_aside_block:label" -msgid "Aside block" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:field_department:label" +msgid "Department" 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" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:label" -msgid "Body" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" +msgid "Department" msgstr "" -msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:description" -msgid "Used for the body text" +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 "field.field.paragraph.text_aside_blocks_2_column.field_title:label" -msgid "Title" +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 "field.field.paragraph.text_aside_blocks_2_column.field_title:description" -msgid "Used for the title" +msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" +msgid "Der er i øjeblikket @total brugere online." msgstr "" -msgctxt "field.field.paragraph.timeline_items.field_timeline_date:label" -msgid "Dato" +msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." msgstr "" -msgctxt "field.field.paragraph.timeline_items.field_timeline_description:label" -msgid "Beskrivelse" +msgctxt "views.view.content_recent:display:default:display_options:empty:area_text_custom:content" +msgid "Der er intet indhold at vise." msgstr "" -msgctxt "field.field.paragraph.timeline_items.field_timeline_link:label" -msgid "Link" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_items.field_timeline_taxonomy_type:label" -msgid "Type" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_items.field_timeline_title:label" -msgid "Titel" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_date:label" -msgid "Dato" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_description:label" -msgid "Beskrivelse" +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_end_date:label" -msgid "Slutdato" -msgstr "" +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" +msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_link:label" -msgid "Link" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_taxonomy_type:label" -msgid "Type" +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.paragraph.timeline_period.field_timeline_title:label" -msgid "Titel" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.taxonomy_term.area.field_area_id:label" -msgid "Postnummer" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.taxonomy_term.department.field_claim_value:label" -msgid "Claim value" +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" 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." +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.taxonomy_term.timeline_item_types.field_timeline_item_color:label" -msgid "Punktfarve" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.field.user.user.field_department:label" -msgid "Department" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.block_content.field_color:settings:allowed_values:0:label" -msgid "Mint" +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.block_content.field_color:settings:allowed_values:1:label" -msgid "Peach" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.block_content.field_color:settings:allowed_values:2:label" -msgid "Stone" +msgctxt "views.view.media:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_content_state:settings:allowed_values:0:label" -msgid "Kommende" +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_content_state:settings:allowed_values:1:label" -msgid "I gang" +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_content_state:settings:allowed_values:2:label" -msgid "Afsluttet" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_map_type:settings:allowed_values:0:label" -msgid "Septima Widget" +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:0:label" -msgid "Benyt tilmeldingssystem" +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_signup_selection:settings:allowed_values:1:label" -msgid "Benyt ikke tilmeldingssystem" +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.node.field_teaser_color:settings:format" -msgid "#HEXHEX" +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Desc" msgstr "" -msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:0:label" -msgid "Petroleum" +msgctxt "advancedqueue.advancedqueue_queue.hoeringsportal_deskpro:label" +msgid "Deskpro" msgstr "" -msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:1:label" -msgid "White" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_deskpro:label" +msgid "Deskpro" msgstr "" -msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:0:label" -msgid "Danger" +msgctxt "views.view.video_display:description" +msgid "Display a video attached to a node" msgstr "" -msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:1:label" -msgid "Warning" +msgctxt "views.view.webform_submissions:display:embed_default:display_options:display_description" +msgid "Display submissions." msgstr "" -msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:2:label" -msgid "Info" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" msgstr "" -msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:3:label" -msgid "Petroleum light" +msgctxt "views.view.webform_submissions:display:default:display_options:header:result:content" +msgid "Displaying @start - @end of @total" msgstr "" -msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:4:label" -msgid "Petroleum" +msgctxt "views.view.search_db:display:default:display_options:header:result:content" +msgid "Displaying @start–@end of @total" msgstr "" -msgctxt "field.storage.taxonomy_term.field_timeline_item_color:settings:format" -msgid "#HEXHEX" +msgctxt "media.type.document:label" +msgid "Document" msgstr "" -msgctxt "filter.format.citizen_proposal_content:name" -msgid "Citizen proposal content" +msgctxt "field.field.node.hearing.field_media_document:label" +msgid "Dokumenter" msgstr "" -msgctxt "filter.format.email_html:name" -msgid "Email HTML" +msgctxt "field.field.node.public_meeting.field_media_document:label" +msgid "Dokumenter" msgstr "" -msgctxt "filter.format.filtered_html:name" -msgid "Filtered html" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:in_draft:label" +msgid "Draft" msgstr "" -msgctxt "filter.format.hearing_description:name" -msgid "Hearing description" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:in_draft:label" +msgid "Draft" msgstr "" -msgctxt "filter.format.plain_text:name" -msgid "Ren tekst" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:in_draft:label" +msgid "Draft" msgstr "" -msgctxt "image.style.carousel_300x168:label" -msgid "Carousel 576x322" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:in_draft:label" +msgid "Draft" msgstr "" -msgctxt "image.style.crop_thumbnail:label" -msgid "Crop thumbnail" +msgctxt "views.view.authmap:display:default:display_options:fields:uid:label" +msgid "Drupal User ID" msgstr "" -msgctxt "image.style.hero:label" -msgid "Hero (1440w) - Crop" +msgctxt "views.view.authmap:display:default:display_options:fields:name:label" +msgid "Drupal User Name" msgstr "" -msgctxt "image.style.medium:label" -msgid "Mellem (220×220)" +msgctxt "views.view.authmap:display:default:display_options:filters:uid:expose:label" +msgid "Drupal user" msgstr "" -msgctxt "image.style.responsive_large_default:label" -msgid "Responsive large default" +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_email:label" +msgid "E-mail" msgstr "" -msgctxt "image.style.responsive_large_default_x2:label" -msgid "Responsive large default (x2)" +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:user_email:label" +msgid "E-mail" msgstr "" -msgctxt "image.style.responsive_medium_default:label" -msgid "Responsive medium default" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_email:label" +msgid "E-mail" msgstr "" -msgctxt "image.style.responsive_medium_default_x2:label" -msgid "Responsive medium default (x2)" +msgctxt "webform.webform_options.education:label" +msgid "Education" msgstr "" -msgctxt "image.style.responsive_small_default:label" -msgid "Responsive small default" +msgctxt "field.field.paragraph.projekt_billede_galleri.field_external_link:label" +msgid "Eksternt link" msgstr "" -msgctxt "image.style.responsive_small_default_x2:label" -msgid "Responsive small default (x2)" +msgctxt "field.field.block_content.aside_contact_info.field_email:label" +msgid "Email" msgstr "" -msgctxt "image.style.responsive_small_teaser:label" -msgid "Responsive small teaser" +msgctxt "field.field.node.citizen_proposal.field_author_email:label" +msgid "Email" msgstr "" -msgctxt "image.style.responsive_small_teaser_x2:label" -msgid "Responsive small teaser (x2)" +msgctxt "filter.format.email_html:name" +msgid "Email HTML" msgstr "" -msgctxt "image.style.responsive_xsmall_default:label" -msgid "Responsive xsmall default" +msgctxt "field.field.node.public_meeting.field_email_address:label" +msgid "Email address" msgstr "" -msgctxt "image.style.responsive_xsmall_default_x2:label" -msgid "Responsive xsmall default (x2)" +msgctxt "views.view.webform_submissions:display:embed_administer:display_title" +msgid "Embed: Administer" msgstr "" -msgctxt "image.style.responsive_xsmall_teaser:label" -msgid "Responsive xsmall teaser" +msgctxt "views.view.webform_submissions:display:embed_default:display_title" +msgid "Embed: Default" msgstr "" -msgctxt "image.style.responsive_xsmall_teaser_x2:label" -msgid "Responsive xsmall teaser (x2)" +msgctxt "views.view.webform_submissions:display:embed_manage:display_title" +msgid "Embed: Manage" msgstr "" -msgctxt "image.style.thumbnail:label" -msgid "Thumbnail (100×100)" +msgctxt "views.view.webform_submissions:display:embed_review:display_title" +msgid "Embed: Review" msgstr "" -msgctxt "image.style.vector_image:label" -msgid "Vector image" +msgctxt "field.field.node.hearing.field_tags:label" +msgid "Emneord" msgstr "" -msgctxt "language.entity.da:label" -msgid "Danish" +msgctxt "taxonomy.vocabulary.tags:name" +msgid "Emneord" msgstr "" -msgctxt "language.entity.und:label" -msgid "Ikke angivet" +msgctxt "webform.webform_options.employment_status:label" +msgid "Employment status" msgstr "" -msgctxt "language.entity.zxx:label" -msgid "ikke relevant" +msgctxt "user.mail:register_admin_created:subject" +msgid "En administrator har oprettet en konto til dig på [site:name]" msgstr "" -msgctxt "media.type.document:label" -msgid "Document" +msgctxt "node.type.public_meeting:description" +msgid "En begivenhed" msgstr "" -msgctxt "media.type.document:description" -msgid "A document to be stored in the media library" +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 "media.type.icon:label" -msgid "Icon" +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 "media.type.icon:description" -msgid "Vector images used to display icons" +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 "media.type.image:label" -msgid "Billede" +msgctxt "paragraphs.paragraphs_type.content_block:description" +msgid "En indholdsblok til visning af kort text med mulighed for at tilknytte et billede." msgstr "" -msgctxt "media.type.image:description" -msgid "An image to be stored in the media library" +msgctxt "views.view.all_meetings:description" +msgid "En liste af alle begivenheder" msgstr "" -msgctxt "node.type.citizen_proposal:name" -msgid "Borgerforslag" +msgctxt "views.view.latest_public_meetings:description" +msgid "En liste af alle begivenheder" msgstr "" -msgctxt "node.type.citizen_proposal:description" -msgid "Et borgerforslag" +msgctxt "views.view.all_citizen_proposals:description" +msgid "En liste af alle høringer" msgstr "" -msgctxt "node.type.hearing:name" -msgid "Høring" +msgctxt "views.view.all_hearings:description" +msgid "En liste af alle høringer" 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." +msgctxt "views.view.latest_citizen_proposals:description" +msgid "En liste af alle høringer" msgstr "" -msgctxt "node.type.landing_page:name" -msgid "Oversigtsside" +msgctxt "views.view.latest_hearings:description" +msgid "En liste af alle høringer" msgstr "" -msgctxt "node.type.landing_page:description" -msgid "" -"Oversigtsside til opsamling af alt indhold indenfor en " -"kategori.\r\n" -"Eksempler: Forside, Projekter, Høringer." +msgctxt "views.view.all_projects:description" +msgid "En liste af alle projekter" msgstr "" -msgctxt "node.type.page_map:name" -msgid "Kort" +msgctxt "views.view.latest_projects:description" +msgid "En liste af alle projekter" msgstr "" -msgctxt "node.type.page_map:description" -msgid "Side med et stort kort" +msgctxt "taxonomy.vocabulary.tags:description" +msgid "En liste af emneord der kan bruges til at tagge indhold" msgstr "" -msgctxt "node.type.project:name" -msgid "Projekttidslinje" +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." +msgid "En projekttidslinje der samler relaterede borgermøder og initiativer i en kronologi. Det er muligt at tilføje ekstra tidslinje punkter." msgstr "" -msgctxt "node.type.project_main_page:name" -msgid "Project" +msgctxt "paragraphs.paragraphs_type.teaser_row:description" +msgid "En række teasers der linker til andet indhold" msgstr "" -msgctxt "node.type.project_main_page:description" -msgid "Use this to create a project page" +msgctxt "paragraphs.paragraphs_type.introduction:description" +msgid "En simpel introduktionstekst med mulighed for header og link" msgstr "" -msgctxt "node.type.project_page:name" -msgid "Project page" +msgctxt "taxonomy.vocabulary.media_library:description" +msgid "En taksonomi der kan bruges til at strukturere mediebiblioteket" 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. " +msgctxt "field.field.node.public_meeting.field_email_address:description" +msgid "Enter the contact email address." msgstr "" -msgctxt "node.type.public_meeting:name" -msgid "Begivenhed" +msgctxt "views.view.files:display:page_2:display_options:fields:entity_label:label" +msgid "Entity" msgstr "" -msgctxt "node.type.public_meeting:description" -msgid "En begivenhed" +msgctxt "views.view.form_list_active_projects:display:entity_reference_1:display_title" +msgid "Entity Reference" msgstr "" -msgctxt "node.type.static_page:name" -msgid "Statisk side" +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_title" +msgid "Entity browser" msgstr "" -msgctxt "node.type.static_page:description" -msgid "" -"Bruges til indhold der sjældent ændres.\r\n" -"Eksempler: Cookie " -"politik, \"Om\" side, FAQ" +msgctxt "views.view.files:display:page_2:display_options:fields:type:label" +msgid "Entity-type" msgstr "" -msgctxt "paragraphs.paragraphs_type.content_block:label" -msgid "Indholdsblok" +msgctxt "paragraphs.paragraphs_type.image:description" +msgid "Et billede til visning i fuld bredde" msgstr "" -msgctxt "paragraphs.paragraphs_type.content_block:description" -msgid "" -"En indholdsblok til visning af kort text med mulighed for at tilknytte " -"et billede." +msgctxt "node.type.citizen_proposal:description" +msgid "Et borgerforslag" msgstr "" -msgctxt "paragraphs.paragraphs_type.content_list:label" -msgid "Indholdsliste" +msgctxt "paragraphs.paragraphs_type.text:description" +msgid "Et tekstfelt med en wysiwyg editor" msgstr "" -msgctxt "paragraphs.paragraphs_type.content_list:description" -msgid "" -"Vælg en færdigbygget liste af indholdselementer der automatisk " -"opdateres med nyt indhold." +msgctxt "webform.webform_options.ethnicity:label" +msgid "Ethnicity" msgstr "" -msgctxt "paragraphs.paragraphs_type.content_promotion:label" -msgid "Content promotion" +msgctxt "views.view.authmap:display:page:display_options:menu:title" +msgid "External" 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." +msgctxt "views.view.authmap:display:default:display_options:title" +msgid "External authentication links" msgstr "" -msgctxt "paragraphs.paragraphs_type.files:label" -msgid "Files" +msgctxt "views.view.authmap:label" +msgid "External authentication links" msgstr "" -msgctxt "paragraphs.paragraphs_type.files:description" -msgid "Used to upload files that the user can download" +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 "paragraphs.paragraphs_type.image:label" -msgid "Billede" +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.image:description" -msgid "Et billede til visning i fuld bredde" +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.info_box:label" -msgid "Infoboks" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.introduction:label" -msgid "Introduktion" +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.introduction:description" -msgid "En simpel introduktionstekst med mulighed for header og link" +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.link:label" -msgid "Link" +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.link:description" -msgid "Link with possibility of showing an icon and/or a decorative arrow." +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.links_on_a_background_image:label" -msgid "Links on a background image" +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" 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." +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:label" -msgid "Initiativ billede galleri" +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:description" -msgid "" -"Mulighed for visning af billeder galleri og link til ekstern " -"billedeservice.\r\n" -"For at få den bedste visuelle effekt bør der " -"vises minimum et billede og gerne flere." +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_desc_label" +msgid "Faldende" msgstr "" -msgctxt "paragraphs.paragraphs_type.teaser_row:label" -msgid "Teaser række" +msgctxt "block.block.stark_local_tasks:settings:label" +msgid "Faner" msgstr "" -msgctxt "paragraphs.paragraphs_type.teaser_row:description" -msgid "En række teasers der linker til andet indhold" +msgctxt "views.view.taxonomy_term:display:feed_1:display_title" +msgid "Feed" msgstr "" -msgctxt "paragraphs.paragraphs_type.text:label" -msgid "Tekst" +msgctxt "views.view.files:display:default:display_options:fields:fid:label" +msgid "Fid" msgstr "" -msgctxt "paragraphs.paragraphs_type.text:description" -msgid "Et tekstfelt med en wysiwyg editor" +msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" +msgid "File browser" msgstr "" -msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:label" -msgid "Text + aside blocks (2 column)" +msgctxt "field.field.media.document.field_itk_media_file_upload:label" +msgid "File upload" 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." +msgctxt "views.view.files:display:page_2:display_options:title" +msgid "File usage" msgstr "" -msgctxt "paragraphs.paragraphs_type.timeline_items:label" -msgid "Tidslinje punkter" +msgctxt "views.view.files:display:page_2:display_title" +msgid "File usage" msgstr "" -msgctxt "paragraphs.paragraphs_type.timeline_items:description" -msgid "Tilføj ekstra punkter til tidslinjen" +msgctxt "views.view.files:display:default:display_options:title" +msgid "Filer" msgstr "" -msgctxt "paragraphs.paragraphs_type.timeline_period:label" -msgid "Tidslinje periode" +msgctxt "views.view.files:display:page_1:display_options:menu:title" +msgid "Filer" msgstr "" -msgctxt "paragraphs.paragraphs_type.timeline_period:description" -msgid "Tilføj perioder til tidslinjen" +msgctxt "views.view.files:label" +msgid "Filer" msgstr "" -msgctxt "pathauto.pattern.hearings:label" -msgid "Hearings" +msgctxt "field.field.paragraph.files.field_files:label" +msgid "Files" msgstr "" -msgctxt "pathauto.pattern.initiative:label" -msgid "Initiative" +msgctxt "paragraphs.paragraphs_type.files:label" +msgid "Files" msgstr "" -msgctxt "pathauto.pattern.overview_page:label" -msgid "Overview page" +msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" +msgid "Filnavn" msgstr "" -msgctxt "pathauto.pattern.project:label" -msgid "Project" +msgctxt "views.view.files:display:page_1:display_title" +msgid "Filoversigt" msgstr "" -msgctxt "pathauto.pattern.static_page:label" -msgid "Static page" +msgctxt "views.view.content:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "responsive_image.styles.content_image:label" -msgid "Content image" +msgctxt "views.view.files:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "responsive_image.styles.teaser_image:label" -msgid "Teaser image" +msgctxt "views.view.media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "search_api.index.content:name" -msgid "content" +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "search_api.server.local:name" -msgid "local" +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_block:label" -msgid "Search Block" +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:submit_button" +msgid "Filter" msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_block:noResultLabel" -msgid "No results found for [search-phrase]. Click to perform full search." +msgctxt "filter.format.filtered_html:name" +msgid "Filtered html" msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_block:moreResultsLabel" -msgid "View all results for [search-phrase]." +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:submit_button" +msgid "Filtrér" msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:label" -msgid "Search Form (content tab)" +msgctxt "views.view.block_content:description" +msgid "Find og håndtér brugerdefinerede blokke." msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:noResultLabel" -msgid "No results found containing the word [search-phrase]." +msgctxt "views.view.files:description" +msgid "Find og håndtér filer." msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:moreResultsLabel" -msgid "View all results containg term [search-phrase]." +msgctxt "views.view.content:display:page_1:display_options:tab_options:description" +msgid "Find og håndtér indhold" msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:label" -msgid "Search Form (users tab)" +msgctxt "views.view.content:description" +msgid "Find og håndtér indhold." msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:noResultLabel" -msgid "No users found for [search-phrase]. Click to perform full search." +msgctxt "views.view.user_admin_people:description" +msgid "Find og håndtér personer som bruger dit site." msgstr "" -msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:moreResultsLabel" -msgid "View all users for [search-phrase]." +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 "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_subject:value" -msgid "Tak for dit borgerforslag på [site:url]" +msgctxt "field.field.node.public_meeting.field_first_meeting_time:label" +msgid "First meeting time" msgstr "" -msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_theme:theme" -msgid "_active_fallback" +msgctxt "system.action.user_unblock_user_action:label" +msgid "Fjern blokering af de(n) valgte bruger(e)" 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" -"

    " +msgctxt "system.action.node_unpromote_action:label" +msgid "Fjern indhold fra forsiden" msgstr "" -msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_subject:value" -msgid "Test email from [site:name]" +msgctxt "system.action.node_make_unsticky_action:label" +msgid "Fjern klæbrighed" 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" -"{% for message in messages %}\n" -"
    • {{ message " -"}}
    • \n" -"{% endfor %}\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.

    " +msgctxt "views.view.content:display:data_export_1:display_options:fields:name:label" +msgid "Forfatter" msgstr "" -msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_subject:value" -msgid "New release(s) available for {{ site_name }}" +msgctxt "views.view.content:display:data_export_2:display_options:fields:name:label" +msgid "Forfatter" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.cancel_confirm:configuration:email_subject:value" -msgid "Account cancellation request for [user:display-name] at [site:name]" +msgctxt "views.view.content:display:default:display_options:fields:name:label" +msgid "Forfatter" 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.

    " +msgctxt "views.view.glossary:display:default:display_options:fields:name:label" +msgid "Forfatter" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.password_reset:configuration:email_subject:value" -msgid "Replacement login information for [user:display-name] at [site:name]" +msgctxt "core.base_field_override.node.hearing.promote:label" +msgid "Forfremmet til forside" 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.

    " +msgctxt "core.base_field_override.node.landing_page.promote:label" +msgid "Forfremmet til forside" 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]" +msgctxt "core.base_field_override.node.project.promote:label" +msgid "Forfremmet til forside" 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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " +msgctxt "core.base_field_override.node.static_page.promote:label" +msgid "Forfremmet til forside" 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]" +msgctxt "views.view.form_list_active_projects:label" +msgid "Form list - Active projects" 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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " +msgctxt "views.view.archive:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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)" +msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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.

    " +msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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)" +msgctxt "views.view.files:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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.

    " +msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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])" +msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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" -"
      \n" -"
    • username: [user:account-name]
    • \n" -" " -"
    • password: Your password
    • \n" -"
    " +msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_subject:value" -msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:offset_label" +msgid "Forskydning" 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.

    " +msgctxt "field.field.node.citizen_proposal.field_proposal:label" +msgid "Forslaget" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_skip_sending:message" -msgid "Notification disabled in settings" +msgctxt "views.view.redirect:display:default:display_options:fields:redirect_source__path:label" +msgid "Fra" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_subject:value" -msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_source__path:expose:label" +msgid "Fra" 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.

    " +msgctxt "core.entity_view_mode.block_content.full:label" +msgid "Fuld" msgstr "" -msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_skip_sending:message" -msgid "Notification disabled in settings" +msgctxt "core.entity_view_mode.node.full:label" +msgid "Fuldt indhold" 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]" +msgctxt "core.entity_view_mode.media.full:label" +msgid "Full content" 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" -"
      \n" -"
    • username: " -"[user:account-name]
    • \n" -"
    • password: Your password
    • \n" -"
    " +msgctxt "views.view.itk_media:display:default:display_options:fields:operations:label" +msgid "Funktioner" msgstr "" -msgctxt "symfony_mailer.mailer_policy._:configuration:email_theme:theme" -msgid "_active_fallback" +msgctxt "system.action.node_save_action:label" +msgid "Gem indhold" msgstr "" -msgctxt "symfony_mailer.mailer_transport.sendmail:label" -msgid "Sendmail" +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "symfony_mailer.mailer_transport.smtp:label" -msgid "SMTP" +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.media_delete_action:label" -msgid "Delete media" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.media_publish_action:label" -msgid "Publish media" +msgctxt "views.view.content:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.media_save_action:label" -msgid "Save media" +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.media_unpublish_action:label" -msgid "Unpublish media" +msgctxt "views.view.files:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_make_sticky_action:label" -msgid "Gør indhold klæbrigt" +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_make_unsticky_action:label" -msgid "Fjern klæbrighed" +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_promote_action:label" -msgid "Vis indhold på forsiden" +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_publish_action:label" -msgid "Udgiv indhold" +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_save_action:label" -msgid "Gem indhold" +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Gendan" msgstr "" -msgctxt "system.action.node_unpromote_action:label" -msgid "Fjern indhold fra forsiden" +msgctxt "webform.webform_options.gender:label" +msgid "Gender" msgstr "" -msgctxt "system.action.node_unpublish_action:label" -msgid "Afpubliceer indhold" +msgctxt "webform.webform_options.size:category" +msgid "General" msgstr "" -msgctxt "system.action.pathauto_update_alias_node:label" -msgid "Opdatér alternativ URL" +msgctxt "webform.webform_options.yes_no:category" +msgid "General" msgstr "" -msgctxt "system.action.pathauto_update_alias_user:label" -msgid "Opdatér alternativ URL" +msgctxt "core.entity_view_mode.paragraph.preview:label" +msgid "Gennemse" msgstr "" -msgctxt "system.action.redirect_delete_action:label" -msgid "Delete redirect" +msgctxt "webform.settings:settings:default_preview_label" +msgid "Gennemse" msgstr "" -msgctxt "system.action.user_add_role_action.administrator:label" -msgid "Add the Administrator role to the selected user(s)" +msgctxt "webform.settings:settings:default_preview_next_button_label" +msgid "Gennemse" msgstr "" -msgctxt "system.action.user_add_role_action.citizen_proposal_editor:label" -msgid "Add the Citizen proposal editor role to the selected user(s)" +msgctxt "webform.webform_options.country_codes:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_add_role_action.hearing_editor:label" -msgid "Add the hearing editor role to the selected user(s)" +msgctxt "webform.webform_options.country_names:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_add_role_action.project_editor:label" -msgid "Add the Project editor role to the selected user(s)" +msgctxt "webform.webform_options.province_codes:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_add_role_action.public_meeting_editor:label" -msgid "Add the public meeting editor role to the selected user(s)" +msgctxt "webform.webform_options.province_names:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_block_user_action:label" -msgid "Blokér de(n) valgte bruger(e)" +msgctxt "webform.webform_options.state_codes:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_cancel_user_action:label" -msgid "Opsig de valgte brugerkonti" +msgctxt "webform.webform_options.state_names:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_remove_role_action.administrator:label" -msgid "Remove the Administrator role from the selected user(s)" +msgctxt "webform.webform_options.state_province_codes:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_remove_role_action.citizen_proposal_editor:label" -msgid "Remove the Citizen proposal editor role from the selected user(s)" +msgctxt "webform.webform_options.state_province_names:category" +msgid "Geographic" msgstr "" -msgctxt "system.action.user_remove_role_action.hearing_editor:label" -msgid "Remove the hearing editor role from the selected user(s)" +msgctxt "core.entity_form_display.node.citizen_proposal.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" msgstr "" -msgctxt "system.action.user_remove_role_action.project_editor:label" -msgid "Remove the Project editor role from the selected user(s)" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_getorganized:label" +msgid "GetOrganized" msgstr "" -msgctxt "system.action.user_remove_role_action.public_meeting_editor:label" -msgid "Remove the public meeting editor role from the selected user(s)" +msgctxt "field.field.node.citizen_proposal.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" msgstr "" -msgctxt "system.action.user_unblock_user_action:label" -msgid "Fjern blokering af de(n) valgte bruger(e)" +msgctxt "field.field.node.hearing.field_getorganized_case_id:label" +msgid "GetOrganized-sags-ID" msgstr "" -msgctxt "system.action.webform_archive_action:label" -msgid "Archive webform" +msgctxt "user.role.authenticated:label" +msgid "Godkendt bruger" msgstr "" -msgctxt "system.action.webform_close_action:label" -msgid "Close webform" +msgctxt "system.action.node_make_sticky_action:label" +msgid "Gør indhold klæbrigt" msgstr "" -msgctxt "system.action.webform_delete_action:label" -msgid "Delete webform" +msgctxt "core.date_format.hoeringsportal_time:pattern" +msgid "H:i" msgstr "" -msgctxt "system.action.webform_open_action:label" -msgid "Open webform" +msgctxt "core.date_format.html_date:label" +msgid "HTML Date" msgstr "" -msgctxt "system.action.webform_submission_delete_action:label" -msgid "Delete submission" +msgctxt "core.date_format.html_datetime:label" +msgid "HTML Datetime" msgstr "" -msgctxt "system.action.webform_submission_make_lock_action:label" -msgid "Lock submission" +msgctxt "core.date_format.html_month:label" +msgid "HTML Month" msgstr "" -msgctxt "system.action.webform_submission_make_sticky_action:label" -msgid "Star/flag submission" +msgctxt "core.date_format.html_time:label" +msgid "HTML Time" msgstr "" -msgctxt "system.action.webform_submission_make_unlock_action:label" -msgid "Unlock submission" +msgctxt "core.date_format.html_week:label" +msgid "HTML Week" msgstr "" -msgctxt "system.action.webform_submission_make_unsticky_action:label" -msgid "Unstar/unflag submission" +msgctxt "core.date_format.html_year:label" +msgid "HTML Year" msgstr "" -msgctxt "system.action.webform_unarchive_action:label" -msgid "Restore webform" +msgctxt "core.date_format.html_yearless_date:label" +msgid "HTML Yearless date" msgstr "" -msgctxt "system.maintenance:message" -msgid "" -"Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din " -"tålmodighed." +msgctxt "views.view.content:display:data_export_1:display_options:fields:node_bulk_form:action_title" +msgid "Handling" msgstr "" -msgctxt "system.menu.account:label" -msgid "Brugerkontomenu" +msgctxt "views.view.content:display:data_export_2:display_options:fields:node_bulk_form:action_title" +msgid "Handling" msgstr "" -msgctxt "system.menu.account:description" -msgid "Links relateret til den aktive brugerkonto" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" msgstr "" -msgctxt "system.menu.admin:label" -msgid "Administration" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:action_title" +msgid "Handling" msgstr "" -msgctxt "system.menu.admin:description" -msgid "Links til administrative opgaver" +msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" +msgid "Handlinger" msgstr "" -msgctxt "system.menu.footer:label" -msgid "Sidefod" +msgctxt "views.view.content:display:data_export_1:display_options:fields:operations:label" +msgid "Handlinger" msgstr "" -msgctxt "system.menu.footer:description" -msgid "Links til informationen om sitet" +msgctxt "views.view.content:display:data_export_2:display_options:fields:operations:label" +msgid "Handlinger" msgstr "" -msgctxt "system.menu.main:label" -msgid "Primær navigation" +msgctxt "views.view.content:display:default:display_options:fields:operations:label" +msgid "Handlinger" msgstr "" -msgctxt "system.menu.main:description" -msgid "Links til sitets sektioner" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:operations:label" +msgid "Handlinger" msgstr "" -msgctxt "system.menu.secondary-navigation:label" -msgid "Sekundær navigation" +msgctxt "filter.format.hearing_description:name" +msgid "Hearing description" msgstr "" -msgctxt "system.menu.secondary-navigation:description" -msgid "Lille menu til højre i header" +msgctxt "core.entity_view_mode.node.hearing_ticket_add:label" +msgid "Hearing ticket add" msgstr "" -msgctxt "system.menu.tools:label" -msgid "Værktøjer" +msgctxt "core.entity_view_mode.node.hearing_ticket_view:label" +msgid "Hearing ticket view" msgstr "" -msgctxt "system.menu.tools:description" -msgid "Bruger værktøjslinks, som typisk tilføjes af moduler" +msgctxt "pathauto.pattern.hearings:label" +msgid "Hearings" msgstr "" -msgctxt "system.site:name" -msgid "Deltag Aarhus – Aarhus kommune" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:title" +msgid "Hearings related to project" msgstr "" -msgctxt "taxonomy.vocabulary.area:name" -msgid "Område" +msgctxt "views.view.hearings_related_to_project:label" +msgid "Hearings related to project" msgstr "" -msgctxt "taxonomy.vocabulary.area:description" -msgid "" -"Området vises i teaservisningen og kan bruges som filter på " -"oversigter" +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 "taxonomy.vocabulary.department:name" -msgid "Afdeling" +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 "taxonomy.vocabulary.department:description" -msgid "Afdeling (Magistrat) for brugere og indhold" +msgctxt "image.style.hero:label" +msgid "Hero (1440w) - Crop" msgstr "" -msgctxt "taxonomy.vocabulary.hearing_type:name" -msgid "Høringstype" +msgctxt "views.view.heyloyalty_feed:label" +msgid "Heyloyalty feed" msgstr "" -msgctxt "taxonomy.vocabulary.hearing_type:description" -msgid "" -"De forskellige høringstyper der kan vælges imellem når en høring " -"oprettes" +msgctxt "webform.settings:settings:default_wizard_toggle_hide_label" +msgid "Hide all" msgstr "" -msgctxt "taxonomy.vocabulary.media_library:name" -msgid "Medie bibliotek" +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 "taxonomy.vocabulary.media_library:description" -msgid "En taksonomi der kan bruges til at strukturere mediebiblioteket" +msgctxt "webform.webform_options.phone_types:options" +msgid "" +"Home: Home\n" +"Office: Office\n" +"Cell: Cell\n" msgstr "" -msgctxt "taxonomy.vocabulary.project_categories:name" -msgid "Project categories" +msgctxt "views.view.who_s_online:display:default:display_options:title" +msgid "Hvem er online" msgstr "" -msgctxt "taxonomy.vocabulary.project_categories:description" -msgid "Used to categorize project pages" +msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" +msgid "Hvem er online" msgstr "" -msgctxt "taxonomy.vocabulary.tags:name" -msgid "Emneord" +msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" +msgid "Hvem er online" msgstr "" -msgctxt "taxonomy.vocabulary.tags:description" -msgid "En liste af emneord der kan bruges til at tagge indhold" +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Hvilken status?" msgstr "" -msgctxt "taxonomy.vocabulary.timeline_item_types:name" -msgid "Tidslinje punkttyper" +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Hvor i kommunen?" msgstr "" -msgctxt "taxonomy.vocabulary.timeline_item_types:description" -msgid "Typer af tidslinje punkter" +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" +msgid "Håndtér brugerkonti, roller og tilladelser." msgstr "" -msgctxt "taxonomy.vocabulary.type:name" -msgid "Type" +msgctxt "field.field.media.image.field_itk_media_height:label" +msgid "Højde" msgstr "" -msgctxt "user.mail:cancel_confirm:subject" -msgid "" -"Anmodning om opsigelse af konto for [user:display-name] på " -"[site:name]" +msgctxt "node.type.hearing:name" +msgid "Høring" msgstr "" -msgctxt "user.mail:cancel_confirm:body" -msgid "" -"[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" +msgctxt "field.field.node.hearing.field_content_state:description" +msgid "Høringens status." msgstr "" -msgctxt "user.mail:password_reset:subject" -msgid "Ny login-information for [user:display-name] på [site:name]" +msgctxt "core.date_format.hoeringsportal_day_only:label" +msgid "Høringsportalen – dag" msgstr "" -msgctxt "user.mail:password_reset:body" -msgid "" -"[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" +msgctxt "core.date_format.hoeringsportal_month_short:label" +msgid "Høringsportalen – måned kort" msgstr "" -msgctxt "user.mail:register_admin_created:subject" -msgid "En administrator har oprettet en konto til dig på [site:name]" +msgctxt "core.date_format.hoeringsportal_date:label" +msgid "Høringsportalen – dato" msgstr "" -msgctxt "user.mail:register_admin_created:body" -msgid "" -"[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" +msgctxt "core.date_format.hoeringsportal_date_long:label" +msgid "Høringsportalen – dato (lang)" msgstr "" -msgctxt "user.mail:register_no_approval_required:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgctxt "core.date_format.hoeringsportal_datetime:label" +msgid "Høringsportalen – dato og tid" msgstr "" -msgctxt "user.mail:register_no_approval_required:body" -msgid "" -"[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" +msgctxt "core.date_format.hoeringsportal_time:label" +msgid "Høringsportalen – tid" msgstr "" -msgctxt "user.mail:register_pending_approval:subject" -msgid "" -"Kontoinformation for [user:display-name] på [site:name] (afventer " -"godkendelse af administrator)" +msgctxt "user.role.hearing_editor:label" +msgid "Høringsredaktør" msgstr "" -msgctxt "user.mail:register_pending_approval:body" -msgid "" -"[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" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:label" +msgid "Høringssvar" msgstr "" -msgctxt "user.mail:register_pending_approval_admin:subject" -msgid "" -"Kontoinformation for [user:display-name] på [site:name] (afventer " -"godkendelse af administrator)" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_hearing_ticket_system:label" +msgid "Høringssvarsystem" msgstr "" -msgctxt "user.mail:register_pending_approval_admin:body" -msgid "" -"[user:display-name] has applied for an " -"account.\r\n" -"\r\n" -"[user:edit-url]" +msgctxt "taxonomy.vocabulary.hearing_type:name" +msgid "Høringstype" msgstr "" -msgctxt "user.mail:status_activated:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" +msgctxt "field.storage.node.field_content_state:settings:allowed_values:1:label" +msgid "I gang" msgstr "" -msgctxt "user.mail:status_activated:body" -msgid "" -"[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" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:remote_addr:label" +msgid "IP address" msgstr "" -msgctxt "user.mail:status_blocked:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:remote_addr:label" +msgid "IP address" msgstr "" -msgctxt "user.mail:status_blocked:body" -msgid "" -"[user:display-name],\r\n" -"\r\n" -"Your account on [site:name] has been " -"blocked.\r\n" -"\r\n" -"-- [site:name] team" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:remote_addr:label" +msgid "IP address" msgstr "" -msgctxt "user.mail:status_canceled:subject" -msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:remote_addr:label" +msgid "IP address" msgstr "" -msgctxt "user.mail:status_canceled:body" -msgid "" -"[user:display-name],\r\n" -"\r\n" -"Your account on [site:name] has been " -"canceled.\r\n" -"\r\n" -"-- [site:name] team" +msgctxt "block.block.itkadminlinks:settings:label" +msgid "ITK Admin links" msgstr "" -msgctxt "user.role.administrator:label" -msgid "Administrator" +msgctxt "views.view.itk_media:label" +msgid "ITK Media" msgstr "" -msgctxt "user.role.anonymous:label" -msgid "Anonym bruger" +msgctxt "entity_browser.browser.itk_document_browser:label" +msgid "ITK document browser" msgstr "" -msgctxt "user.role.authenticated:label" -msgid "Godkendt bruger" +msgctxt "entity_browser.browser.itk_icon_browser:label" +msgid "ITK icon browser" msgstr "" -msgctxt "user.role.citizen_proposal_editor:label" -msgid "Borgerforslagsredaktør" +msgctxt "entity_browser.browser.itk_image_browser:label" +msgid "ITK image browser" msgstr "" -msgctxt "user.role.hearing_editor:label" -msgid "Høringsredaktør" +msgctxt "views.view.itk_media_browser:label" +msgid "ITK media browser" msgstr "" -msgctxt "user.role.project_editor:label" -msgid "Projektredaktør" +msgctxt "field.field.paragraph.link.field_icon:label" +msgid "Icon" msgstr "" -msgctxt "user.role.public_meeting_editor:label" -msgid "Begivenhedsredaktør" +msgctxt "media.type.icon:label" +msgid "Icon" msgstr "" -msgctxt "user.settings:anonymous" -msgid "Anonym" +msgctxt "views.view.watchdog:display:default:display_options:fields:nothing:admin_label" +msgid "Icon" msgstr "" -msgctxt "views.view.advancedqueue_jobs:label" -msgid "Advanced queue jobs" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_title" +msgid "Icon browser" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_title" -msgid "Master" +msgctxt "language.entity.und:label" +msgid "Ikke angivet" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:title" -msgid "Jobs" +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:job_id:label" -msgid "Job ID" +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:alter:text" -msgid "Number of retries: {{ num_retries }}" +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Ikke udgivet" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:format_plural_string" -msgid "1\003@count" +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Ikke udgivet" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:label" -msgid "State" +msgctxt "core.entity_form_mode.media.image:label" +msgid "Image" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:alter:text" -msgid "" -"{{ state }}\n" -"\n" -"{{ num_retries }}" +msgctxt "field.field.block_content.aside_contact_info.field_image:label" +msgid "Image" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:type:label" -msgid "Job type" +msgctxt "field.field.media.icon.field_itk_media_image_upload:label" +msgid "Image" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:payload:label" -msgid "Payload" +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_title" +msgid "Image browser" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:available:label" -msgid "Available date" +msgctxt "field.field.media.image.field_itk_media_image_upload:label" +msgid "Image upload" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:label" -msgid "Processed date" +msgctxt "field.field.node.public_meeting.field_section:label" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:alter:text" -msgid "" -"{{ processed }}\n" -"\n" -"{{ message }}" +msgctxt "field.field.paragraph.content_block.field_content_block_text:label" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:label" -msgid "Høringssvar" +msgctxt "field.field.paragraph.info_box.field_content_block_text:label" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:alter:text" -msgid "Message: {{ message }}" +msgctxt "field.field.paragraph.text.field_content_block_text:label" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" -msgid "Operations" +msgctxt "views.view.content:display:default:display_options:title" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.content:display:page_1:display_options:menu:title" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.content:display:page_1:display_options:tab_options:title" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.content:label" +msgid "Indhold" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.taxonomy_term:description" +msgid "Indhold som er knyttet til en bestemt term." msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "field.field.node.landing_page.field_section:label" +msgid "Indholds region" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "field.field.node.static_page.field_section:label" +msgid "Indholds region" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "paragraphs.paragraphs_type.content_block:label" +msgid "Indholdsblok" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "field.field.paragraph.content_list.field_content_list:label" +msgid "Indholdsliste" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" -msgid "No jobs found" +msgctxt "paragraphs.paragraphs_type.content_list:label" +msgid "Indholdsliste" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:arguments:queue_id:exception:title" -msgid "All" +msgctxt "views.view.content:display:data_export_1:display_options:fields:type:label" +msgid "Indholdstype" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" -msgid "Job type" +msgctxt "views.view.content:display:data_export_2:display_options:fields:type:label" +msgid "Indholdstype" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:state:expose:label" -msgid "State" +msgctxt "views.view.content:display:default:display_options:fields:type:label" +msgid "Indholdstype" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:available:expose:label" -msgid "Available date" +msgctxt "views.view.content:display:default:display_options:filters:type:expose:label" +msgid "Indholdstype" msgstr "" -msgctxt "views.view.advancedqueue_jobs:display:page_1:display_title" -msgid "Side" +msgctxt "crop.type.content_display:label" +msgid "Indholdsvisning" msgstr "" -msgctxt "views.view.all_citizen_proposals:label" -msgid "Alle borgerforslag" +msgctxt "webform.settings:settings:default_form_required_label" +msgid "Indicates required field" msgstr "" -msgctxt "views.view.all_citizen_proposals:description" -msgid "En liste af alle høringer" +msgctxt "field.field.node.hearing.field_getorganized_case_id:description" +msgid "Indtast GetOrganized-sags-ID for høringen." msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_title" -msgid "Master" +msgctxt "field.field.node.hearing.field_edoc_casefile_id:description" +msgid "Indtast eDoc-sagsnr. for høringen." msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgctxt "webform.webform_options.industry:label" +msgid "Industry" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:last" -msgid "Last »" +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:2:label" +msgid "Info" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "paragraphs.paragraphs_type.info_box:label" +msgid "Infoboks" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" +msgid "Information om brug af filen {{ arguments.fid }}" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_information:label" +msgid "Informationer" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +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.all_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér" +msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" +msgid "Ingen tilgængelige filer." msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "paragraphs.paragraphs_type.projekt_billede_galleri:label" +msgid "Initiativ billede galleri" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "pathauto.pattern.initiative:label" +msgid "Initiative" 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" +msgctxt "field.field.paragraph.introduction.field_intro_body:label" +msgid "Introduktion" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "paragraphs.paragraphs_type.introduction:label" +msgid "Introduktion" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:in_draft:expose:label" +msgid "Is draft" 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" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:in_draft:expose:label" +msgid "Is draft" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:in_draft:expose:label" +msgid "Is draft" msgstr "" -msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" -msgid "" -"Afstemning start Desc|Nyeste\r\n" -"Afstemning start Asc|Ældste" +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:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +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_citizen_proposals:display:default:display_options:exposed_form:options:bef:filter:field_content_state_value:advanced:rewrite:filter_rewrite_values" -msgid "" -"- Any -|Alle\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afstemning " -"afsluttet\r\n" -"I gang|Afstemning aktiv\r\n" -"Kommende|" +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_citizen_proposals:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +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_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" -msgid "Afstemning start" +msgctxt "views.view.all_projects: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:filters:field_content_state_value:expose:label" -msgid "Status" +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_label" +msgid "Items per page" msgstr "" -msgctxt "views.view.all_hearings:label" -msgid "Alle høringer" +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.all_hearings:description" -msgid "En liste af alle høringer" +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.all_hearings:display:default:display_title" -msgid "Master" +msgctxt "views.view.heyloyalty_feed: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:tags:first" -msgid "« First" +msgctxt "views.view.itk_media: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:tags:last" -msgid "Last »" +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.all_hearings:display:default:display_options:pager:options:expose:items_per_page_label" +msgctxt "views.view.media: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_options_all_label" -msgid "- All -" +msgctxt "views.view.redirect: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:offset_label" -msgid "Offset" +msgctxt "views.view.search_db: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:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.video_display: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:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.watchdog: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:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.webform_submissions: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:exposed_form:options:sort_asc_label" -msgid "Asc" +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.all_hearings:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:job_id:label" +msgid "Job ID" 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" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:type:label" +msgid "Job type" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:type:expose:label" +msgid "Job type" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:title" +msgid "Jobs" 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" +msgctxt "field.storage.node.field_content_state:settings:allowed_values:0:label" +msgid "Kommende" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:1:title" +msgid "Kommende" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" -msgid "" -"Svarfrist Asc|Først kommende\r\n" -"Svarfrist Desc|Sidst kommende" +msgctxt "core.entity_view_mode.user.compact:label" +msgid "Kompakt" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" 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\r\n" -"- Enhver -|Vis alle områder" +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_contact:label" +msgid "Kontakt" 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\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afsluttede\r\n" -"I " -"gang|Aktive" +msgctxt "field.field.node.hearing.field_contact:label" +msgid "Kontakt" 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\r\n" -"- Enhver -|Vælg type" +msgctxt "field.field.node.public_meeting.field_contact:label" +msgid "Kontakt" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "user.mail:register_pending_approval:subject" +msgid "Kontoinformation for [user:display-name] på [site:name] (afventer godkendelse af administrator)" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:sorts:field_reply_deadline_value:expose:label" -msgid "Svarfrist" +msgctxt "user.mail:register_pending_approval_admin:subject" +msgid "Kontoinformation for [user:display-name] på [site:name] (afventer godkendelse af administrator)" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:filters:field_area_target_id:expose:label" -msgid "Område" +msgctxt "user.mail:register_no_approval_required:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:filters:field_content_state_value:expose:label" -msgid "Status" +msgctxt "user.mail:status_blocked:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" msgstr "" -msgctxt "views.view.all_hearings:display:default:display_options:filters:field_type_target_id:expose:label" -msgid "Type" +msgctxt "user.mail:status_activated:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" msgstr "" -msgctxt "views.view.all_meetings:label" -msgid "Alle begivenheder" +msgctxt "user.mail:status_canceled:subject" +msgid "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" msgstr "" -msgctxt "views.view.all_meetings:description" -msgid "En liste af alle begivenheder" +msgctxt "node.type.page_map:name" +msgid "Kort" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_title" -msgid "Master" +msgctxt "field.field.node.hearing.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsviningen" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgctxt "field.field.node.public_meeting.field_teaser:description" +msgid "Kort tekst der vises i teasers og i toppen af indholdsvisningen" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:last" -msgid "Last »" +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 "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +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 "views.view.all_meetings:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "field.field.node.hearing.field_map:label" +msgid "Kortvisning" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "field.field.node.hearing.field_map_display:label" +msgid "Kortvisning" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "field.field.node.public_meeting.field_map:label" +msgid "Kortvisning" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.media:display:default:display_options:filters:langcode:expose:label" +msgid "Language" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Ønsket rækkefølge?" +msgctxt "webform.webform_options.languages:category" +msgid "Language" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "webform.webform_options.translations:category" +msgid "Language" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "webform.webform_options.languages:label" +msgid "Languages" 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" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:label" +msgid "Last access" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:label" +msgid "Last access" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:last" +msgid "Last »" 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" +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:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:last" +msgid "Last »" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" -msgid "" -"Svarfrist Asc|Først kommende\r\n" -"Svarfrist Desc|Sidst kommende" +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:last" +msgid "Last »" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" +msgid "Last »" 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\r\n" -"- Enhver -|Vis alle områder" +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:last" +msgid "Last »" 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\r\n" -"Afsluttet|Afsluttede\r\n" -"Kommende|Aktive" +msgctxt "field.field.paragraph.content_promotion.field_lead:label" +msgid "Lead" 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\r\n" -"- Enhver -|Vælg type" +msgctxt "webform.webform_options.likert_agreement:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "webform.webform_options.likert_comparison:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" -msgid "Svarfrist" +msgctxt "webform.webform_options.likert_importance:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_area_target_id:expose:label" -msgid "Hvor i kommunen?" +msgctxt "webform.webform_options.likert_quality:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:expose:label" -msgid "Hvilken status?" +msgctxt "webform.webform_options.likert_satisfaction:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:label" -msgid "Content state (field_content_state)" +msgctxt "webform.webform_options.likert_ten_scale:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:1:title" -msgid "Kommende" +msgctxt "webform.webform_options.likert_would_you:category" +msgid "Likert" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_content_state_value:group_info:group_items:2:title" -msgid "Afsluttet" +msgctxt "webform.webform_options.likert_agreement:label" +msgid "Likert: Agreement" msgstr "" -msgctxt "views.view.all_meetings:display:default:display_options:filters:field_type_target_id:expose:label" -msgid "Type" +msgctxt "webform.webform_options.likert_comparison:label" +msgid "Likert: Comparison" msgstr "" -msgctxt "views.view.all_projects:label" -msgid "Alle projekter" +msgctxt "webform.webform_options.likert_importance:label" +msgid "Likert: Importance" msgstr "" -msgctxt "views.view.all_projects:description" -msgid "En liste af alle projekter" +msgctxt "webform.webform_options.likert_quality:label" +msgid "Likert: Quality" msgstr "" -msgctxt "views.view.all_projects:display:default:display_title" -msgid "Master" +msgctxt "webform.webform_options.likert_satisfaction:label" +msgid "Likert: Satisfaction" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgctxt "webform.webform_options.likert_ten_scale:label" +msgid "Likert: Ten Scale" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:last" -msgid "Last »" +msgctxt "webform.webform_options.likert_would_you:label" +msgid "Likert: Would You" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "system.menu.secondary-navigation:description" +msgid "Lille menu til højre i header" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "field.field.block_content.aside_link_box.field_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "field.field.paragraph.introduction.field_intro_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "field.field.paragraph.link.field_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "field.field.paragraph.text.field_external_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "field.field.paragraph.timeline_items.field_timeline_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "field.field.paragraph.timeline_period.field_timeline_link:label" +msgid "Link" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "paragraphs.paragraphs_type.link:label" +msgid "Link" 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" +msgctxt "paragraphs.paragraphs_type.link:description" +msgid "Link with possibility of showing an icon and/or a decorative arrow." msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:title" +msgid "Links for {{ arguments.provider_field }}" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Avancerede indstillinger" +msgctxt "field.field.paragraph.links_on_a_background_image.field_links_list:label" +msgid "Links list" 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" +msgctxt "paragraphs.paragraphs_type.links_on_a_background_image:label" +msgid "Links on a background image" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "system.menu.account:description" +msgid "Links relateret til den aktive brugerkonto" 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\r\n" -"- Enhver -|Vælg område" +msgctxt "system.menu.admin:description" +msgid "Links til administrative opgaver" 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\r\n" -"- Enhver -|Alle" +msgctxt "system.menu.footer:description" +msgid "Links til informationen om sitet" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "system.menu.main:description" +msgid "Links til sitets sektioner" msgstr "" -msgctxt "views.view.all_projects:display:default:display_options:filters:field_area_target_id:expose:label" -msgid "Område" +msgctxt "core.entity_view_mode.node.list_display:label" +msgid "List display" msgstr "" -msgctxt "views.view.archive:label" -msgid "Arkiv" +msgctxt "views.view.redirect:description" +msgid "List of redirects" msgstr "" -msgctxt "views.view.archive:description" -msgid "Alt indhold, efter måned." +msgctxt "field.field.paragraph.content_list.field_list_title:label" +msgid "Liste titel" msgstr "" -msgctxt "views.view.archive:display:default:display_title" -msgid "Master" +msgctxt "system.action.webform_submission_make_lock_action:label" +msgid "Lock submission" msgstr "" -msgctxt "views.view.archive:display:default:display_options:title" -msgid "Månedsarkiv" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:locked:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:locked:expose:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:locked:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:locked:expose:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:locked:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:locked:expose:label" +msgid "Locked" msgstr "" -msgctxt "views.view.archive:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "field.field.node.hearing.field_lokalplaner:label" +msgid "Lokalplaner" msgstr "" -msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "core.date_format.hoeringsportal_month_short:pattern" +msgid "M" msgstr "" -msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "webform.webform_options.sex_icao:options" +msgid "" +"M: Male\n" +"F: Female\n" +"X: Unspecified\n" msgstr "" -msgctxt "views.view.archive:display:default:display_options:arguments:created_year_month:title" -msgid "{{ arguments.created_year_month }}" +msgctxt "views.view.files:display:default:display_options:fields:filemime:label" +msgid "MIME type" msgstr "" -msgctxt "views.view.archive:display:block_1:display_title" -msgid "Blok" +msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" +msgid "MIME type" msgstr "" -msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" -msgid "{{ arguments.created_year_month }}" +msgctxt "block.block.claro_content:settings:label" +msgid "Main page content" msgstr "" -msgctxt "views.view.archive:display:page_1:display_title" -msgid "Side" +msgctxt "block.block.mainpagecontent:settings:label" +msgid "Main page content" msgstr "" -msgctxt "views.view.authmap:label" -msgid "External authentication links" +msgctxt "webform.webform_options.sex:options" +msgid "" +"Male: Male\n" +"Female: Female\n" msgstr "" -msgctxt "views.view.authmap:display:default:display_title" -msgid "Master" +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.authmap:display:default:display_options:title" -msgid "External authentication links" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:display_description" +msgid "Manage submissions." msgstr "" -msgctxt "views.view.authmap:display:default:display_options:fields:authname:label" -msgid "Authentication Name" +msgctxt "field.field.node.page_map.field_map_configuration:label" +msgid "Map configuration" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:fields:uid:label" -msgid "Drupal User ID" +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 "views.view.authmap:display:default:display_options:fields:uid:format_plural_string" -msgid "1\003@count" +msgctxt "field.field.node.page_map.field_map_type:label" +msgid "Map type" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:fields:name:label" -msgid "Drupal User Name" +msgctxt "webform.webform_options.marital_status:label" +msgid "Marital status" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:label" -msgid "delete" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:user_bulk_form:label" +msgid "Masseopdatering" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:fields:delete_link:text" -msgid "delete" +msgctxt "views.view.advancedqueue_jobs:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.all_citizen_proposals:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.all_hearings:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.all_meetings:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.all_projects:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.archive:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.authmap:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.block_content:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:empty:area_text_custom:content" -msgid "No links (from Authentication name to Drupal user) found." +msgctxt "views.view.content:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:exception:title" -msgid "All" +msgctxt "views.view.content_recent:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:arguments:provider_field:title" -msgid "Links for {{ arguments.provider_field }}" +msgctxt "views.view.files:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:filters:authname:expose:label" -msgid "Authentication name" +msgctxt "views.view.form_list_active_projects:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:default:display_options:filters:uid:expose:label" -msgid "Drupal user" +msgctxt "views.view.glossary:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:page:display_title" -msgid "Page" +msgctxt "views.view.hearings_related_to_project:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.authmap:display:page:display_options:menu:title" -msgid "External" +msgctxt "views.view.itk_media:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:label" -msgid "Nodes Autocompletion Callbacks" +msgctxt "views.view.itk_media_browser:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:description" -msgid "" -"This vew is used to store default nodes autocompletion callbacks for " -"Search Autocomplete module." +msgctxt "views.view.latest_citizen_proposals:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_title" +msgctxt "views.view.latest_hearings:display:default:display_title" msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:fields:nothing:alter:text" -msgid "by {{ name }} | {{ created }}" +msgctxt "views.view.latest_projects:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:next" -msgid "næste ›" -msgstr "" - -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:previous" -msgid "‹ forrige" +msgctxt "views.view.latest_public_meetings:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:first" -msgid "« første" +msgctxt "views.view.nearest_hearings:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:last" -msgid "sidste »" +msgctxt "views.view.redirect:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.taxonomy_term:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.timeline_related_items:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.user_admin_people:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.video_display:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.watchdog:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.webform_submissions:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.who_s_new:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.who_s_online:display:default:display_title" +msgid "Master" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:filters:combine:expose:label" -msgid "Search" +msgctxt "core.entity_view_mode.media.material_display:label" +msgid "Material display" msgstr "" -msgctxt "views.view.autocompletion_callbacks_nodes:display:nodes_autocompletion_callback:display_title" -msgid "Nodes Autocompletion Callback" +msgctxt "views.view.media:display:default:display_options:title" +msgid "Media" msgstr "" -msgctxt "views.view.block_content:label" -msgid "Brugerdefineret blokbibliotek" +msgctxt "views.view.media:display:media_page_list:display_options:menu:title" +msgid "Media" msgstr "" -msgctxt "views.view.block_content:description" -msgid "Find og håndtér brugerdefinerede blokke." +msgctxt "views.view.media:display:media_page_list:display_title" +msgid "Media" msgstr "" -msgctxt "views.view.block_content:display:default:display_title" -msgid "Master" +msgctxt "views.view.media:label" +msgid "Media" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:title" -msgid "Brugerdefineret blokbibliotek" +msgctxt "views.view.media:display:default:display_options:fields:name:label" +msgid "Media name" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:fields:info:label" -msgid "Beskrivelse" +msgctxt "views.view.media:display:default:display_options:filters:name:expose:label" +msgid "Media name" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:fields:type:label" -msgid "Bloktype" +msgctxt "taxonomy.vocabulary.media_library:name" +msgid "Medie bibliotek" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" -msgid "Opdateret" +msgctxt "views.view.itk_media:display:default:display_options:fields:name:label" +msgid "Medie navn" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:fields:operations:label" -msgid "Handlinger" +msgctxt "views.view.itk_media:display:default:display_options:filters:name:expose:label" +msgid "Medie navn" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" +msgctxt "views.view.itk_media:display:default:display_options:filters:bundle:expose:label" +msgid "Medie type" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" -msgid "‹ Forrige" +msgctxt "views.view.itk_media:display:default:display_options:title" +msgid "Medier" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "views.view.itk_media:display:media_page_list:display_options:menu:title" +msgid "Medier" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "views.view.itk_media:display:media_page_list:display_title" +msgid "Medier" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "crop.type.medium_squared:label" +msgid "Medium kvadratisk" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" +msgid "Medlem i" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "image.style.medium:label" +msgid "Mellem (220×220)" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:label" +msgid "Member for" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:label" +msgid "Member for" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "views.view.content_recent:display:default:display_options:use_more_text" +msgid "Mere" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:empty:area_text_custom:content" -msgid "There are no custom blocks available." +msgctxt "views.view.watchdog:display:default:display_options:fields:message:label" +msgid "Message" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:filters:info:expose:label" -msgid "Beskrivelse" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:message:alter:text" +msgid "Message: {{ message }}" msgstr "" -msgctxt "views.view.block_content:display:default:display_options:filters:type:expose:label" -msgid "Bloktype" +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Midlertidig" msgstr "" -msgctxt "views.view.block_content:display:page_1:display_title" -msgid "Side" +msgctxt "field.field.media.document.field_itk_media_mime_type:label" +msgid "Mime type" msgstr "" -msgctxt "views.view.block_content:display:page_1:display_options:menu:title" -msgid "Brugerdefineret blokbibliotek" +msgctxt "field.field.media.image.field_itk_media_mime_type:label" +msgid "Mime type" msgstr "" -msgctxt "views.view.block_content:display:page_1:display_options:menu:description" -msgid "Create and edit block content." +msgctxt "field.storage.block_content.field_color:settings:allowed_values:0:label" +msgid "Mint" msgstr "" -msgctxt "views.view.citizen_proposal_support:label" -msgid "Citizen proposal support" +msgctxt "webform.webform_options.titles:options" +msgid "" +"Miss: Miss\n" +"Ms: Ms\n" +"Mr: Mr\n" +"Mrs: Mrs\n" +"Dr: Dr\n" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_title" -msgid "Default" +msgctxt "webform.webform_options.months:label" +msgid "Months" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:title" -msgid "Citizen proposal support" +msgctxt "webform.settings:element:default_more_title" +msgid "More" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_name:label" -msgid "Navn" +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.citizen_proposal_support:display:default:display_options:fields:user_email:label" -msgid "E-mail" +msgctxt "views.view.archive:display:default:display_options:title" +msgid "Månedsarkiv" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:label" -msgid "Tillad e-mail" +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Mærkat" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:alter:text" -msgid "{{ allow_email ? 'ja' }}" +msgctxt "views.view.itk_media:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" +msgid "Mærkat" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:format_plural_string" -msgid "1\003@count" +msgctxt "field.field.node.public_meeting.field_last_meeting_time:label" +msgid "Mødedato" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:label" -msgid "Dato og tid" +msgctxt "webform.settings:settings:dialog_options:narrow:title" +msgid "Narrow" 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') }}" +msgctxt "field.field.node.citizen_proposal.field_author_name:label" +msgid "Navn" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:created:format_plural_string" -msgid "1\003@count" +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:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +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:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:user_name:label" +msgid "Navn" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "views.view.files:display:default:display_options:fields:filename:label" +msgid "Navn" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:name_1:label" +msgid "Navn" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:name_1:label" +msgid "Navn" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" +msgid "Navn eller e-mail indeholder" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "views.view.nearest_hearings:display:default:display_options:title" +msgid "Nearest hearings" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "views.view.nearest_hearings:label" +msgid "Nearest hearings" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:arguments:node_id:exception:title" -msgid "All" +msgctxt "symfony_mailer.mailer_policy.update.status_notify:configuration:email_subject:value" +msgid "New release(s) available for {{ site_name }}" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:default:display_options:header:result:content" -msgid "Displaying @start - @end of @total" +msgctxt "webform.settings:settings:default_confirmation_message" +msgid "New submission added to [webform:title]." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_title" -msgid "Data export (CSV)" +msgctxt "webform.settings:settings:default_wizard_next_button_label" +msgid "Next >" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_name:label" -msgid "Navn" +msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" +msgid "Next ›" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:user_email:label" -msgid "E-mail" +msgctxt "views.view.itk_media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:label" -msgid "Tillad e-mail" +msgctxt "views.view.media:display:default:display_options:empty:area_text_custom:content" +msgid "No content available." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:alter:text" -msgid "{{ allow_email ? 1 }}" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:empty:area_text_custom:content" +msgid "No jobs found" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:format_plural_string" -msgid "1\003@count" +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.citizen_proposal_support:display:data_export_2:display_title" -msgid "Data export (XLSX)" +msgctxt "views.view.watchdog:display:default:display_options:empty:area:admin_label" +msgid "No log messages available." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:user_name:label" -msgid "Navn" +msgctxt "views.view.watchdog:display:default:display_options:empty:area:content" +msgid "No log messages available." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:user_email:label" -msgid "E-mail" +msgctxt "webform.settings:settings:default_limit_total_message" +msgid "No more submissions are permitted." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:label" -msgid "Tillad e-mail" +msgctxt "webform.settings:settings:default_limit_user_message" +msgid "No more submissions are permitted." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:alter:text" -msgid "{{ allow_email ? 1 }}" +msgctxt "views.view.search_db:display:default:display_options:empty:display_link:label" +msgid "No results" msgstr "" -msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:format_plural_string" -msgid "1\003@count" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:noResultLabel" +msgid "No results found containing the word [search-phrase]." msgstr "" -msgctxt "views.view.citizen_proposal_support:display:page_1:display_title" -msgid "Page" +msgctxt "search_autocomplete.autocompletion_configuration.search_block:noResultLabel" +msgid "No results found for [search-phrase]. Click to perform full search." 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.

    " +msgctxt "views.view.webform_submissions:display:default:display_options:empty:area_text_custom:content" +msgid "No submissions available." msgstr "" -msgctxt "views.view.content:label" -msgid "Indhold" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:noResultLabel" +msgid "No users found for [search-phrase]. Click to perform full search." msgstr "" -msgctxt "views.view.content:description" -msgid "Find og håndtér indhold." +msgctxt "core.entity_view_mode.media.node_form_display:label" +msgid "Node form display" msgstr "" -msgctxt "views.view.content:display:default:display_title" -msgid "Master" +msgctxt "views.view.autocompletion_callbacks_nodes:display:nodes_autocompletion_callback:display_title" +msgid "Nodes Autocompletion Callback" msgstr "" -msgctxt "views.view.content:display:default:display_options:title" -msgid "Indhold" +msgctxt "views.view.autocompletion_callbacks_nodes:label" +msgid "Nodes Autocompletion Callbacks" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:title:label" -msgid "Titel" +msgctxt "webform.settings:settings:dialog_options:normal:title" +msgid "Normal" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:type:label" -msgid "Indholdstype" +msgctxt "symfony_mailer.mailer_policy.user.status_blocked:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:field_department:label" -msgid "Department" +msgctxt "symfony_mailer.mailer_policy.user.status_canceled:configuration:email_skip_sending:message" +msgid "Notification disabled in settings" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:name:label" -msgid "Forfatter" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:status:label" -msgid "Status" +msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Nulstil søgning" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Ikke udgivet" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:num_retries:alter:text" +msgid "Number of retries: {{ num_retries }}" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Udgivet" +msgctxt "user.mail:password_reset:subject" +msgid "Ny login-information for [user:display-name] på [site:name]" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:changed:label" -msgid "Opdateret" +msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" +msgid "Nye brugere" msgstr "" -msgctxt "views.view.content:display:default:display_options:fields:operations:label" -msgid "Handlinger" +msgctxt "views.view.who_s_new:display:block_1:display_title" +msgid "Nye brugere" msgstr "" -msgctxt "views.view.content:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" +msgctxt "views.view.who_s_new:display:default:display_options:title" +msgid "Nye brugere" msgstr "" -msgctxt "views.view.content:display:default:display_options:pager:options:tags:previous" -msgid "‹ Forrige" +msgctxt "views.view.who_s_new:label" +msgid "Nye brugere" msgstr "" -msgctxt "views.view.content:display:default:display_options:pager:options:tags:first" -msgid "« Første" +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:last" -msgid "Sidste »" +msgctxt "views.view.content:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" msgstr "" -msgctxt "views.view.content:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" +msgctxt "views.view.files:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" msgstr "" -msgctxt "views.view.content:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:next" +msgid "Næste ›" msgstr "" -msgctxt "views.view.content:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" msgstr "" -msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:next" +msgid "Næste ›" msgstr "" -msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:empty:area_text_custom:content" -msgid "Der er intet indhold at vise." +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" -msgid "Titel" +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:type:expose:label" -msgid "Indholdstype" +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:status:expose:label" -msgid "Status" +msgctxt "field.field.node.landing_page.field_show_page_title:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:status:group_info:label" -msgid "Publiceringsstatus" +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:off_label" +msgid "Off" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Udgivet" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Ikke udgivet" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:default:display_options:filters:langcode:expose:label" -msgid "Sprog" +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_title" -msgid "Data export (CSV)" +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:node_bulk_form:action_title" -msgid "Handling" +msgctxt "views.view.all_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:title:label" -msgid "Titel" +msgctxt "views.view.authmap:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:type:label" -msgid "Indholdstype" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:name:label" -msgid "Forfatter" +msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:status:label" -msgid "Status" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_false" -msgid "Ikke udgivet" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_true" -msgid "Udgivet" +msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:changed:label" -msgid "Opdateret" +msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_1:display_options:fields:operations:label" -msgid "Handlinger" +msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_title" -msgid "Data export (XLSX)" +msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:node_bulk_form:action_title" -msgid "Handling" +msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:title:label" -msgid "Titel" +msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:type:label" -msgid "Indholdstype" +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:offset_label" +msgid "Offset" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:name:label" -msgid "Forfatter" +msgctxt "field.field.node.hearing.field_area:label" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:status:label" -msgid "Status" +msgctxt "field.field.node.project_main_page.field_area:label" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_false" -msgid "Ikke udgivet" +msgctxt "field.field.node.public_meeting.field_area:label" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_true" -msgid "Udgivet" +msgctxt "taxonomy.vocabulary.area:name" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:changed:label" -msgid "Opdateret" +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:data_export_2:display_options:fields:operations:label" -msgid "Handlinger" +msgctxt "views.view.all_projects:display:default:display_options:filters:field_area_target_id:expose:label" +msgid "Område" msgstr "" -msgctxt "views.view.content:display:page_1:display_title" -msgid "Side" +msgctxt "taxonomy.vocabulary.area:description" +msgid "Området vises i teaservisningen og kan bruges som filter på oversigter" msgstr "" -msgctxt "views.view.content:display:page_1:display_options:menu:title" -msgid "Indhold" +msgctxt "core.base_field_override.node.citizen_proposal.promote:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content:display:page_1:display_options:tab_options:title" -msgid "Indhold" +msgctxt "core.base_field_override.node.citizen_proposal.status:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content:display:page_1:display_options:tab_options:description" -msgid "Find og håndtér indhold" +msgctxt "field.field.node.citizen_proposal.field_author_allow_email:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content_recent:label" -msgid "Seneste indhold" +msgctxt "field.field.node.citizen_proposal.field_author_email_display:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content_recent:description" -msgid "Seneste indhold." -msgstr "" - -msgctxt "views.view.content_recent:display:default:display_title" -msgid "Master" +msgctxt "field.field.node.landing_page.field_show_page_title:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:title" -msgid "Seneste indhold" +msgctxt "field.field.paragraph.link.field_decorative_arrow:settings:on_label" +msgid "On" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgctxt "views.view.block_content:display:default:display_options:fields:changed:label" +msgid "Opdateret" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "views.view.content:display:data_export_1:display_options:fields:changed:label" +msgid "Opdateret" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "views.view.content:display:data_export_2:display_options:fields:changed:label" +msgid "Opdateret" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "views.view.content:display:default:display_options:fields:changed:label" +msgid "Opdateret" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "views.view.itk_media:display:default:display_options:fields:changed:label" +msgid "Opdateret" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:empty:area_text_custom:content" -msgid "Der er intet indhold at vise." +msgctxt "system.action.pathauto_update_alias_node:label" +msgid "Opdatér alternativ URL" msgstr "" -msgctxt "views.view.content_recent:display:default:display_options:use_more_text" -msgid "Mere" +msgctxt "system.action.pathauto_update_alias_user:label" +msgid "Opdatér alternativ URL" msgstr "" -msgctxt "views.view.content_recent:display:block_1:display_title" -msgid "Blok" +msgctxt "system.action.webform_open_action:label" +msgid "Open webform" msgstr "" -msgctxt "views.view.files:label" -msgid "Filer" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:operations:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:description" -msgid "Find og håndtér filer." +msgctxt "views.view.media:display:default:display_options:fields:operations:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_title" -msgid "Master" +msgctxt "views.view.watchdog:display:default:display_options:fields:link:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:title" -msgid "Filer" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:fid:label" -msgid "Fid" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:operations:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:filename:label" -msgid "Navn" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:filemime:label" -msgid "MIME type" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:filesize:label" -msgid "Størrelse" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:label" +msgid "Operations" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:status:label" -msgid "Status" +msgctxt "core.entity_form_mode.user.register:label" +msgid "Opret konto" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Midlertidig" +msgctxt "views.view.redirect:display:default:display_options:fields:created:label" +msgid "Oprettet" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Permanent" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:created:label" +msgid "Oprettet" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:created:label" -msgid "Upload-dato" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:created:label" +msgid "Oprettet" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:changed:label" -msgid "Ændringsdato" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:created:label" +msgid "Oprettet" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:count:label" -msgid "Brugt i" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:created:label" +msgid "Oprettet" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" -msgid "admin/content/files/usage/{{ fid }}" +msgctxt "system.action.user_cancel_user_action:label" +msgid "Opsig de valgte brugerkonti" msgstr "" -msgctxt "views.view.files:display:default:display_options:fields:count:format_plural_string" -msgid "1 place\003@count places" +msgctxt "views.view.taxonomy_term:label" +msgid "Ord i ordforråd" msgstr "" -msgctxt "views.view.files:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" +msgctxt "views.view.glossary:display:page_1:display_options:menu:title" +msgid "Ordliste" msgstr "" -msgctxt "views.view.files:display:default:display_options:pager:options:tags:previous" -msgid "‹ Forrige" +msgctxt "views.view.glossary:label" +msgid "Ordliste" msgstr "" -msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "views.view.redirect:display:default:display_options:filters:language:expose:label" +msgid "Originalt sprog" msgstr "" -msgctxt "views.view.files:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:label" +msgid "Overblik" msgstr "" -msgctxt "views.view.files:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:label" +msgid "Overblik" msgstr "" -msgctxt "views.view.files:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:label" +msgid "Overblik" msgstr "" -msgctxt "views.view.files:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "node.type.landing_page:name" +msgid "Oversigtsside" msgstr "" -msgctxt "views.view.files:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "node.type.landing_page:description" +msgid "" +"Oversigtsside til opsamling af alt indhold indenfor en kategori.\n" +"Eksempler: Forside, Projekter, Høringer." msgstr "" -msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "field.field.paragraph.info_box.field_paragraph_title:label" +msgid "Overskrift" msgstr "" -msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "pathauto.pattern.overview_page:label" +msgid "Overview page" msgstr "" -msgctxt "views.view.files:display:default:display_options:empty:area_text_custom:content" -msgid "Ingen tilgængelige filer." +msgctxt "views.view.authmap:display:page:display_title" +msgid "Page" msgstr "" -msgctxt "views.view.files:display:default:display_options:filters:filename:expose:label" -msgid "Filnavn" +msgctxt "views.view.citizen_proposal_support:display:page_1:display_title" +msgid "Page" msgstr "" -msgctxt "views.view.files:display:default:display_options:filters:filemime:expose:label" -msgid "MIME type" +msgctxt "views.view.search_db:display:page_1:display_title" +msgid "Page" msgstr "" -msgctxt "views.view.files:display:default:display_options:filters:status:expose:label" -msgid "Status" +msgctxt "views.view.video_display:display:page_1:display_title" +msgid "Page" msgstr "" -msgctxt "views.view.files:display:page_1:display_title" -msgid "Filoversigt" +msgctxt "views.view.watchdog:display:page:display_title" +msgid "Page" msgstr "" -msgctxt "views.view.files:display:page_1:display_options:menu:title" -msgid "Filer" +msgctxt "block.block.claro_page_title:settings:label" +msgid "Page title" msgstr "" -msgctxt "views.view.files:display:page_2:display_title" -msgid "File usage" +msgctxt "block.block.pagetitle:settings:label" +msgid "Page title" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:title" -msgid "File usage" +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:fields:entity_label:label" -msgid "Entity" +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:fields:type:label" -msgid "Entity-type" +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:fields:module:label" -msgid "Registrerer modul" +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:fields:count:label" -msgid "Brug antal" +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:fields:count:format_plural_string" -msgid "1\003@count" +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:next" -msgid "Næste ›" +msgctxt "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title" +msgid "Paragraph" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:previous" -msgid "‹ Forrige" +msgctxt "core.entity_form_display.node.project.default:content:field_timeline_items:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "core.entity_form_display.node.project_main_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "core.entity_form_display.node.project_page.default:content:field_content_sections:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "core.entity_form_display.node.public_meeting.default:content:field_section:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:arguments:fid:exception:title" -msgid "Alle" +msgctxt "core.entity_form_display.node.static_page.default:content:field_section:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.files:display:page_2:display_options:arguments:fid:title" -msgid "Information om brug af filen {{ arguments.fid }}" +msgctxt "core.entity_form_display.paragraph.content_promotion.default:content:field_button:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.form_list_active_projects:label" -msgid "Form list - Active projects" +msgctxt "core.entity_form_display.paragraph.links_on_a_background_image.default:content:field_links_list:settings:title_plural" +msgid "Paragraphs" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_title" -msgid "Master" +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.form_list_active_projects:display:default:display_options:fields:nid:alter:text" -msgid "(Indholds ID: {{ nid }})" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:payload:label" +msgid "Payload" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "field.storage.block_content.field_color:settings:allowed_values:1:label" +msgid "Peach" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.files:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Permanent" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.user_admin_people:display:default:display_options:title" +msgid "Personer" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" +msgid "Personer" msgstr "" -msgctxt "views.view.form_list_active_projects: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:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.user_admin_people:label" +msgid "Personer" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:0:label" +msgid "Petroleum" msgstr "" -msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:4:label" +msgid "Petroleum" msgstr "" -msgctxt "views.view.form_list_active_projects:display:entity_reference_1:display_title" -msgid "Entity Reference" +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:3:label" +msgid "Petroleum light" msgstr "" -msgctxt "views.view.glossary:label" -msgid "Ordliste" +msgctxt "field.field.node.citizen_proposal.field_author_phone:label" +msgid "Phone" msgstr "" -msgctxt "views.view.glossary:description" -msgid "Alt indhold efter forbogstav." +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:label" +msgid "Phone number" msgstr "" -msgctxt "views.view.glossary:display:default:display_title" -msgid "Master" +msgctxt "webform.webform_options.phone_types:label" +msgid "Phone type" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:fields:title:label" -msgid "Titel" +msgctxt "webform.settings:file:file_private_redirect_message" +msgid "Please login to access the uploaded file." msgstr "" -msgctxt "views.view.glossary:display:default:display_options:fields:name:label" -msgid "Forfatter" +msgctxt "webform.settings:settings:default_form_access_denied_message" +msgid "Please login to access this form." msgstr "" -msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" -msgid "Seneste opdatering" +msgctxt "webform.settings:settings:default_submission_access_denied_message" +msgid "Please login to access this submission." msgstr "" -msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +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 "views.view.glossary:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "captcha.settings:description" +msgid "Please type the text you see in the captcha image to prove you are human" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "field.field.taxonomy_term.area.field_area_id:label" +msgid "Postnummer" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +msgctxt "block.block.claro_local_actions:settings:label" +msgid "Primary admin actions" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "block.block.primaryadminactions:settings:label" +msgid "Primary admin actions" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "block.block.claro_primary_local_tasks:settings:label" +msgid "Primary tabs" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "block.block.tabs:settings:label" +msgid "Primary tabs" msgstr "" -msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "block.block.primaernavigation:settings:label" +msgid "Primær navigation" msgstr "" -msgctxt "views.view.glossary:display:attachment_1:display_title" -msgid "Bilag" +msgctxt "system.menu.main:label" +msgid "Primær navigation" msgstr "" -msgctxt "views.view.glossary:display:page_1:display_title" -msgid "Side" +msgctxt "block.block.stark_local_actions:settings:label" +msgid "Primære adminsitratorhandlinger" msgstr "" -msgctxt "views.view.glossary:display:page_1:display_options:menu:title" -msgid "Ordliste" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:label" +msgid "Processed date" msgstr "" -msgctxt "views.view.hearings_related_to_project:label" -msgid "Hearings related to project" +msgctxt "node.type.project_main_page:name" +msgid "Project" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_title" -msgid "Master" +msgctxt "pathauto.pattern.project:label" +msgid "Project" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:title" -msgid "Hearings related to project" +msgctxt "core.entity_form_display.node.project_main_page.default:third_party_settings:field_group:group_project_area:label" +msgid "Project area" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "taxonomy.vocabulary.project_categories:name" +msgid "Project categories" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "field.field.node.project_main_page.field_project_category:label" +msgid "Project category" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "field.field.node.project_page.field_project_category:label" +msgid "Project category" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "core.entity_view_mode.media.project_gallery_display:label" +msgid "Project gallery display" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "field.field.node.project_main_page.field_project_image:label" +msgid "Project image" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:default:display_options:arguments:nid:exception:title" -msgid "All" +msgctxt "node.type.project_page:name" +msgid "Project page" msgstr "" -msgctxt "views.view.hearings_related_to_project:display:block_1:display_title" -msgid "Block" +msgctxt "field.field.node.project.field_project_start:label" +msgid "Projekt start" msgstr "" -msgctxt "views.view.heyloyalty_feed:label" -msgid "Heyloyalty feed" +msgctxt "field.field.node.project.field_project_finish:label" +msgid "Projektafslutning" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_title" -msgid "Default" +msgctxt "user.role.project_editor:label" +msgid "Projektredaktør" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:view_node:text" -msgid "vis" +msgctxt "field.field.node.hearing.field_project_reference:label" +msgid "Projekttidslinje" 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('/') }}" +msgctxt "field.field.node.public_meeting.field_project_reference:label" +msgid "Projekttidslinje" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:field_itk_media_image_upload:alter:path" -msgid "{{ field_itk_media_image_upload }}" +msgctxt "node.type.project:name" +msgid "Projekttidslinje" 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('/') }}" +msgctxt "core.base_field_override.node.citizen_proposal.promote:label" +msgid "Promoted to front page" 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 %}\r\n" -"Tom\r\n" -"{% else " -"%}\r\n" -"{{ url('')|render }}{{ " -"field_itk_media_image_upload|trim('/') }}{{ " -"field_itk_media_image_upload_1|trim('/') }}\r\n" -"{% endif %}" +msgctxt "webform.webform_options.province_codes:label" +msgid "Province codes" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "webform.webform_options.province_names:label" +msgid "Province names" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:label" +msgid "Publiceringsstatus" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "system.action.media_publish_action:label" +msgid "Publish media" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "core.base_field_override.node.citizen_proposal.status:label" +msgid "Published" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Published" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Published" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" +msgid "Published status" msgstr "" -msgctxt "views.view.heyloyalty_feed:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +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.itk_media:label" -msgid "ITK Media" +msgctxt "views.view.watchdog:description" +msgid "Recent log messages" msgstr "" -msgctxt "views.view.itk_media:display:default:display_title" -msgid "Master" +msgctxt "views.view.watchdog:display:default:display_options:title" +msgid "Recent log messages" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:title" -msgid "Medier" +msgctxt "views.view.redirect:display:default:display_options:title" +msgid "Redirect" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:thumbnail__target_id:label" -msgid "Thumbnail" +msgctxt "views.view.redirect:label" +msgid "Redirect" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:name:label" -msgid "Medie navn" +msgctxt "views.view.files:display:page_2:display_options:fields:module:label" +msgid "Registrerer modul" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_file_upload:alter:text" -msgid "{{ 'Document'|t }}" +msgctxt "webform.webform_options.relationship:label" +msgid "Relationship" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:label" -msgid "Type" +msgctxt "views.view.search_db:display:default:display_options:sorts:search_api_relevance:expose:label" +msgid "Relevance" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:alter:text" -msgid "{{ 'Image'|t }}" +msgctxt "system.action.user_remove_role_action.administrator:label" +msgid "Remove the Administrator role from the selected user(s)" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:changed:label" -msgid "Opdateret" +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 "views.view.itk_media:display:default:display_options:fields:field_itk_media_tag:label" -msgid "Mærkat" +msgctxt "system.action.user_remove_role_action.project_editor:label" +msgid "Remove the Project editor role from the selected user(s)" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:fields:operations:label" -msgid "Funktioner" +msgctxt "system.action.user_remove_role_action.hearing_editor:label" +msgid "Remove the hearing editor role from the selected user(s)" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" +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 "views.view.itk_media:display:default:display_options:pager:options:tags:previous" -msgid "‹ Tidligere" +msgctxt "filter.format.plain_text:name" +msgid "Ren tekst" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:first" -msgid "« Første" +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 "views.view.itk_media:display:default:display_options:pager:options:tags:last" -msgid "Sidste »" +msgctxt "core.date_format.fallback:label" +msgid "Reservedatoformat" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.all_hearings: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:submit_button" -msgid "Filtrér" +msgctxt "views.view.all_meetings: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" +msgctxt "views.view.all_projects: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:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.authmap: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:sort_asc_label" -msgid "Asc" +msgctxt "views.view.autocompletion_callbacks_nodes: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:sort_desc_label" -msgid "Desc" +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:empty:area_text_custom:content" -msgid "No content available." +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:filters:name:expose:label" -msgid "Medie navn" +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:filters:bundle:expose:label" -msgid "Medie type" +msgctxt "views.view.itk_media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" -msgid "Mærkat" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:media_page_list:display_title" -msgid "Medier" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media:display:media_page_list:display_options:menu:title" -msgid "Medier" +msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:label" -msgid "ITK media browser" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_title" -msgid "Master" +msgctxt "views.view.media:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:fields:field_itk_media_tag:label" -msgid "Tag" +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Nulstil søgning" +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "webform.settings:settings:default_reset_button_label" +msgid "Reset" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "image.style.responsive_large_default:label" +msgid "Responsive large default" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "image.style.responsive_large_default_x2:label" +msgid "Responsive large default (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:filters:combine:expose:label" -msgid "Search for documents" +msgctxt "image.style.responsive_medium_default:label" +msgid "Responsive medium default" msgstr "" -msgctxt "views.view.itk_media_browser:display:default:display_options:filters:field_itk_media_tag_target_id:expose:label" -msgid "Tag" +msgctxt "image.style.responsive_medium_default_x2:label" +msgid "Responsive medium default (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_title" -msgid "Entity browser" +msgctxt "image.style.responsive_small_default:label" +msgid "Responsive small default" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:combine:expose:label" -msgid "Search for documents" +msgctxt "image.style.responsive_small_default_x2:label" +msgid "Responsive small default (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:field_itk_media_tag_target_id:expose:label" -msgid "Tag" +msgctxt "image.style.responsive_small_teaser:label" +msgid "Responsive small teaser" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_title" -msgid "Image browser" +msgctxt "image.style.responsive_small_teaser_x2:label" +msgid "Responsive small teaser (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:name_1:label" -msgid "Navn" +msgctxt "image.style.responsive_xsmall_default:label" +msgid "Responsive xsmall default" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:field_itk_media_tag:label" -msgid "Tag" +msgctxt "image.style.responsive_xsmall_default_x2:label" +msgid "Responsive xsmall default (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:combine:expose:label" -msgid "Search for images" +msgctxt "image.style.responsive_xsmall_teaser:label" +msgid "Responsive xsmall teaser" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:field_itk_media_tag_target_id:expose:label" -msgid "Tag" +msgctxt "image.style.responsive_xsmall_teaser_x2:label" +msgid "Responsive xsmall teaser (x2)" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_title" -msgid "Icon browser" +msgctxt "system.action.webform_unarchive_action:label" +msgid "Restore webform" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:name_1:label" -msgid "Navn" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:display_description" +msgid "Review submissions." msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:field_itk_media_tag:label" -msgid "Tag" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:roles_target_id:label" +msgid "Roles" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:combine:expose:label" -msgid "Search for images" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:roles_target_id:label" +msgid "Roles" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:field_itk_media_tag_target_id:expose:label" -msgid "Tag" +msgctxt "views.view.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" +msgid "Rolle" msgstr "" -msgctxt "views.view.itk_media_browser:display:entity_browser_4:display_title" -msgid "File browser" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" +msgid "Roller" msgstr "" -msgctxt "views.view.latest_citizen_proposals:label" -msgid "Seneste borgerforslag" +msgctxt "symfony_mailer.mailer_transport.smtp:label" +msgid "SMTP" msgstr "" -msgctxt "views.view.latest_citizen_proposals:description" -msgid "En liste af alle høringer" +msgctxt "field.field.node.hearing.field_deskpro_agent_email:label" +msgid "Sagsbehandler" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_title" -msgid "Master" +msgctxt "views.view.media:display:default:display_options:filters:status:expose:label" +msgid "Sandt" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "webform.settings:settings:default_draft_button_label" +msgid "Save Draft" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "system.action.media_save_action:label" +msgid "Save media" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:filters:combine:expose:label" +msgid "Search" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.search_db:display:default:display_options:title" +msgid "Search" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "search_autocomplete.autocompletion_configuration.search_block:label" +msgid "Search Block" 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" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:label" +msgid "Search Form (content tab)" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:label" +msgid "Search Form (users tab)" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.itk_media_browser:display:default:display_options:filters:combine:expose:label" +msgid "Search for documents" 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" +msgctxt "views.view.itk_media_browser:display:entity_browser_1:display_options:filters:combine:expose:label" +msgid "Search for documents" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:filters:combine:expose:label" +msgid "Search for images" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" -msgid "" -"Afstemning start Desc|Nyeste\r\n" -"Afstemning start Asc|Ældste" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:filters:combine:expose:label" +msgid "Search for images" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +msgctxt "core.entity_view_mode.node.search_result:label" +msgid "Search result" 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\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afstemning " -"afsluttet\r\n" -"I gang|Afstemning aktiv\r\n" -"Kommende|" +msgctxt "core.entity_form_display.paragraph.link.default:content:field_link:settings:placeholder" +msgid "Search the name of the page" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "block.block.claro_secondary_local_tasks:settings:label" +msgid "Secondary tabs" msgstr "" -msgctxt "views.view.latest_citizen_proposals:display:default:display_options:sorts:field_vote_start_value:expose:label" -msgid "Afstemning start" +msgctxt "block.block.tabs_2:settings:label" +msgid "Secondary tabs" msgstr "" -msgctxt "views.view.latest_hearings:label" -msgid "Seneste høringer" +msgctxt "block.block.sekundaernavigation:settings:label" +msgid "Sekundær navigation" msgstr "" -msgctxt "views.view.latest_hearings:description" -msgid "En liste af alle høringer" +msgctxt "system.menu.secondary-navigation:label" +msgid "Sekundær navigation" msgstr "" -msgctxt "views.view.latest_hearings:display:default:display_title" -msgid "Master" +msgctxt "field.field.paragraph.link.field_icon:description" +msgid "Select an icon" msgstr "" -msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +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.latest_hearings:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +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.latest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +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.latest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +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.latest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +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.latest_hearings:display:default:display_options:exposed_form:options:text_input_required" +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_hearings:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +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_hearings:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +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:bef:general:text_input_required_format" -msgid "basic_html" +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_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:combine_rewrite" -msgid "" -"Svarfrist Asc|Først kommende\r\n" -"Svarfrist Desc|Sidst kommende" +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_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +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.latest_hearings:display:default:display_options:exposed_form:options:bef:filter:field_area_target_id:advanced:rewrite:filter_rewrite_values" -msgid "" -"- Any -|Område\r\n" -"- Enhver -|Vis alle områder" +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 "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\r\n" -"- Enhver -|Alle\r\n" -"Afsluttet|Afsluttede\r\n" -"I " -"gang|Aktive" +msgctxt "field.field.paragraph.link.field_link:description" +msgid "Select the content to link to" 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\r\n" -"- Enhver -|Vælg type" +msgctxt "symfony_mailer.mailer_transport.sendmail:label" +msgid "Sendmail" msgstr "" -msgctxt "views.view.latest_hearings:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "views.view.latest_public_meetings:label" +msgid "Seneste begivenheder" msgstr "" -msgctxt "views.view.latest_projects:label" -msgid "Seneste projekter" +msgctxt "views.view.latest_citizen_proposals:label" +msgid "Seneste borgerforslag" msgstr "" -msgctxt "views.view.latest_projects:description" -msgid "En liste af alle projekter" +msgctxt "views.view.latest_hearings:label" +msgid "Seneste høringer" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_title" -msgid "Master" +msgctxt "views.view.content_recent:display:default:display_options:title" +msgid "Seneste indhold" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.content_recent:label" +msgid "Seneste indhold" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.content_recent:description" +msgid "Seneste indhold." msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.glossary:display:default:display_options:fields:changed:label" +msgid "Seneste opdatering" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.latest_projects:label" +msgid "Seneste projekter" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" +msgid "Seneste tilgang" 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" +msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" +msgid "Seneste tilgang" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "field.storage.node.field_map_type:settings:allowed_values:0:label" +msgid "Septima Widget" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Avancerede indstillinger" +msgctxt "views.view.watchdog:display:default:display_options:fields:severity:label" +msgid "Severity" 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" +msgctxt "views.view.watchdog:display:default:display_options:filters:severity:expose:label" +msgid "Severity" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "webform.webform_options.sex:label" +msgid "Sex" 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\r\n" -"- Enhver -|Vælg område" +msgctxt "webform.webform_options.sex_icao:label" +msgid "Sex - International Civil Aviation Organization (ICAO)" 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\r\n" -"- Enhver -|Alle" +msgctxt "field.field.node.project_main_page.field_short_description:label" +msgid "Short description" msgstr "" -msgctxt "views.view.latest_projects:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "field.field.node.project_main_page.field_short_description:description" +msgid "Short description of the project." msgstr "" -msgctxt "views.view.latest_public_meetings:label" -msgid "Seneste begivenheder" +msgctxt "field.field.paragraph.content_promotion.field_lead:description" +msgid "Short text to lead a Title" msgstr "" -msgctxt "views.view.latest_public_meetings:description" -msgid "En liste af alle begivenheder" +msgctxt "webform.settings:settings:default_wizard_toggle_show_label" +msgid "Show all" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_title" -msgid "Master" +msgctxt "field.field.node.landing_page.field_show_page_title:label" +msgid "Show page title" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.advancedqueue_jobs:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.archive:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Ønsket rækkefølge?" +msgctxt "views.view.block_content:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.content:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.glossary:display:page_1:display_title" +msgid "Side" 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" +msgctxt "views.view.redirect:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "filtered_html" +msgctxt "views.view.taxonomy_term:display:page_1:display_title" +msgid "Side" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.user_admin_people:display:page_1:display_title" +msgid "Side" 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" +msgctxt "node.type.page_map:description" +msgid "Side med et stort kort" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" -msgid "basic_html" +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_sidebar:label" +msgid "Sidebar" 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\r\n" -"Svarfrist Desc|Sidst kommende" +msgctxt "field.field.node.static_page.field_sidebar:label" +msgid "Sidebar" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" -msgid "Sort options" +msgctxt "block.block.sidefod:settings:label" +msgid "Sidefod" 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\r\n" -"- Enhver -|Vis alle områder" +msgctxt "system.menu.footer:label" +msgid "Sidefod" 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\r\n" -"Afsluttet|Afsluttede\r\n" -"Kommende|Aktive" +msgctxt "block.block.stark_page_title:settings:label" +msgid "Sidetitel" 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\r\n" -"- Enhver -|Vælg type" +msgctxt "views.view.content:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:empty:area_text_custom:content" -msgid "" -"" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" msgstr "" -msgctxt "views.view.latest_public_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" -msgid "Svarfrist" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:last" +msgid "Sidste »" msgstr "" -msgctxt "views.view.media:label" -msgid "Media" +msgctxt "webform.webform_options.marital_status:options" +msgid "" +"Single: Single\n" +"Married: Married\n" +"Divorced: Divorced\n" +"Widowed: Widowed\n" msgstr "" -msgctxt "views.view.media:display:default:display_title" -msgid "Default" +msgctxt "block.block.stark_branding:settings:label" +msgid "Site branding" msgstr "" -msgctxt "views.view.media:display:default:display_options:title" -msgid "Media" +msgctxt "field.field.media.document.field_itk_media_size:label" +msgid "Size" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" -msgid "Thumbnail" +msgctxt "webform.webform_options.size:label" +msgid "Size" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:name:label" -msgid "Media name" +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 "views.view.media:display:default:display_options:fields:bundle:label" -msgid "Type" +msgctxt "field.field.node.public_meeting.field_hidden_signup:label" +msgid "Skjul tilmelding" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:uid:label" -msgid "Author" +msgctxt "field.field.node.public_meeting.field_signup_text:description" +msgid "Skriv evt. en uddybende forklaring på tilmeldingsproceduren." msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:label" -msgid "Status" +msgctxt "field.field.paragraph.timeline_period.field_timeline_end_date:label" +msgid "Slutdato" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Unpublished" +msgctxt "field.field.node.public_meeting.field_last_meeting_time_end:label" +msgid "Sluttidspunkt" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Published" +msgctxt "core.entity_view_mode.node.teaser:label" +msgid "Smagsprøve" msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:changed:label" -msgid "Updated" +msgctxt "webform.settings:settings:default_form_close_message" +msgid "Sorry… This form is closed to new submissions." msgstr "" -msgctxt "views.view.media:display:default:display_options:fields:operations:label" -msgid "Operations" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:next" -msgid "Next ›" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" -msgid "‹ Previous" +msgctxt "views.view.all_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgctxt "views.view.authmap:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:tags:last" -msgid "Last »" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.form_list_active_projects:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.hearings_related_to_project:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.heyloyalty_feed: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:submit_button" -msgid "Filter" +msgctxt "views.view.itk_media: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:reset_button_label" -msgid "Reset" +msgctxt "views.view.itk_media_browser: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" +msgctxt "views.view.latest_hearings: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:sort_asc_label" -msgid "Asc" +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:sort_desc_label" -msgid "Desc" +msgctxt "views.view.media:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:empty:area_text_custom:content" -msgid "No content available." +msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:status:expose:label" -msgid "Sandt" +msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:status:group_info:label" -msgid "Published status" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Published" +msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Unpublished" +msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" -msgid "Type" +msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:name:expose:label" -msgid "Media name" +msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sort by" msgstr "" -msgctxt "views.view.media:display:default:display_options:filters:langcode:expose:label" -msgid "Language" +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.media:display:media_page_list:display_title" -msgid "Media" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" msgstr "" -msgctxt "views.view.media:display:media_page_list:display_options:menu:title" -msgid "Media" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" msgstr "" -msgctxt "views.view.nearest_hearings:label" -msgid "Nearest hearings" +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.nearest_hearings:display:default:display_title" -msgid "Master" +msgctxt "views.view.latest_hearings:display:default:display_options:exposed_form:options:bef:sort:advanced:collapsible_label" +msgid "Sort options" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:title" -msgid "Nearest hearings" +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.nearest_hearings:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.latest_citizen_proposals:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid:exception:title" -msgid "All" +msgctxt "views.view.content:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.nearest_hearings:display:default:display_options:arguments:nid_1:exception:title" -msgid "All" +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.nearest_hearings:display:block_1:display_title" -msgid "Block" +msgctxt "views.view.files:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:label" -msgid "Redirect" +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:description" -msgid "List of redirects" +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:display:default:display_title" -msgid "Master" +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:title" -msgid "Redirect" +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:fields:redirect_bulk_form:action_title" -msgid "With selection" +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Sortér efter" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:fields:redirect_source__path:label" -msgid "Fra" +msgctxt "views.view.content:display:default:display_options:filters:langcode:expose:label" +msgid "Sprog" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:fields:created:label" -msgid "Oprettet" +msgctxt "core.date_format.short:label" +msgid "Standard kort dato" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:next" -msgid "næste ›" +msgctxt "core.date_format.long:label" +msgid "Standard lang dato" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:previous" -msgid "‹ forrige" +msgctxt "core.date_format.medium:label" +msgid "Standard mellem dato" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:first" -msgid "« første" +msgctxt "system.action.webform_submission_make_sticky_action:label" +msgid "Star/flag submission" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:last" -msgid "sidste »" +msgctxt "webform.settings:settings:default_wizard_start_label" +msgid "Start" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +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 "views.view.redirect:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "field.field.node.hearing.field_start_date:label" +msgid "Startdato" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:label" +msgid "State" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:filters:state:expose:label" +msgid "State" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "webform.webform_options.state_codes:label" +msgid "State codes" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "webform.webform_options.state_names:label" +msgid "State names" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "webform.webform_options.state_province_codes:label" +msgid "State/Province codes" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "webform.webform_options.state_province_names:label" +msgid "State/Province names" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:empty:area_text_custom:content" -msgid "There is no redirect yet." +msgctxt "pathauto.pattern.static_page:label" +msgid "Static page" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:redirect_source__path:expose:label" -msgid "Fra" +msgctxt "node.type.static_page:name" +msgid "Statisk side" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:redirect_redirect__uri:expose:label" -msgid "Til" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:expose:label" -msgid "Status code" +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_content_state_value:expose:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:label" -msgid "Status code" +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:1:title" -msgid "300 Multiple Choices" +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:2:title" -msgid "301 Moved Permanently" +msgctxt "views.view.content:display:default:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:3:title" -msgid "302 Found" +msgctxt "views.view.content:display:default:display_options:filters:status:expose:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:4:title" -msgid "303 See Other" +msgctxt "views.view.files:display:default:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:5:title" -msgid "304 Not Modified" +msgctxt "views.view.files:display:default:display_options:filters:status:expose:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:6:title" -msgid "305 Use Proxy" +msgctxt "views.view.media:display:default:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:group_items:7:title" -msgid "307 Temporary Redirect" +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:default:display_options:filters:language:expose:label" -msgid "Originalt sprog" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.redirect:display:page_1:display_title" -msgid "Side" +msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" +msgid "Status" msgstr "" -msgctxt "views.view.search_db:label" -msgid "search_db" +msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" +msgid "Status" msgstr "" -msgctxt "views.view.search_db:display:default:display_title" -msgid "Default" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:expose:label" +msgid "Status code" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:title" -msgid "Search" +msgctxt "views.view.redirect:display:default:display_options:filters:status_code:group_info:label" +msgid "Status code" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "block.block.claro_messages:settings:label" +msgid "Status messages" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "block.block.hoeringsportal_messages:settings:label" +msgid "Status messages" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "block.block.messages:settings:label" +msgid "Status messages" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:submit_button" -msgid "Søg" +msgctxt "block.block.stark_messages:settings:label" +msgid "Statusmeddelelser" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Nulstil" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sticky:label" +msgid "Sticky" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:sticky:expose:label" +msgid "Sticky" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sticky:label" +msgid "Sticky" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:sticky:expose:label" +msgid "Sticky" 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" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sticky:label" +msgid "Sticky" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:text_input_required_format" -msgid "citizen_proposal_content" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:sticky:expose:label" +msgid "Sticky" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:bef:general:secondary_label" -msgid "Advanced options" +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:empty:display_link:label" -msgid "No results" +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:sorts:search_api_relevance:expose:label" -msgid "Relevance" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:label" -msgid "Søg" +msgctxt "views.view.content:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:placeholder" -msgid "Søg …" +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:default:display_options:header:result:content" -msgid "Displaying @start–@end of @total" +msgctxt "views.view.files:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.search_db:display:page_1:display_title" -msgid "Page" +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.taxonomy_term:label" -msgid "Ord i ordforråd" +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.taxonomy_term:description" -msgid "Indhold som er knyttet til en bestemt term." +msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_title" -msgid "Master" +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_asc_label" +msgid "Stigende" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "field.storage.block_content.field_color:settings:allowed_values:2:label" +msgid "Stone" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "views.view.files:display:default:display_options:fields:filesize:label" +msgid "Størrelse" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +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 "views.view.taxonomy_term:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "webform.settings:settings:default_submit_button_label" +msgid "Submit" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +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 "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +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 "views.view.taxonomy_term:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "field.field.node.hearing.field_reply_deadline:label" +msgid "Svarfrist" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:exception:title" -msgid "Alle" +msgctxt "views.view.all_hearings:display:default:display_options:sorts:field_reply_deadline_value:expose:label" +msgid "Svarfrist" msgstr "" -msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:title" -msgid "{{ arguments.tid }}" +msgctxt "views.view.all_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" +msgid "Svarfrist" msgstr "" -msgctxt "views.view.taxonomy_term:display:feed_1:display_title" -msgid "Feed" +msgctxt "views.view.latest_public_meetings:display:default:display_options:sorts:field_last_meeting_time_value:expose:label" +msgid "Svarfrist" msgstr "" -msgctxt "views.view.taxonomy_term:display:page_1:display_title" -msgid "Side" +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.timeline_related_items:label" -msgid "Timeline related items" +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.timeline_related_items:display:default:display_title" -msgid "Master" +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.timeline_related_items:display:default:display_options:title" -msgid "Timeline related items" +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 "views.view.timeline_related_items:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:format_settings:label" +msgid "Systemindstillinger" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_system_settings:label" +msgid "Systemindstillinger" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid_1:exception:title" -msgid "All" +msgctxt "views.view.search_db:display:default:display_options:exposed_form:options:submit_button" +msgid "Søg" msgstr "" -msgctxt "views.view.timeline_related_items:display:default:display_options:arguments:nid:exception:title" -msgid "All" +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:label" +msgid "Søg" msgstr "" -msgctxt "views.view.timeline_related_items:display:block_1:display_title" -msgid "Block" +msgctxt "views.view.search_db:display:default:display_options:filters:search_api_fulltext:expose:placeholder" +msgid "Søg …" msgstr "" -msgctxt "views.view.user_admin_people:label" -msgid "Personer" +msgctxt "field.field.media.document.field_itk_media_tag:label" +msgid "Tag" msgstr "" -msgctxt "views.view.user_admin_people:description" -msgid "Find og håndtér personer som bruger dit site." +msgctxt "field.field.media.image.field_itk_media_tag:label" +msgid "Tag" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_title" -msgid "Master" +msgctxt "views.view.itk_media_browser:display:default:display_options:fields:field_itk_media_tag:label" +msgid "Tag" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:title" -msgid "Personer" +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.user_admin_people:display:default:display_options:fields:user_bulk_form:label" -msgid "Masseopdatering" +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.user_admin_people:display:default:display_options:fields:name:label" -msgid "Brugernavn" +msgctxt "views.view.itk_media_browser:display:entity_browser_2:display_options:fields:field_itk_media_tag:label" +msgid "Tag" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:label" -msgid "Status" +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.user_admin_people:display:default:display_options:fields:status:settings:format_custom_false" -msgid "Blokeret" +msgctxt "views.view.itk_media_browser:display:entity_browser_3:display_options:fields:field_itk_media_tag:label" +msgid "Tag" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:status:settings:format_custom_true" -msgid "Aktiv" +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 "views.view.user_admin_people:display:default:display_options:fields:roles_target_id:label" -msgid "Roller" +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_subject:value" +msgid "Tak for dit borgerforslag på [site:url]" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:field_department:label" -msgid "Department" +msgctxt "field.field.node.static_page.field_teaser_color:label" +msgid "Teaser color" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:label" -msgid "Medlem i" +msgctxt "core.entity_view_mode.media.teaser_display:label" +msgid "Teaser display" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:future_format" -msgid "@interval" +msgctxt "crop.type.teaser_display:label" +msgid "Teaser display" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:created:settings:past_format" -msgid "@interval" +msgctxt "responsive_image.styles.teaser_image:label" +msgid "Teaser image" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:label" -msgid "Seneste tilgang" +msgctxt "paragraphs.paragraphs_type.teaser_row:label" +msgid "Teaser række" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:future_format" -msgid "@interval hence" +msgctxt "core.entity_form_display.node.static_page.default:third_party_settings:field_group:group_teaser_display:label" +msgid "Teaser visning" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:access:settings:past_format" -msgid "@interval ago" -msgstr "" +msgctxt "field.field.node.hearing.field_teaser:label" +msgid "Teaser/indledning" +msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:fields:operations:label" -msgid "Handlinger" +msgctxt "field.field.node.landing_page.field_teaser:label" +msgid "Teaser/indledning" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:next" -msgid "Næste ›" +msgctxt "field.field.node.public_meeting.field_teaser:label" +msgid "Teaser/indledning" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:previous" -msgid "‹ Forrige" +msgctxt "field.field.node.static_page.field_teaser:label" +msgid "Teaser/indledning" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:first" -msgid "« Første" +msgctxt "paragraphs.paragraphs_type.text:label" +msgid "Tekst" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:last" -msgid "Sidste »" +msgctxt "field.field.node.static_page.field_sidebar:description" +msgid "Tekst til visning i højre side på fuldskærmsvisning" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Antal elementer" +msgctxt "core.entity_view_mode.taxonomy_term.full:label" +msgid "Termside" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- Alle -" +msgctxt "symfony_mailer.mailer_policy.symfony_mailer.test:configuration:email_subject:value" +msgid "Test email from [site:name]" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:expose:offset_label" -msgid "Forskydning" +msgctxt "paragraphs.paragraphs_type.text_aside_blocks_2_column:label" +msgid "Text + aside blocks (2 column)" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" +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 "views.view.user_admin_people:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +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.user_admin_people:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +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.user_admin_people:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "views.view.redirect:display:default:display_options:empty:area_text_custom:content" +msgid "There is no redirect yet." msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +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 "views.view.user_admin_people:display:default:display_options:empty:area_text_custom:content" -msgid "Ingen personer til rådighed." +msgctxt "webform.settings:settings:default_form_open_message" +msgid "This form has not yet been opened to submissions." msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:filters:combine:expose:label" -msgid "Navn eller e-mail indeholder" +msgctxt "webform.settings:settings:default_form_confidential_message" +msgid "This form is confidential. You must Log out to submit it." msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:label" -msgid "Status" +msgctxt "webform.settings:settings:default_autofill_message" +msgid "This submission has been autofilled with your previous submission." msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:1:title" -msgid "Aktiv" +msgctxt "webform.settings:settings:default_submission_locked_message" +msgid "This submission has been locked." msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:filters:status:group_info:group_items:2:title" -msgid "Blokeret" +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.user_admin_people:display:default:display_options:filters:roles_target_id:expose:label" -msgid "Rolle" +msgctxt "views.view.itk_media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" -msgid "Tilladelse" +msgctxt "views.view.media:display:default:display_options:fields:thumbnail__target_id:label" +msgid "Thumbnail" msgstr "" -msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" -msgid "mere" +msgctxt "image.style.thumbnail:label" +msgid "Thumbnail (100×100)" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_title" -msgid "Data export (CSV)" +msgctxt "core.entity_form_display.node.project.default:third_party_settings:field_group:group_timeline:label" +msgid "Tidslinje" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:name:label" -msgid "Username" +msgctxt "paragraphs.paragraphs_type.timeline_period:label" +msgid "Tidslinje periode" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:label" -msgid "Status" +msgctxt "paragraphs.paragraphs_type.timeline_items:label" +msgid "Tidslinje punkter" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_false" -msgid "Blocked" +msgctxt "taxonomy.vocabulary.timeline_item_types:name" +msgid "Tidslinje punkttyper" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:status:settings:format_custom_true" -msgid "Active" +msgctxt "field.field.node.project.field_timeline_items:label" +msgid "Tidslinjepunkter" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:roles_target_id:label" -msgid "Roles" +msgctxt "views.view.redirect:display:default:display_options:filters:redirect_redirect__uri:expose:label" +msgid "Til" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:field_department:label" -msgid "Department" +msgctxt "paragraphs.paragraphs_type.timeline_items:description" +msgid "Tilføj ekstra punkter til tidslinjen" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:label" -msgid "Member for" +msgctxt "field.field.node.hearing.field_hearing_ticket_add:label" +msgid "Tilføj høringssvar" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:future_format" -msgid "@interval" +msgctxt "paragraphs.paragraphs_type.timeline_period:description" +msgid "Tilføj perioder til tidslinjen" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:created:settings:past_format" -msgid "@interval" +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.user_admin_people:display:data_export_1:display_options:fields:access:label" -msgid "Last access" +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:label" +msgid "Tillad e-mail" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:future_format" -msgid "@interval hence" +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:label" +msgid "Tillad e-mail" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:access:settings:past_format" -msgid "@interval ago" +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:data_export_2:display_title" -msgid "Data export (XLSX)" +msgctxt "views.view.user_admin_people:display:default:display_options:filters:permission:expose:label" +msgid "Tilladelse" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:name:label" -msgid "Username" +msgctxt "core.entity_form_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:label" -msgid "Status" +msgctxt "core.entity_view_display.node.public_meeting.default:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_false" -msgid "Blocked" +msgctxt "core.entity_view_display.node.public_meeting.search_result:third_party_settings:field_group:group_signup:label" +msgid "Tilmelding" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:status:settings:format_custom_true" -msgid "Active" +msgctxt "field.field.node.public_meeting.field_pretix_dates:label" +msgid "Tilmelding" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:roles_target_id:label" -msgid "Roles" +msgctxt "field.field.node.public_meeting.field_registration_deadline:label" +msgid "Tilmeldingsfrist" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:field_department:label" -msgid "Department" +msgctxt "field.field.node.public_meeting.field_signup_link:label" +msgid "Tilmeldingslink" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:label" -msgid "Member for" +msgctxt "field.field.node.public_meeting.field_signup_text:label" +msgid "Tilmeldingstekst" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:future_format" -msgid "@interval" +msgctxt "core.base_field_override.node.hearing.promote:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:created:settings:past_format" -msgid "@interval" +msgctxt "core.base_field_override.node.landing_page.promote:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:label" -msgid "Last access" +msgctxt "core.base_field_override.node.project.promote:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:future_format" -msgid "@interval hence" +msgctxt "core.base_field_override.node.static_page.promote:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:access:settings:past_format" -msgid "@interval ago" +msgctxt "field.field.node.public_meeting.field_hidden_signup:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:page_1:display_title" -msgid "Side" +msgctxt "field.field.node.public_meeting.field_public_meeting_cancelled:settings:on_label" +msgid "Tilsluttet" msgstr "" -msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" -msgid "Vis" +msgctxt "webform.webform_options.time_zones:label" +msgid "Time zones" 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." +msgctxt "views.view.timeline_related_items:display:default:display_options:title" +msgid "Timeline related items" msgstr "" -msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:title" -msgid "Personer" +msgctxt "views.view.timeline_related_items:label" +msgid "Timeline related items" msgstr "" -msgctxt "views.view.user_admin_people:display:page_1:display_options:tab_options:description" -msgid "Håndtér brugerkonti, roller og tilladelser." +msgctxt "field.field.paragraph.content_block.field_paragraph_title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:label" -msgid "Video display" +msgctxt "field.field.paragraph.introduction.field_paragraph_title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:description" -msgid "Display a video attached to a node" +msgctxt "field.field.paragraph.teaser_row.field_paragraph_title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_title" -msgid "Master" +msgctxt "field.field.paragraph.timeline_items.field_timeline_title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "field.field.paragraph.timeline_period.field_timeline_title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.content:display:data_export_1:display_options:fields:title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.content:display:data_export_2:display_options:fields:title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "views.view.content:display:default:display_options:fields:title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.content:display:default:display_options:filters:title:expose:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "views.view.glossary:display:default:display_options:fields:title:label" +msgid "Titel" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "field.field.block_content.aside_contact_info.field_title:label" +msgid "Title" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "field.field.block_content.aside_link_box.field_title:label" +msgid "Title" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:arguments:nid:exception:title" -msgid "All" +msgctxt "field.field.paragraph.content_promotion.field_title:label" +msgid "Title" msgstr "" -msgctxt "views.view.video_display:display:default:display_options:arguments:delta:exception:title" -msgid "All" +msgctxt "field.field.paragraph.files.field_title:label" +msgid "Title" msgstr "" -msgctxt "views.view.video_display:display:page_1:display_title" -msgid "Page" +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:label" +msgid "Title" msgstr "" -msgctxt "views.view.watchdog:label" -msgid "Watchdog" +msgctxt "webform.webform_options.titles:label" +msgid "Titles" msgstr "" -msgctxt "views.view.watchdog:description" -msgid "Recent log messages" +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 "views.view.watchdog:display:default:display_title" -msgid "Master" +msgctxt "core.entity_view_mode.block.token:label" +msgid "Token" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:title" -msgid "Recent log messages" +msgctxt "core.entity_view_mode.entity_subqueue.token:label" +msgid "Token" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:nothing:admin_label" -msgid "Icon" +msgctxt "core.entity_view_mode.file.token:label" +msgid "Token" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:wid:label" -msgid "WID" +msgctxt "core.entity_view_mode.user.token:label" +msgid "Token" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:severity:label" -msgid "Severity" +msgctxt "webform.webform_options.translations:label" +msgid "Translations" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:type:label" +msgctxt "field.field.node.hearing.field_type:label" msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:timestamp:label" -msgid "Date" +msgctxt "field.field.node.public_meeting.field_type:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:message:label" -msgid "Message" +msgctxt "field.field.paragraph.timeline_items.field_timeline_taxonomy_type:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:path" -msgid "admin/reports/dblog/event/{{ wid }}" +msgctxt "field.field.paragraph.timeline_period.field_timeline_taxonomy_type:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:alt" -msgid "{{ message }}" +msgctxt "taxonomy.vocabulary.type:name" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:name:label" -msgid "User" +msgctxt "views.view.all_hearings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:fields:link:label" -msgid "Operations" +msgctxt "views.view.all_meetings:display:default:display_options:filters:field_type_target_id:expose:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.media:display:default:display_options:fields:bundle:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "views.view.media:display:default:display_options:filters:bundle:expose:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:submit_button" -msgid "Filter" +msgctxt "views.view.watchdog:display:default:display_options:fields:type:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "views.view.watchdog:display:default:display_options:filters:type:expose:label" +msgid "Type" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "taxonomy.vocabulary.timeline_item_types:description" +msgid "Typer af tidslinje punkter" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +msgctxt "views.view.archive:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "views.view.block_content:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:empty:area:admin_label" -msgid "No log messages available." +msgctxt "views.view.citizen_proposal_support:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:empty:area:content" -msgid "No log messages available." +msgctxt "views.view.content_recent:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:filters:type:expose:label" -msgid "Type" +msgctxt "views.view.glossary:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:default:display_options:filters:severity:expose:label" -msgid "Severity" +msgctxt "views.view.taxonomy_term:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.watchdog:display:page:display_title" -msgid "Page" +msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.webform_submissions:label" -msgid "Webform submissions" +msgctxt "views.view.who_s_online:display:default:display_options:exposed_form:options:submit_button" +msgid "Udfør" msgstr "" -msgctxt "views.view.webform_submissions:description" -msgid "Default webform submissions views." +msgctxt "system.action.node_publish_action:label" +msgid "Udgiv indhold" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_title" -msgid "Master" +msgctxt "views.view.content:display:data_export_1:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:title" -msgid "Webform submissions" +msgctxt "views.view.content:display:data_export_2:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:sid:label" -msgid "#" +msgctxt "views.view.content:display:default:display_options:fields:status:settings:format_custom_true" +msgid "Udgivet" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:in_draft:label" -msgid "Draft" +msgctxt "views.view.content:display:default:display_options:filters:status:group_info:group_items:1:title" +msgid "Udgivet" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:created:label" -msgid "Oprettet" +msgctxt "webform.settings:settings:default_form_exception_message" +msgid "Unable to display this webform. Please contact the site administrator." msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:remote_addr:label" -msgid "IP address" +msgctxt "webform.settings:settings:default_submission_exception_message" +msgid "Unable to process this submission. Please contact the site administrator." msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:label" -msgid "Operations" +msgctxt "system.action.webform_submission_make_unlock_action:label" +msgid "Unlock submission" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:text" -msgid "view" +msgctxt "system.action.media_unpublish_action:label" +msgid "Unpublish media" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:first" -msgid "« First" +msgctxt "views.view.media:display:default:display_options:fields:status:settings:format_custom_false" +msgid "Unpublished" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:last" -msgid "Last »" +msgctxt "views.view.media:display:default:display_options:filters:status:group_info:group_items:2:title" +msgid "Unpublished" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_label" -msgid "Items per page" +msgctxt "system.action.webform_submission_make_unsticky_action:label" +msgid "Unstar/unflag submission" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:items_per_page_options_all_label" -msgid "- All -" +msgctxt "views.view.media:display:default:display_options:fields:changed:label" +msgid "Updated" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:expose:offset_label" -msgid "Offset" +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:settings:submit_text" +msgid "Upload document to media library" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:submit_button" -msgid "Apply" +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:settings:submit_text" +msgid "Upload image to media library" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Reset" +msgctxt "entity_browser.browser.itk_document_browser:widgets:faf405e2-6823-4521-b564-698424677624:label" +msgid "Upload new document" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sort by" +msgctxt "entity_browser.browser.itk_icon_browser:widgets:81d6533a-5ddc-40e9-b2ef-6ed8dfb46b89:label" +msgid "Upload new icon" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Asc" +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 "views.view.webform_submissions:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Desc" +msgctxt "entity_browser.browser.itk_image_browser:widgets:ea5ee6d6-e3f2-48b8-be8c-99ec28653c04:label" +msgid "Upload new image" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:empty:area_text_custom:content" -msgid "No submissions available." +msgctxt "views.view.files:display:default:display_options:fields:created:label" +msgid "Upload-dato" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:arguments:in_draft:exception:title" -msgid "All" +msgctxt "node.type.project_main_page:description" +msgid "Use this to create a project page" msgstr "" -msgctxt "views.view.webform_submissions:display:default:display_options:header:result:content" -msgid "Displaying @start - @end of @total" +msgctxt "field.field.block_content.aside_contact_info.field_department:description" +msgid "Used as the name of the department" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_title" -msgid "Embed: Administer" +msgctxt "field.field.paragraph.content_promotion.field_paragraph_image:description" +msgid "Used for the background image on the section" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:label" -msgid "Webform submission operations bulk form" +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_body:description" +msgid "Used for the body text" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:action_title" -msgid "Handling" +msgctxt "field.field.paragraph.content_promotion.field_title:description" +msgid "Used for the title" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sid:label" -msgid "#" +msgctxt "field.field.paragraph.files.field_title:description" +msgid "Used for the title" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:in_draft:label" -msgid "Draft" +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_title:description" +msgid "Used for the title" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:sticky:label" -msgid "Sticky" +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 "views.view.webform_submissions:display:embed_administer:display_options:fields:locked:label" -msgid "Locked" +msgctxt "field.field.block_content.aside_contact_info.field_address:description" +msgid "Used to add address" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:created:label" -msgid "Oprettet" +msgctxt "field.field.block_content.aside_contact_info.field_image:description" +msgid "Used to add image to the top of the box" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:completed:label" -msgid "Completed" +msgctxt "taxonomy.vocabulary.project_categories:description" +msgid "Used to categorize project pages" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:remote_addr:label" -msgid "IP address" +msgctxt "field.field.node.project_main_page.field_project_category:description" +msgid "Used to categorize the project. Create new categories here" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:operations:label" -msgid "Operations" +msgctxt "field.field.node.project_page.field_project_category:description" +msgid "Used to categorize the project. Create new categories here" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:in_draft:expose:label" -msgid "Is draft" +msgctxt "field.field.paragraph.content_promotion.field_button:description" +msgid "Used to create a button" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_administer:display_options:filters:sticky:expose:label" -msgid "Sticky" +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 "views.view.webform_submissions:display:embed_administer:display_options:filters:locked:expose:label" -msgid "Locked" +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 "views.view.webform_submissions:display:embed_administer:display_options:display_description" -msgid "Administer submissions." +msgctxt "block_content.type.aside_link_box:description" +msgid "Used to create a link box in the right column." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_default:display_title" -msgid "Embed: Default" +msgctxt "field.field.node.project_main_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_default:display_options:display_description" -msgid "Display submissions." +msgctxt "field.field.node.project_page.field_content_sections:description" +msgid "Used to create page sections with the Drupal Paragraphs module" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_title" -msgid "Embed: Manage" +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 "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:label" -msgid "Webform submission operations bulk form" +msgctxt "field.field.block_content.aside_link_box.field_link:description" +msgid "Used to point to a target for the link box" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:action_title" -msgid "Handling" +msgctxt "field.field.paragraph.content_promotion.field_abstract:description" +msgid "Used to quickly introduce the overall article content." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sid:label" -msgid "#" +msgctxt "field.field.paragraph.text_aside_blocks_2_column.field_abstract:description" +msgid "Used to quickly introduce the overall article content." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:in_draft:label" -msgid "Draft" +msgctxt "field.field.paragraph.files.field_files:description" +msgid "Used to reference the files" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:sticky:label" -msgid "Sticky" +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 "views.view.webform_submissions:display:embed_manage:display_options:fields:locked:label" -msgid "Locked" +msgctxt "field.field.block_content.aside_link_box.field_color:description" +msgid "Used to set the color of the box" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:created:label" -msgid "Oprettet" +msgctxt "field.field.paragraph.info_box.field_variant:description" +msgid "Used to set the variant style for the info box." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:completed:label" -msgid "Completed" +msgctxt "block_content.type.aside_contact_info:description" +msgid "Used to show contact info on a page" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:remote_addr:label" -msgid "IP address" +msgctxt "field.field.node.project_main_page.field_project_image:description" +msgid "Used to show project image" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:label" -msgid "Operations" +msgctxt "field.field.block_content.aside_contact_info.field_email:description" +msgid "Used to show the email address" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:text" -msgid "view" +msgctxt "field.field.block_content.aside_contact_info.field_phone_number:description" +msgid "Used to show the phone number" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:label" -msgid "Operations" +msgctxt "field.field.block_content.aside_contact_info.field_title:description" +msgid "Used to show the title" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:edit_webform_submission:text" -msgid "edit" +msgctxt "field.field.block_content.aside_link_box.field_title:description" +msgid "Used to show the title" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:in_draft:expose:label" -msgid "Is draft" +msgctxt "paragraphs.paragraphs_type.files:description" +msgid "Used to upload files that the user can download" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:sticky:expose:label" -msgid "Sticky" +msgctxt "views.view.watchdog:display:default:display_options:fields:name:label" +msgid "User" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:filters:locked:expose:label" -msgid "Locked" +msgctxt "block.block.stark_login:settings:label" +msgid "User login" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_manage:display_options:display_description" -msgid "Manage submissions." +msgctxt "views.view.user_admin_people:display:data_export_1:display_options:fields:name:label" +msgid "Username" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_title" -msgid "Embed: Review" +msgctxt "views.view.user_admin_people:display:data_export_2:display_options:fields:name:label" +msgid "Username" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sid:label" -msgid "#" +msgctxt "field.field.paragraph.info_box.field_variant:label" +msgid "Variant" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:in_draft:label" -msgid "Draft" +msgctxt "image.style.vector_image:label" +msgid "Vector image" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:sticky:label" -msgid "Sticky" +msgctxt "media.type.icon:description" +msgid "Vector images used to display icons" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:locked:label" -msgid "Locked" +msgctxt "core.entity_view_mode.node.revision:label" +msgid "Version" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:created:label" -msgid "Oprettet" +msgctxt "system.maintenance:message" +msgid "Vi er ved at opdatere @site. Vi er snart tilbage. Tak for din tålmodighed." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:completed:label" -msgid "Completed" +msgctxt "views.view.video_display:label" +msgid "Video display" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:remote_addr:label" -msgid "IP address" +msgctxt "field.field.node.hearing.field_video_embed:label" +msgid "Video embed" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:label" -msgid "Operations" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_content:moreResultsLabel" +msgid "View all results containg term [search-phrase]." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:text" -msgid "view" +msgctxt "search_autocomplete.autocompletion_configuration.search_block:moreResultsLabel" +msgid "View all results for [search-phrase]." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:in_draft:expose:label" -msgid "Is draft" +msgctxt "search_autocomplete.autocompletion_configuration.search_form_users:moreResultsLabel" +msgid "View all users for [search-phrase]." msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:sticky:expose:label" -msgid "Sticky" +msgctxt "core.entity_form_display.node.hearing.default:third_party_settings:field_group:group_more_info:label" +msgid "Vil du vide mere?" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:filters:locked:expose:label" -msgid "Locked" +msgctxt "field.field.node.citizen_proposal.field_more_info:label" +msgid "Vil du vide mere?" msgstr "" -msgctxt "views.view.webform_submissions:display:embed_review:display_options:display_description" -msgid "Review submissions." +msgctxt "field.field.node.hearing.field_more_info:label" +msgid "Vil du vide mere?" msgstr "" -msgctxt "views.view.who_s_new:label" -msgid "Nye brugere" +msgctxt "views.view.user_admin_people:display:page_1:display_options:menu:title" +msgid "Vis" msgstr "" -msgctxt "views.view.who_s_new:description" -msgid "Viser en liste af de nyeste brugerkonti på sitet." +msgctxt "field.field.node.hearing.field_hearing_ticket_list:label" +msgid "Vis høringssvar" msgstr "" -msgctxt "views.view.who_s_new:display:default:display_title" -msgid "Master" +msgctxt "system.action.node_promote_action:label" +msgid "Vis indhold på forsiden" msgstr "" -msgctxt "views.view.who_s_new:display:default:display_options:title" -msgid "Nye brugere" +msgctxt "views.view.who_s_new:description" +msgid "Viser en liste af de nyeste brugerkonti på sitet." msgstr "" -msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +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 "views.view.who_s_new:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +msgctxt "crop.type.content_display:description" +msgid "Visningen der anvendes når billedet vises på det fulde indholdselement" msgstr "" -msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +msgctxt "crop.type.teaser_display:description" +msgid "Visningen der anvendes når billedet vises som del af en teaser" msgstr "" -msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +msgctxt "field.field.node.hearing.field_deskpro_department_id:description" +msgid "Vælg afdeling for høringen." msgstr "" -msgctxt "views.view.who_s_new:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "field.field.node.project.field_project_finish:description" +msgid "Vælg afslutningsdato for projektet." msgstr "" -msgctxt "views.view.who_s_new:display:block_1:display_title" -msgid "Nye brugere" +msgctxt "field.field.node.public_meeting.field_media_image_single:description" +msgid "Vælg billeder der skal vises i teaservisningen." msgstr "" -msgctxt "views.view.who_s_new:display:block_1:display_options:display_description" -msgid "En liste af nye brugere" +msgctxt "field.field.node.hearing.field_media_image:description" +msgid "Vælg billeder der skal vises på høringssiden." msgstr "" -msgctxt "views.view.who_s_new:display:block_1:display_options:block_description" -msgid "Nye brugere" +msgctxt "field.field.node.hearing.field_project_reference:description" +msgid "Vælg den projekttidslinje som høringen er tilknyttet." msgstr "" -msgctxt "views.view.who_s_new:display:block_1:display_options:block_category" -msgid "Bruger" +msgctxt "field.field.node.landing_page.field_section:description" +msgid "Vælg den type indhold du ønsker at indsætte" msgstr "" -msgctxt "views.view.who_s_online:label" -msgid "Who's online block" +msgctxt "field.field.node.hearing.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." 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." +msgctxt "field.field.node.public_meeting.field_media_document:description" +msgid "Vælg dokumenter der beskriver høringen." msgstr "" -msgctxt "views.view.who_s_online:display:default:display_title" -msgid "Master" +msgctxt "field.field.node.hearing.field_tags:description" +msgid "Vælg emneord for høringen." msgstr "" -msgctxt "views.view.who_s_online:display:default:display_options:title" -msgid "Hvem er online" +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.who_s_online:display:default:display_options:exposed_form:options:submit_button" -msgid "Udfør" +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.who_s_online:display:default:display_options:exposed_form:options:reset_button_label" -msgid "Gendan" +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.who_s_online:display:default:display_options:exposed_form:options:exposed_sorts_label" -msgid "Sortér efter" +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.who_s_online:display:default:display_options:exposed_form:options:sort_asc_label" -msgid "Stigende" +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 "views.view.who_s_online:display:default:display_options:exposed_form:options:sort_desc_label" -msgid "Faldende" +msgctxt "entity_browser.browser.itk_document_browser:display_configuration:link_text" +msgid "Vælg fil" msgstr "" -msgctxt "views.view.who_s_online:display:default:display_options:empty:area_text_custom:content" -msgid "Der er i øjeblikket 0 brugere online." +msgctxt "entity_browser.browser.itk_document_browser:widgets:0e3d88e5-0fab-4c03-8d1b-ddf26a1303c1:settings:submit_text" +msgid "Vælg fil" msgstr "" -msgctxt "views.view.who_s_online:display:default:display_options:filters:access:expose:label" -msgid "Seneste tilgang" +msgctxt "entity_browser.browser.itk_image_browser:display_configuration:link_text" +msgid "Vælg fil" 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." +msgctxt "entity_browser.browser.itk_image_browser:widgets:11d1e481-b183-49c7-b727-0f0e12950bfc:settings:submit_text" +msgid "Vælg fil" msgstr "" -msgctxt "views.view.who_s_online:display:default:display_options:header:result:content" -msgid "Der er i øjeblikket @total brugere online." +msgctxt "field.field.node.hearing.field_reply_deadline:description" +msgid "Vælg hvornår der er svarfrist for høringen." msgstr "" -msgctxt "views.view.who_s_online:display:who_s_online_block:display_title" -msgid "Hvem er online" +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 "views.view.who_s_online:display:who_s_online_block:display_options:display_description" -msgid "En liste af indloggede brugere." +msgctxt "entity_browser.browser.itk_icon_browser:display_configuration:link_text" +msgid "Vælg ikon" msgstr "" -msgctxt "views.view.who_s_online:display:who_s_online_block:display_options:block_description" -msgid "Hvem er online" +msgctxt "entity_browser.browser.itk_icon_browser:widgets:a9859c97-cfd7-44ef-9da9-fabc75436b4e:settings:submit_text" +msgid "Vælg ikon" msgstr "" -msgctxt "webform.settings:settings:default_submit_button_label" -msgid "Submit" +msgctxt "field.field.node.hearing.field_map:description" +msgid "Vælg kortvisning for høringen." msgstr "" -msgctxt "webform.settings:settings:default_reset_button_label" -msgid "Reset" +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 "webform.settings:settings:default_delete_button_label" -msgid "Delete" +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 "webform.settings:settings:default_form_open_message" -msgid "This form has not yet been opened to submissions." +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 "webform.settings:settings:default_form_close_message" -msgid "Sorry… This form is closed to new submissions." +msgctxt "field.field.node.hearing.field_deskpro_agent_email:description" +msgid "Vælg sagsbehandler for høringen." msgstr "" -msgctxt "webform.settings:settings:default_form_exception_message" -msgid "Unable to display this webform. Please contact the site administrator." +msgctxt "field.field.node.hearing.field_start_date:description" +msgid "Vælg startdato for høringen." msgstr "" -msgctxt "webform.settings:settings:default_form_confidential_message" -msgid "" -"This form is confidential. You must Log " -"out to submit it." +msgctxt "field.field.node.project.field_project_start:description" +msgid "Vælg startdato for projektet." msgstr "" -msgctxt "webform.settings:settings:default_form_access_denied_message" -msgid "Please login to access this form." +msgctxt "field.field.node.public_meeting.field_project_reference:description" +msgid "Vælg tidslinje som borgermødet er knyttet til." msgstr "" -msgctxt "webform.settings:settings:default_form_required_label" -msgid "Indicates required field" +msgctxt "field.field.node.public_meeting.field_signup_selection:label" +msgid "Vælg tilmeldingstype" msgstr "" -msgctxt "webform.settings:settings:default_wizard_prev_button_label" -msgid "< Previous" +msgctxt "block.block.stark_tools:settings:label" +msgid "Værktøjer" msgstr "" -msgctxt "webform.settings:settings:default_wizard_next_button_label" -msgid "Next >" +msgctxt "system.menu.tools:label" +msgid "Værktøjer" msgstr "" -msgctxt "webform.settings:settings:default_wizard_start_label" -msgid "Start" +msgctxt "views.view.watchdog:display:default:display_options:fields:wid:label" +msgid "WID" msgstr "" -msgctxt "webform.settings:settings:default_wizard_confirmation_label" -msgid "Complete" +msgctxt "field.storage.paragraph.field_variant:settings:allowed_values:1:label" +msgid "Warning" msgstr "" -msgctxt "webform.settings:settings:default_wizard_toggle_show_label" -msgid "Show all" +msgctxt "views.view.watchdog:label" +msgid "Watchdog" msgstr "" -msgctxt "webform.settings:settings:default_wizard_toggle_hide_label" -msgid "Hide all" +msgctxt "webform.settings:mail:default_subject" +msgid "Webform submission from: [webform_submission:source-title]" msgstr "" -msgctxt "webform.settings:settings:default_preview_next_button_label" -msgid "Gennemse" +msgctxt "views.view.webform_submissions:display:embed_administer:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" msgstr "" -msgctxt "webform.settings:settings:default_preview_prev_button_label" -msgid "< Previous" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:webform_submission_bulk_form:label" +msgid "Webform submission operations bulk form" msgstr "" -msgctxt "webform.settings:settings:default_preview_label" -msgid "Gennemse" +msgctxt "views.view.webform_submissions:display:default:display_options:title" +msgid "Webform submissions" msgstr "" -msgctxt "webform.settings:settings:default_preview_title" -msgid "[webform:title]: Preview" +msgctxt "views.view.webform_submissions:label" +msgid "Webform submissions" msgstr "" -msgctxt "webform.settings:settings:default_preview_message" -msgid "" -"Please review your submission. Your submission is not complete until " -"you press the \"Submit\" button!" +msgctxt "field.field.paragraph.link.field_decorative_arrow:description" +msgid "Whether to show a decorative arrow or not." msgstr "" -msgctxt "webform.settings:settings:default_draft_button_label" -msgid "Save Draft" +msgctxt "field.storage.paragraph.field_button_variant:settings:allowed_values:1:label" +msgid "White" 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." +msgctxt "views.view.who_s_online:label" +msgid "Who's online block" msgstr "" -msgctxt "webform.settings:settings:default_draft_loaded_message" +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 "" -"A partially-completed form was found. Please complete the remaining " -"portions." +"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." +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." +msgid "You have pending drafts for this webform. View your pending drafts." msgstr "" -msgctxt "webform.settings:settings:default_confirmation_message" -msgid "New submission added to [webform:title]." +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 "webform.settings:settings:default_confirmation_back_label" -msgid "Back to form" +msgctxt "core.entity_form_display.node.static_page.default:content:field_teaser_color:settings:palette" +msgid "[\"#008486\",\"#333333\", \"#B2DADA\"]" msgstr "" -msgctxt "webform.settings:settings:default_limit_total_message" -msgid "No more submissions are permitted." +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:settings:default_limit_user_message" -msgid "No more submissions are permitted." +msgctxt "webform.settings:mail:default_from_name" +msgid "[site:name]" msgstr "" -msgctxt "webform.settings:settings:default_submission_label" +msgctxt "user.mail:register_pending_approval_admin:body" msgid "" -"[webform_submission:submitted-to]: Submission " -"#[webform_submission:serial]" +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" msgstr "" -msgctxt "webform.settings:settings:default_submission_access_denied_message" -msgid "Please login to access this submission." +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 "webform.settings:settings:default_submission_exception_message" +msgctxt "user.mail:password_reset:body" msgid "" -"Unable to process this submission. Please contact the site " -"administrator." +"[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 "webform.settings:settings:default_submission_locked_message" -msgid "This submission has been locked." +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 "webform.settings:settings:default_previous_submission_message" +msgctxt "user.mail:register_no_approval_required:body" msgid "" -"You have already submitted this webform. View your " -"previous submission." +"[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 "webform.settings:settings:default_previous_submissions_message" +msgctxt "user.mail:register_pending_approval:body" msgid "" -"You have already submitted this webform. View your " -"previous submissions." +"[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 "webform.settings:settings:default_autofill_message" -msgid "This submission has been autofilled with your previous submission." +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 "webform.settings:settings:dialog_options:narrow:title" -msgid "Narrow" +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 "webform.settings:settings:dialog_options:normal:title" -msgid "Normal" +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:dialog_options:wide:title" -msgid "Wide" +msgctxt "webform.settings:settings:default_preview_title" +msgid "[webform:title]: Preview" msgstr "" -msgctxt "webform.settings:element:empty_message" -msgid "{Empty}" +msgctxt "webform.settings:settings:default_submission_label" +msgid "[webform_submission:submitted-to]: Submission #[webform_submission:serial]" msgstr "" -msgctxt "webform.settings:element:default_more_title" -msgid "More" +msgctxt "symfony_mailer.mailer_policy._:configuration:email_theme:theme" +msgid "_active_fallback" msgstr "" -msgctxt "webform.settings:element:default_section_title_tag" -msgid "h2" +msgctxt "symfony_mailer.mailer_policy.hoeringsportal_citizen_proposal.proposal_created:configuration:email_theme:theme" +msgid "_active_fallback" msgstr "" -msgctxt "webform.settings:file:file_private_redirect_message" -msgid "Please login to access the uploaded file." +msgctxt "views.view.files:display:default:display_options:fields:count:alter:path" +msgid "admin/content/files/usage/{{ fid }}" msgstr "" -msgctxt "webform.settings:mail:default_from_name" -msgid "[site:name]" +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:path" +msgid "admin/reports/dblog/event/{{ wid }}" msgstr "" -msgctxt "webform.settings:mail:default_subject" -msgid "Webform submission from: [webform_submission:source-title]" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" 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" -"" +msgctxt "views.view.all_hearings:display:default:display_options:exposed_form:options:bef:general:text_input_required_format" +msgid "basic_html" 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" -"" +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" @@ -6994,93 +7190,124 @@ msgid "" "color:\n" " - '#ffffcc'\n" " - '#ffffcc'\n" -" - " -"'#ccffff'\n" +" - '#ccffff'\n" "email:\n" " - 'example@example.com'\n" -" - " -"'test@test.com'\n" +" - 'test@test.com'\n" " - 'random@random.com'\n" "language_select:\n" -" - " -"en\n" +" - en\n" "machine_name:\n" " - 'loremipsum'\n" " - 'oratione'\n" -" - " -"'dixisset'\n" +" - 'dixisset'\n" "tel:\n" " - '123-456-7890'\n" -" - " -"'098-765-4321'\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" +" - '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" +" - 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" +" - 'http://test.com'\n" "webform_email_confirm:\n" -" - " -"'example@example.com'\n" +" - 'example@example.com'\n" " - 'test@test.com'\n" -" - " -"'random@random.com'\n" +" - 'random@random.com'\n" "webform_email_multiple:\n" -" - " -"'example@example.com, test@test.com, " -"random@random.com'\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" @@ -7089,1058 +7316,321 @@ msgid "" " - 'John'\n" " - 'Paul'\n" " - 'Ringo'\n" -" - " -"'George'\n" +" - 'George'\n" "last_name:\n" " - 'Lennon'\n" " - 'McCartney'\n" -" - " -"'Starr'\n" +" - 'Starr'\n" " - 'Harrison'\n" "address:\n" " - '10 Main Street'\n" -" - '11 " -"Brook Alley Road. APT 1'\n" +" - '11 Brook Alley Road. APT 1'\n" "zip:\n" " - '11111'\n" " - '12345'\n" -" - " -"'12345-6789'\n" +" - '12345-6789'\n" "postal_code:\n" " - '11111'\n" " - '12345'\n" -" - " -"'12345-6789'\n" +" - '12345-6789'\n" "phone:\n" " - '123-456-7890'\n" -" - " -"'098-765-4321'\n" +" - '098-765-4321'\n" "fax:\n" " - '123-456-7890'\n" -" - " -"'098-765-4321'\n" +" - '098-765-4321'\n" "city:\n" " - 'Springfield'\n" " - 'Pleasantville'\n" -" - " -"'Hill Valley'\n" +" - 'Hill Valley'\n" "url:\n" " - 'http://example.com'\n" -" - " -"'http://test.com'\n" +" - 'http://test.com'\n" "default:\n" " - 'Loremipsum'\n" " - 'Oratione'\n" -" - " -"'Dixisset'\n" -"" +" - 'Dixisset'\n" msgstr "" -msgctxt "webform.webform_options.country_codes:label" -msgid "Country codes" +msgctxt "webform.settings:element:default_section_title_tag" +msgid "h2" msgstr "" -msgctxt "webform.webform_options.country_codes:category" -msgid "Geographic" +msgctxt "captcha.captcha_point.hearing_add_form:label" +msgid "hearing_add_form" msgstr "" -msgctxt "webform.webform_options.country_names:label" -msgid "Country names" +msgctxt "core.entity_view_display.taxonomy_term.timeline_item_types.default:content:field_timeline_item_color:settings:format" +msgid "hex" msgstr "" -msgctxt "webform.webform_options.country_names:category" -msgid "Geographic" +msgctxt "field.field.node.hearing.field_lokalplaner:description" +msgid "https://visplaner.plandata.dk/visplaner/lokalplaner.html" msgstr "" -msgctxt "webform.webform_options.days:label" -msgid "Days" +msgctxt "language.entity.zxx:label" +msgid "ikke relevant" msgstr "" -msgctxt "webform.webform_options.days:category" -msgid "Date and time" +msgctxt "core.date_format.hoeringsportal_date_long:pattern" +msgid "l \\d. j. F Y" 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" -"" +msgctxt "core.date_format.long:pattern" +msgid "l, j. F Y - H:i" msgstr "" -msgctxt "webform.webform_options.education:label" -msgid "Education" +msgctxt "search_api.server.local:name" +msgid "local" msgstr "" -msgctxt "webform.webform_options.education:category" -msgid "Demographic" +msgctxt "views.view.user_admin_people:display:default:display_options:use_more_text" +msgid "mere" 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" -"" +msgctxt "captcha.captcha_point.node_hearing_form:label" +msgid "node_hearing_form" msgstr "" -msgctxt "webform.webform_options.employment_status:label" -msgid "Employment status" +msgctxt "captcha.captcha_point.node_landing_page_form:label" +msgid "node_landing_page_form" msgstr "" -msgctxt "webform.webform_options.employment_status:category" -msgid "Demographic" +msgctxt "captcha.captcha_point.node_project_form:label" +msgid "node_project_form" 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" -"" +msgctxt "captcha.captcha_point.node_static_page_form:label" +msgid "node_static_page_form" msgstr "" -msgctxt "webform.webform_options.ethnicity:label" -msgid "Ethnicity" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:next" +msgid "næste ›" msgstr "" -msgctxt "webform.webform_options.ethnicity:category" -msgid "Demographic" +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:next" +msgid "næste ›" 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" -"" +msgctxt "field.field.node.public_meeting.field_pretix_event_settings:label" +msgid "pretix-indstillinger" msgstr "" -msgctxt "webform.webform_options.gender:label" -msgid "Gender" +msgctxt "views.view.search_db:label" +msgid "search_db" msgstr "" -msgctxt "webform.webform_options.gender:category" -msgid "Demographic" +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title" +msgid "sektion" 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" -"" +msgctxt "core.entity_form_display.node.landing_page.default:content:field_section:settings:title_plural" +msgid "sektioner" msgstr "" -msgctxt "webform.webform_options.industry:label" -msgid "Industry" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:last" +msgid "sidste »" msgstr "" -msgctxt "webform.webform_options.industry:category" -msgid "Demographic" +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:last" +msgid "sidste »" 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" -"" +msgctxt "captcha.captcha_point.user_login_form:label" +msgid "user_login_form" msgstr "" -msgctxt "webform.webform_options.languages:label" -msgid "Languages" +msgctxt "captcha.captcha_point.user_pass:label" +msgid "user_pass" msgstr "" -msgctxt "webform.webform_options.languages:category" -msgid "Language" +msgctxt "captcha.captcha_point.user_register_form:label" +msgid "user_register_form" msgstr "" -msgctxt "webform.webform_options.likert_agreement:label" -msgid "Likert: Agreement" +msgctxt "views.view.webform_submissions:display:default:display_options:fields:view_webform_submission:text" +msgid "view" msgstr "" -msgctxt "webform.webform_options.likert_agreement:category" -msgid "Likert" +msgctxt "views.view.webform_submissions:display:embed_manage:display_options:fields:view_webform_submission:text" +msgid "view" 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" -"" +msgctxt "views.view.webform_submissions:display:embed_review:display_options:fields:view_webform_submission:text" +msgid "view" msgstr "" -msgctxt "webform.webform_options.likert_comparison:label" -msgid "Likert: Comparison" +msgctxt "views.view.heyloyalty_feed:display:default:display_options:fields:view_node:text" +msgid "vis" msgstr "" -msgctxt "webform.webform_options.likert_comparison:category" -msgid "Likert" +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.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:label" -msgid "Likert: Importance" -msgstr "" - -msgctxt "webform.webform_options.likert_importance:category" -msgid "Likert" -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:label" -msgid "Likert: Quality" -msgstr "" - -msgctxt "webform.webform_options.likert_quality:category" -msgid "Likert" -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_satisfaction:label" -msgid "Likert: Satisfaction" -msgstr "" - -msgctxt "webform.webform_options.likert_satisfaction:category" -msgid "Likert" -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 "webform.webform_options.likert_ten_scale:label" -msgid "Likert: Ten Scale" -msgstr "" - -msgctxt "webform.webform_options.likert_ten_scale:category" -msgid "Likert" -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:label" -msgid "Likert: Would You" -msgstr "" - -msgctxt "webform.webform_options.likert_would_you:category" -msgid "Likert" -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.marital_status:label" -msgid "Marital status" -msgstr "" - -msgctxt "webform.webform_options.marital_status:category" -msgid "Demographic" -msgstr "" - -msgctxt "webform.webform_options.marital_status:options" -msgid "" -"Single: Single\n" -"Married: Married\n" -"Divorced: Divorced\n" -"Widowed: " -"Widowed\n" -"" -msgstr "" - -msgctxt "webform.webform_options.months:label" -msgid "Months" -msgstr "" - -msgctxt "webform.webform_options.months:category" -msgid "Date and time" -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 "webform.webform_options.phone_types:label" -msgid "Phone type" -msgstr "" - -msgctxt "webform.webform_options.phone_types:category" -msgid "Demographic" -msgstr "" - -msgctxt "webform.webform_options.phone_types:options" -msgid "" -"Home: Home\n" -"Office: Office\n" -"Cell: Cell\n" -"" +msgctxt "webform.settings:element:empty_message" +msgid "{Empty}" msgstr "" -msgctxt "webform.webform_options.province_codes:label" -msgid "Province codes" +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_file_upload:alter:text" +msgid "{{ 'Document'|t }}" msgstr "" -msgctxt "webform.webform_options.province_codes:category" -msgid "Geographic" +msgctxt "views.view.itk_media:display:default:display_options:fields:field_itk_media_image_upload:alter:text" +msgid "{{ 'Image'|t }}" 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" -"" +msgctxt "views.view.citizen_proposal_support:display:default:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 'ja' }}" msgstr "" -msgctxt "webform.webform_options.province_names:label" -msgid "Province names" +msgctxt "views.view.citizen_proposal_support:display:data_export_1:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 1 }}" msgstr "" -msgctxt "webform.webform_options.province_names:category" -msgid "Geographic" +msgctxt "views.view.citizen_proposal_support:display:data_export_2:display_options:fields:allow_email:alter:text" +msgid "{{ allow_email ? 1 }}" 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" -"" +msgctxt "views.view.archive:display:block_1:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" msgstr "" -msgctxt "webform.webform_options.relationship:label" -msgid "Relationship" +msgctxt "views.view.archive:display:default:display_options:arguments:created_year_month:title" +msgid "{{ arguments.created_year_month }}" msgstr "" -msgctxt "webform.webform_options.relationship:category" -msgid "Demographic" +msgctxt "views.view.taxonomy_term:display:default:display_options:arguments:tid:title" +msgid "{{ arguments.tid }}" 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" -"" +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 "webform.webform_options.sex:label" -msgid "Sex" +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 "webform.webform_options.sex:category" -msgid "Demographic" +msgctxt "views.view.watchdog:display:default:display_options:fields:message:alter:alt" +msgid "{{ message }}" msgstr "" -msgctxt "webform.webform_options.sex:options" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:processed:alter:text" msgid "" -"Male: Male\n" -"Female: Female\n" -"" -msgstr "" - -msgctxt "webform.webform_options.sex_icao:label" -msgid "Sex - International Civil Aviation Organization (ICAO)" -msgstr "" - -msgctxt "webform.webform_options.sex_icao:category" -msgid "Demographic" +"{{ processed }}\n" +"\n" +"{{ message }}" msgstr "" -msgctxt "webform.webform_options.sex_icao:options" +msgctxt "views.view.advancedqueue_jobs:display:default:display_options:fields:state:alter:text" msgid "" -"M: Male\n" -"F: Female\n" -"X: Unspecified\n" -"" +"{{ state }}\n" +"\n" +"{{ num_retries }}" msgstr "" -msgctxt "webform.webform_options.size:label" -msgid "Size" +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 "webform.webform_options.size:category" -msgid "General" +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 "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" -"" +msgctxt "views.view.all_citizen_proposals:display:default:display_options:pager:options:tags:first" +msgid "« First" msgstr "" -msgctxt "webform.webform_options.state_codes:label" -msgid "State codes" +msgctxt "views.view.all_hearings:display:default:display_options:pager:options:tags:first" +msgid "« First" msgstr "" -msgctxt "webform.webform_options.state_codes:category" -msgid "Geographic" +msgctxt "views.view.all_meetings:display:default:display_options:pager:options:tags:first" +msgid "« First" 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" -"" +msgctxt "views.view.all_projects:display:default:display_options:pager:options:tags:first" +msgid "« First" msgstr "" -msgctxt "webform.webform_options.state_names:label" -msgid "State names" +msgctxt "views.view.media:display:default:display_options:pager:options:tags:first" +msgid "« First" msgstr "" -msgctxt "webform.webform_options.state_names:category" -msgid "Geographic" +msgctxt "views.view.webform_submissions:display:default:display_options:pager:options:tags:first" +msgid "« First" 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" -"" +msgctxt "views.view.content:display:default:display_options:pager:options:tags:first" +msgid "« Første" msgstr "" -msgctxt "webform.webform_options.state_province_codes:label" -msgid "State/Province codes" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:first" +msgid "« Første" msgstr "" -msgctxt "webform.webform_options.state_province_codes:category" -msgid "Geographic" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:first" +msgid "« Første" 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" -"" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:first" +msgid "« første" msgstr "" -msgctxt "webform.webform_options.state_province_names:label" -msgid "State/Province names" +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:first" +msgid "« første" msgstr "" -msgctxt "webform.webform_options.state_province_names:category" -msgid "Geographic" +msgctxt "views.view.files:display:default:display_options:fields:changed:label" +msgid "Ændringsdato" 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" -"" +msgctxt "views.view.all_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Ønsket rækkefølge?" msgstr "" -msgctxt "webform.webform_options.time_zones:label" -msgid "Time zones" +msgctxt "views.view.latest_public_meetings:display:default:display_options:exposed_form:options:exposed_sorts_label" +msgid "Ønsket rækkefølge?" msgstr "" -msgctxt "webform.webform_options.time_zones:category" -msgid "Date and time" +msgctxt "views.view.block_content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" msgstr "" -msgctxt "webform.webform_options.titles:label" -msgid "Titles" +msgctxt "views.view.content:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" msgstr "" -msgctxt "webform.webform_options.titles:category" -msgid "Demographic" +msgctxt "views.view.files:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" msgstr "" -msgctxt "webform.webform_options.titles:options" -msgid "" -"Miss: Miss\n" -"Ms: Ms\n" -"Mr: Mr\n" -"Mrs: Mrs\n" -"Dr: Dr\n" -"" +msgctxt "views.view.files:display:page_2:display_options:pager:options:tags:previous" +msgid "‹ Forrige" msgstr "" -msgctxt "webform.webform_options.translations:label" -msgid "Translations" +msgctxt "views.view.user_admin_people:display:default:display_options:pager:options:tags:previous" +msgid "‹ Forrige" msgstr "" -msgctxt "webform.webform_options.translations:category" -msgid "Language" +msgctxt "views.view.media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Previous" msgstr "" -msgctxt "webform.webform_options.yes_no:label" -msgid "Yes/No" +msgctxt "views.view.itk_media:display:default:display_options:pager:options:tags:previous" +msgid "‹ Tidligere" msgstr "" -msgctxt "webform.webform_options.yes_no:category" -msgid "General" +msgctxt "views.view.autocompletion_callbacks_nodes:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" msgstr "" -msgctxt "webform.webform_options.yes_no:options" -msgid "" -"Yes: Yes\n" -"No: No\n" -"" +msgctxt "views.view.redirect:display:default:display_options:pager:options:tags:previous" +msgid "‹ forrige" msgstr "" - diff --git a/task/Taskfile.translation.yml b/task/Taskfile.translation.yml index 151666007..1e79f7018 100644 --- a/task/Taskfile.translation.yml +++ b/task/Taskfile.translation.yml @@ -231,15 +231,6 @@ tasks: - task: theme-translations:import silent: true - clean-up-translations: - internal: true - cmds: - # Fix plurals spec in Danish PO file - # https://drupalsun.com/eelke/2020/08/17/tale-mistranslated-plurals - # https://www.drupal.org/project/drupal/issues/3496223 - - | - docker run --user=${COMPOSE_USER:-deploy} --rm --volume "$PWD:/app" itkdev/php8.3-fpm 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') - # ------------------------------------------------------------------------------ # Internal helper tasks. # ------------------------------------------------------------------------------ @@ -291,3 +282,29 @@ tasks: - 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 index d61560637..3713b37b6 100644 --- a/translations/contrib-translations.da.po +++ b/translations/contrib-translations.da.po @@ -7,1115 +7,621 @@ msgstr "" "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 "Primary admin actions" -msgstr "Primære adminsitratorhandlinger" +msgid "
    {{ payload }}
    " +msgstr "" -msgid "Tabs" -msgstr "Faner" +msgid "@count place" +msgid_plural "@count places" +msgstr[0] "1 place" +msgstr[1] "@count places" -msgid "Status messages" -msgstr "Statusmeddelelser" +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 "Page title" -msgstr "Sidetitel" +msgid "A list of new users" +msgstr "En liste af nye brugere" -msgid "Tools" -msgstr "Værktøjer" +msgid "A list of users that are currently logged in." +msgstr "En liste af indloggede brugere." -msgid "Anonymous" -msgstr "Anonym" +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 "Hero (1440×360)" -msgstr "Hero (1440w) - Crop" +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 "Advanced Queue jobs" -msgstr "Advanced queue jobs" +msgid "Account details for [user:display-name] at [site:name]" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" -msgid "
    {{ payload }}
    " -msgstr "" +msgid "Account details for [user:display-name] at [site:name] (approved)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" -msgid "Available date" -msgstr "" +msgid "Account details for [user:display-name] at [site:name] (blocked)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" -msgid "Message" -msgstr "Høringssvar" +msgid "Account details for [user:display-name] at [site:name] (canceled)" +msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" -msgid "Available from" -msgstr "Available date" +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 "Page" -msgstr "Side" +msgid "Active" +msgstr "Aktiv" -msgid "Full" -msgstr "Fuld" +msgid "Administrative task links" +msgstr "Links til administrative opgaver" -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 "Advanced Queue jobs" +msgstr "Advanced queue jobs" -msgid "Plain text" -msgstr "Ren tekst" +msgid "All content, by letter." +msgstr "Alt indhold efter forbogstav." -msgid "Medium (220×220)" -msgstr "Mellem (220×220)" +msgid "All content, by month." +msgstr "Alt indhold, efter måned." -msgid "Not specified" -msgstr "Ikke angivet" +msgid "An administrator created an account for you at [site:name]" +msgstr "En administrator har oprettet en konto til dig på [site:name]" -msgid "Not applicable" -msgstr "ikke relevant" +msgid "Anonymous" +msgstr "Anonym" -msgid "Full content" -msgstr "Fuldt indhold" +msgid "Anonymous user" +msgstr "Anonym bruger" -msgid "Teaser" -msgstr "Smagsprøve" +msgid "Archive" +msgstr "Arkiv" -msgid "Make content sticky" -msgstr "Gør indhold klæbrigt" +msgid "Attachment" +msgstr "Bilag" -msgid "Make content unsticky" -msgstr "Fjern klæbrighed" +msgid "Authenticated user" +msgstr "Godkendt bruger" -msgid "Promote content to front page" -msgstr "Vis indhold på forsiden" +msgid "Available date" +msgstr "" -msgid "Publish content" -msgstr "Udgiv indhold" +msgid "Available from" +msgstr "Available date" -msgid "Save content" -msgstr "Gem indhold" +msgid "Block description" +msgstr "Beskrivelse" -msgid "Remove content from front page" -msgstr "Fjern indhold fra forsiden" +msgid "Block the selected user(s)" +msgstr "Blokér de(n) valgte bruger(e)" -msgid "Unpublish content" -msgstr "Afpubliceer indhold" +msgid "Block type" +msgstr "Bloktype" -msgid "‹ previous" -msgstr "‹ forrige" +msgid "Blocked" +msgstr "Blokeret" -msgid "next ›" -msgstr "næste ›" +msgid "Blocks" +msgstr "Brugerdefineret blokbibliotek" -msgid "« first" -msgstr "« første" +msgid "Bulk update" +msgstr "Masseopdatering" -msgid "last »" -msgstr "sidste »" +msgid "Cancel the selected user account(s)" +msgstr "Opsig de valgte brugerkonti" -msgid "From" -msgstr "Fra" +msgid "Changed date" +msgstr "Ændringsdato" -msgid "Created" -msgstr "Oprettet" +msgid "Compact" +msgstr "Kompakt" -msgid "To" -msgstr "Til" +msgid "Content" +msgstr "Indhold" -msgid "Original language" -msgstr "Originalt sprog" +msgid "Content belonging to a certain taxonomy term." +msgstr "Indhold som er knyttet til en bestemt term." -msgid "Page" -msgstr "Side" +msgid "Content blocks" +msgstr "Brugerdefineret blokbibliotek" -msgid "Fallback date format" -msgstr "Reservedatoformat" +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 "l, F j, Y - H:i" -msgstr "\\d. j. F Y" - msgid "Default medium date" msgstr "Standard mellem dato" -msgid "D, m/d/Y - H:i" -msgstr "D, d/m/Y - H:i" - msgid "Default short date" msgstr "Standard kort dato" -msgid "m/d/Y - H:i" -msgstr "d/m/Y - H:i" +msgid "Entity type" +msgstr "Entity-type" -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 "Fallback date format" +msgstr "Reservedatoformat" -msgid "User account menu" -msgstr "Brugerkontomenu" +msgid "File usage information for {{ arguments.fid }}" +msgstr "Information om brug af filen {{ arguments.fid }}" -msgid "Links related to the active user account" -msgstr "Links relateret til den aktive brugerkonto" +msgid "Filename" +msgstr "Filnavn" -msgid "Administrative task links" -msgstr "Links til administrative opgaver" +msgid "Files" +msgstr "Filer" -msgid "Footer" -msgstr "Sidefod" +msgid "Files overview" +msgstr "Filoversigt" -msgid "Site information links" -msgstr "Links til informationen om sitet" +msgid "Find and manage content" +msgstr "Find og håndtér indhold" -msgid "Main navigation" -msgstr "Primær navigation" +msgid "Find and manage content blocks." +msgstr "Find og håndtér brugerdefinerede blokke." -msgid "Site section links" -msgstr "Links til sitets sektioner" +msgid "Find and manage content." +msgstr "Find og håndtér indhold." -msgid "Tools" -msgstr "Værktøjer" +msgid "Find and manage files." +msgstr "Find og håndtér filer." -msgid "User tool links, often added by modules" -msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" +msgid "Find and manage media." +msgstr "" -msgid "Taxonomy term page" -msgstr "Termside" +msgid "Find and manage people interacting with your site." +msgstr "Find og håndtér personer som bruger dit site." -msgid "Register" -msgstr "Opret konto" +msgid "Footer" +msgstr "Sidefod" -msgid "Compact" -msgstr "Kompakt" +msgid "From" +msgstr "Fra" -msgid "User account" -msgstr "Brugerkonto" +msgid "Full" +msgstr "Fuld" -msgid "Block the selected user(s)" -msgstr "Blokér de(n) valgte bruger(e)" +msgid "Full content" +msgstr "Fuldt indhold" -msgid "Cancel the selected user account(s)" -msgstr "Opsig de valgte brugerkonti" +msgid "Glossary" +msgstr "Ordliste" -msgid "Unblock the selected user(s)" -msgstr "Fjern blokering af de(n) valgte bruger(e)" +msgid "Hero (1440×360)" +msgstr "Hero (1440w) - Crop" -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 "Language" +msgstr "Sprog" -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 "Last update" +msgstr "Seneste opdatering" -msgid "Replacement login information for [user:display-name] at [site:name]" -msgstr "Ny login-information for [user:display-name] på [site:name]" +msgid "Links related to the active user account" +msgstr "Links relateret til den aktive brugerkonto" -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 "List" +msgstr "Vis" -msgid "An administrator created an account for you at [site:name]" -msgstr "En administrator har oprettet en konto til dig på [site:name]" +msgid "Main navigation" +msgstr "Primær navigation" -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 "Make content sticky" +msgstr "Gør indhold klæbrigt" -msgid "Account details for [user:display-name] at [site:name]" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgid "Make content unsticky" +msgstr "Fjern klæbrighed" -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 "Manage user accounts, roles, and permissions." +msgstr "Håndtér brugerkonti, roller og tilladelser." -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 "Medium (220×220)" +msgstr "Mellem (220×220)" -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 "Member for" +msgstr "Medlem i" -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 "Message" +msgstr "Høringssvar" -msgid "Account details for [user:display-name] at [site:name] (approved)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (godkendt)" +msgid "Monthly archive" +msgstr "Månedsarkiv" -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 "More" +msgstr "Mere" -msgid "Account details for [user:display-name] at [site:name] (blocked)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (blokeret)" +msgid "Name" +msgstr "Navn" -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 "Name or email contains" +msgstr "Navn eller e-mail indeholder" -msgid "Account details for [user:display-name] at [site:name] (canceled)" -msgstr "Kontoinformationer for [user:display-name] på [site:name] (opsagt)" +msgid "No files available." +msgstr "Ingen tilgængelige filer." -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 "No media available." +msgstr "No content available." -msgid "Anonymous user" -msgstr "Anonym bruger" +msgid "No people available." +msgstr "Ingen personer til rådighed." -msgid "Authenticated user" -msgstr "Godkendt bruger" +msgid "Not applicable" +msgstr "ikke relevant" -msgid "Please log in to access this form." -msgstr "Please login to access this form." +msgid "Not specified" +msgstr "Ikke angivet" -msgid "Preview" -msgstr "Gennemse" +msgid "Original language" +msgstr "Originalt sprog" -msgid "Please log in to access this submission." -msgstr "Please login to access this submission." +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 "Preview" -msgstr "Gennemse" +msgid "Please log in to access this form." +msgstr "Please login to access this form." -msgid "Content blocks" -msgstr "Brugerdefineret blokbibliotek" +msgid "Please log in to access this submission." +msgstr "Please login to access this submission." -msgid "Find and manage content blocks." -msgstr "Find og håndtér brugerdefinerede blokke." +msgid "Primary admin actions" +msgstr "Primære adminsitratorhandlinger" -msgid "Default" -msgstr "Master" +msgid "Promote content to front page" +msgstr "Vis indhold på forsiden" -msgid "Block description" -msgstr "Beskrivelse" +msgid "Publish content" +msgstr "Udgiv indhold" -msgid "Block type" -msgstr "Bloktype" +msgid "Published" +msgstr "Udgivet" -msgid "Updated" -msgstr "Opdateret" +msgid "Published status" +msgstr "Publiceringsstatus" -msgid "Operations" -msgstr "Handlinger" +msgid "Recent content" +msgstr "Seneste indhold" -msgid "Next ›" -msgstr "Næste ›" +msgid "Recent content." +msgstr "Seneste indhold." -msgid "‹ Previous" -msgstr "‹ Forrige" +msgid "Register" +msgstr "Opret konto" -msgid "Items per page" -msgstr "Antal elementer" +msgid "Registering module" +msgstr "Registrerer modul" -msgid "- All -" -msgstr "- Alle -" +msgid "Remove content from front page" +msgstr "Fjern indhold fra forsiden" -msgid "Offset" -msgstr "Forskydning" +msgid "Replacement login information for [user:display-name] at [site:name]" +msgstr "Ny login-information for [user:display-name] på [site:name]" -msgid "Apply" -msgstr "Udfør" +msgid "Revision" +msgstr "Version" -msgid "Reset" -msgstr "Gendan" +msgid "Role" +msgstr "Rolle" -msgid "Sort by" -msgstr "Sortér efter" +msgid "Roles" +msgstr "Roller" -msgid "Asc" -msgstr "Stigende" +msgid "Save content" +msgstr "Gem indhold" -msgid "Desc" -msgstr "Faldende" +msgid "Shows a list of the newest user accounts on the site." +msgstr "Viser en liste af de nyeste brugerkonti på sitet." -msgid "There are no content blocks available." -msgstr "There are no custom blocks available." +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 "Page" -msgstr "Side" +msgid "Site information links" +msgstr "Links til informationen om sitet" -msgid "Blocks" -msgstr "Brugerdefineret blokbibliotek" +msgid "Site section links" +msgstr "Links til sitets sektioner" -msgid "Create and edit content blocks." -msgstr "Create and edit block content." +msgid "Size" +msgstr "Størrelse" -msgid "Files" -msgstr "Filer" +msgid "Status messages" +msgstr "Statusmeddelelser" -msgid "Find and manage files." -msgstr "Find og håndtér filer." +msgid "Tabs" +msgstr "Faner" -msgid "Default" -msgstr "Master" +msgid "Taxonomy term" +msgstr "Ord i ordforråd" -msgid "Name" -msgstr "Navn" +msgid "Taxonomy term page" +msgstr "Termside" -msgid "Size" -msgstr "Størrelse" +msgid "Teaser" +msgstr "Smagsprøve" msgid "Temporary" msgstr "Midlertidig" -msgid "Upload date" -msgstr "Upload-dato" - -msgid "Changed date" -msgstr "Ændringsdato" +msgid "There are currently 0 users online." +msgstr "Der er i øjeblikket 0 brugere online." -msgid "Used in" -msgstr "Brugt i" +msgid "There are currently @total users online." +msgstr "Der er i øjeblikket @total brugere online." -msgid "@count place" -msgid_plural "@count places" -msgstr[0] "1 place" -msgstr[1] "@count places" +msgid "There are no content blocks available." +msgstr "There are no custom blocks available." -msgid "Next ›" -msgstr "Næste ›" +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 "‹ Previous" -msgstr "‹ Forrige" +msgid "To" +msgstr "Til" -msgid "Items per page" -msgstr "Antal elementer" +msgid "True" +msgstr "Sandt" -msgid "- All -" -msgstr "- Alle -" +msgid "Unblock the selected user(s)" +msgstr "Fjern blokering af de(n) valgte bruger(e)" -msgid "Offset" -msgstr "Forskydning" +msgid "Unpublish content" +msgstr "Afpubliceer indhold" -msgid "Reset" -msgstr "Gendan" +msgid "Unpublished" +msgstr "Ikke udgivet" -msgid "Sort by" -msgstr "Sortér efter" +msgid "Upload date" +msgstr "Upload-dato" -msgid "Asc" -msgstr "Stigende" +msgid "Use count" +msgstr "Brug antal" -msgid "Desc" -msgstr "Faldende" +msgid "Used in" +msgstr "Brugt i" -msgid "No files available." -msgstr "Ingen tilgængelige filer." +msgid "User" +msgstr "Bruger" -msgid "Filename" -msgstr "Filnavn" +msgid "User account" +msgstr "Brugerkonto" -msgid "Files overview" -msgstr "Filoversigt" +msgid "User account menu" +msgstr "Brugerkontomenu" -msgid "Entity type" -msgstr "Entity-type" +msgid "User tool links, often added by modules" +msgstr "Bruger værktøjslinks, som typisk tilføjes af moduler" -msgid "Registering module" -msgstr "Registrerer modul" +msgid "Username" +msgstr "Brugernavn" -msgid "Use count" -msgstr "Brug antal" +msgid "Who's new" +msgstr "Nye brugere" -msgid "All" -msgstr "Alle" +msgid "Who's online" +msgstr "Hvem er online" -msgid "File usage information for {{ arguments.fid }}" -msgstr "Information om brug af filen {{ arguments.fid }}" - -msgid "Find and manage media." +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 "" - -msgid "Action" -msgstr "Handling" - -msgid "No media available." -msgstr "No content available." - -msgid "True" -msgstr "Sandt" - -msgid "Archive" -msgstr "Arkiv" - -msgid "All content, by month." -msgstr "Alt indhold, efter måned." - -msgid "Default" -msgstr "Master" - -msgid "Monthly archive" -msgstr "Månedsarkiv" - -msgid "Items per page" -msgstr "Antal elementer" - -msgid "- All -" -msgstr "- Alle -" - -msgid "Offset" -msgstr "Forskydning" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "Block" -msgstr "Blok" - -msgid "Page" -msgstr "Side" - -msgid "Content" -msgstr "Indhold" - -msgid "Find and manage content." -msgstr "Find og håndtér indhold." - -msgid "Default" -msgstr "Master" - -msgid "Title" -msgstr "Titel" - -msgid "Content type" -msgstr "Indholdstype" - -msgid "Author" -msgstr "Forfatter" - -msgid "Unpublished" -msgstr "Ikke udgivet" - -msgid "Published" -msgstr "Udgivet" - -msgid "Updated" -msgstr "Opdateret" - -msgid "Operations" -msgstr "Handlinger" - -msgid "Next ›" -msgstr "Næste ›" - -msgid "‹ Previous" -msgstr "‹ Forrige" - -msgid "« First" -msgstr "« Første" - -msgid "Last »" -msgstr "Sidste »" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "No content available." -msgstr "Der er intet indhold at vise." - -msgid "Published status" -msgstr "Publiceringsstatus" - -msgid "Language" -msgstr "Sprog" - -msgid "Page" -msgstr "Side" - -msgid "Find and manage content" -msgstr "Find og håndtér indhold" - -msgid "Recent content" -msgstr "Seneste indhold" - -msgid "Recent content." -msgstr "Seneste indhold." - -msgid "Default" -msgstr "Master" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "No content available." -msgstr "Der er intet indhold at vise." - -msgid "More" -msgstr "Mere" - -msgid "Block" -msgstr "Blok" - -msgid "Glossary" -msgstr "Ordliste" - -msgid "All content, by letter." -msgstr "Alt indhold efter forbogstav." - -msgid "Default" -msgstr "Master" - -msgid "Title" -msgstr "Titel" - -msgid "Author" -msgstr "Forfatter" - -msgid "Last update" -msgstr "Seneste opdatering" - -msgid "Items per page" -msgstr "Antal elementer" - -msgid "- All -" -msgstr "- Alle -" - -msgid "Offset" -msgstr "Forskydning" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "Attachment" -msgstr "Bilag" - -msgid "Page" -msgstr "Side" - -msgid "next ›" -msgstr "næste ›" - -msgid "‹ previous" -msgstr "‹ forrige" - -msgid "« first" -msgstr "« første" - -msgid "last »" -msgstr "sidste »" - -msgid "Taxonomy term" -msgstr "Ord i ordforråd" - -msgid "Content belonging to a certain taxonomy term." -msgstr "Indhold som er knyttet til en bestemt term." - -msgid "Default" -msgstr "Master" - -msgid "Items per page" -msgstr "Antal elementer" - -msgid "- All -" -msgstr "- Alle -" - -msgid "Offset" -msgstr "Forskydning" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "All" -msgstr "Alle" - -msgid "Page" -msgstr "Side" - -msgid "People" -msgstr "Personer" - -msgid "Find and manage people interacting with your site." -msgstr "Find og håndtér personer som bruger dit site." - -msgid "Default" -msgstr "Master" - -msgid "Bulk update" -msgstr "Masseopdatering" - -msgid "Username" -msgstr "Brugernavn" - -msgid "Blocked" -msgstr "Blokeret" - -msgid "Active" -msgstr "Aktiv" - -msgid "Roles" -msgstr "Roller" - -msgid "Member for" -msgstr "Medlem i" - -msgid "Last access" -msgstr "Seneste tilgang" - -msgid "Operations" -msgstr "Handlinger" - -msgid "Next ›" -msgstr "Næste ›" - -msgid "‹ Previous" -msgstr "‹ Forrige" - -msgid "« First" -msgstr "« Første" - -msgid "Last »" -msgstr "Sidste »" - -msgid "Items per page" -msgstr "Antal elementer" - -msgid "- All -" -msgstr "- Alle -" - -msgid "Offset" -msgstr "Forskydning" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "No people available." -msgstr "Ingen personer til rådighed." - -msgid "Name or email contains" -msgstr "Navn eller e-mail indeholder" - -msgid "Role" -msgstr "Rolle" - -msgid "Permission" -msgstr "Tilladelse" - -msgid "more" -msgstr "mere" - -msgid "Page" -msgstr "Side" - -msgid "List" -msgstr "Vis" - -msgid "Manage user accounts, roles, and permissions." -msgstr "Håndtér brugerkonti, roller og tilladelser." - -msgid "Who's new" -msgstr "Nye brugere" - -msgid "Shows a list of the newest user accounts on the site." -msgstr "Viser en liste af de nyeste brugerkonti på sitet." - -msgid "Default" -msgstr "Master" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "A list of new users" -msgstr "En liste af nye brugere" - -msgid "User" -msgstr "Bruger" +"[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 "" -"Shows the user names of the most recently active users, and the total " -"number of active users." +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" msgstr "" -"Viser navnene på de brugere, der senste har været aktive, og det " -"totale antal af aktive brugere." - -msgid "Default" -msgstr "Master" - -msgid "Who's online" -msgstr "Hvem er online" - -msgid "Apply" -msgstr "Udfør" - -msgid "Reset" -msgstr "Gendan" - -msgid "Sort by" -msgstr "Sortér efter" - -msgid "Asc" -msgstr "Stigende" - -msgid "Desc" -msgstr "Faldende" - -msgid "There are currently 0 users online." -msgstr "Der er i øjeblikket 0 brugere online." - -msgid "Last access" -msgstr "Seneste tilgang" +"[user:display-name] has applied for an account.\n" +"\n" +"[user:edit-url]" msgid "" -"A user is considered online for this long after they have last viewed " -"a page." +"[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 "" -"En bruger bliver opfattet som online i dette tidsrum efter hun sidst " -"har set en side." +"[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 "There are currently @total users online." -msgstr "Der er i øjeblikket @total brugere online." +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 "A list of users that are currently logged in." -msgstr "En liste af indloggede brugere." +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 "Created" -msgstr "Oprettet" +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 "Action" -msgstr "Handling" +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 "Update URL alias" -msgstr "Opdatér alternativ URL" +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 "Update URL alias" -msgstr "Opdatér alternativ URL" +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 "Revision" -msgstr "Version" +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/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po b/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po index 723713f7c..4dd9fbaa5 100644 --- a/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po +++ b/web/modules/custom/aarhus_hero/translations/aarhus_hero.da.po @@ -18,6 +18,7 @@ msgstr "" "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" @@ -27,47 +28,48 @@ msgstr "" 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 "Adds a config page and a block for the hero." +msgid "Aarhus modules" msgstr "" #: modules/custom/aarhus_hero/aarhus_hero.info.yml:0 -msgid "Aarhus modules" +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 +#: 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/aarhus_hero.permissions.yml:0 modules/custom/aarhus_hero/aarhus_hero.routing.yml:0 -msgid "Hero settings" +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:73 +msgid "Hero button text" msgstr "" -#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:46 -msgid "Hero title" +#: 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:64 -msgid "Hero image" +#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:46 +msgid "Hero title" msgstr "" -#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:73 -msgid "Hero button text" +#: 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 "" - -#: modules/custom/aarhus_hero/src/Form/AarhusHeroSettingsForm.php:90 -msgid "Save changes" -msgstr "" - -#: modules/custom/aarhus_hero/src/Plugin/Block/AarhusHero.php:8 -msgid "Aarhus hero" -msgstr "Aarhus hero" - 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 index f5a93559f..7aa58cb07 100644 --- 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 @@ -31,75 +31,70 @@ msgstr "" "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/hoeringsportal_citizen_proposal.info.yml:0 -msgid "Hoeringsportal citizen proposal" -msgstr "" - -#: 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/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/hoeringsportal_citizen_proposal.links.task.yml:0 -msgid "Citizen proposal" -msgstr "" - -#: 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/ProposalFormApprove.php:73 +msgid "(Not shown on proposal)" +msgstr "Ikke synligt for andre" -#: 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: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/hoeringsportal_citizen_proposal.permissions.yml:0;0 -msgid "Support citizen proposal on behalf of citizen" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:80 +msgid "Access denied page" msgstr "" -#: 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/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.routing.yml:0 -msgid "Support citizen proposal" +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.permissions.yml:0 +msgid "Administer citizen proposal module" 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/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/modules/hoeringsportal_citizen_proposal_fixtures/hoeringsportal_citizen_proposal_fixtures.info.yml:0 -msgid "Provides citizen proposal fixtures for the site." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:126;243 +msgid "Allow email help" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:72 -msgid "Citizen access denied" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:187 +msgid "Approve form" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:65 -msgid "Citizen access check exception: @message" +#: 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 "" @@ -108,364 +103,383 @@ msgstr "" msgid "Authenticate message (support)" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:74 -msgid "Authenticate link text" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:70 +msgid "Authenticate with MitID" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:80 -msgid "Access denied page" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:95 +msgid "Author intro" 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/ProposalFormApprove.php:153 +msgid "Cancel proposal" +msgstr "Fortryd borgerforslag" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:90 -msgid "Add form" +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/CitizenAccessChecker.php:59 +msgid "Citizen access @granted: @values" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:95 -msgid "Author intro" +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:65 +msgid "Citizen access check exception: @message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:102;231 -msgid "Name help" +#: modules/custom/hoeringsportal_citizen_proposal/src/EventSubscriber/CitizenAccessCheckEventSubscriber.php:72 +msgid "Citizen access denied" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:108 -msgid "Phone help" +#: 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:114;237 -msgid "Email help" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:412 +msgid "Citizen proposal settings sucessfully saved." msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:120 -msgid "Email display help" +#: 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:126;243 -msgid "Allow email help" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:158 +msgid "Consent help" 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/ProposalAdminForm.php:395 +msgid "Content" +msgstr "Content" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:133 -msgid "Proposal intro" -msgstr "" +#: 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/src/Form/ProposalAdminForm.php:140 -msgid "Title help" -msgstr "" +#: 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/ProposalAdminForm.php:146 -msgid "Proposal help" -msgstr "" +#: 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/ProposalAdminForm.php:152 -msgid "Remarks help" -msgstr "" +#: 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/ProposalAdminForm.php:158 -msgid "Consent help" -msgstr "" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:75 +msgid "E-mail" +msgstr "E-mail" -#: 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/ProposalFormApprove.php:145 +msgid "Edit proposal" +msgstr "Ret borgerforslag" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:165 -msgid "Number of allowed characters for title field." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:373 +msgid "Editor email address" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:171 -msgid "Number of allowed characters for proposal field." +#: 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:177 -msgid "Number of allowed characters for remarks field." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:114;237 +msgid "Email help" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:187 -msgid "Approve form" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:364 +msgid "Emails" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:192 -msgid "Approve intro" +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:362 +msgid "Error finding overdue proposals: @message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:199 -msgid "Redirect URL after a proposal has been submitted" +#: 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/Form/ProposalAdminForm.php:205 -msgid "Redirect URL after a proposal has been cancelled" +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:237 +msgid "Error saving support: @message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:211 -msgid "Submission text when a proposal has been submitted" +#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:104 +msgid "Error setting draft proposal: @message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:219 -msgid "Support form" +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.info.yml:0 +msgid "Hoeringsportal citizen proposal" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:224 -msgid "Support intro" +#: 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/src/Form/ProposalAdminForm.php:250 -msgid "Redirect URL after a proposal has been supported" +#: 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/ProposalAdminForm.php:257 -msgid "Submission text when a proposal has been supported" -msgstr "" - -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:267 -msgid "Sidebar" -msgstr "Sidebar" +#: 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:272 -msgid "Sidebar text" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:102;231 +msgid "Name help" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:282 -msgid "Save" +#: 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:311 -msgid "Survey webform" +#: 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:316 -msgid "Select survey webform" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:165 +msgid "Number of allowed characters for title field." 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/templates/citizen-proposal-support-counter.html.twig:13 +msgid "Number of supporters" +msgstr "Antal støtter" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:325 -msgid "Survey description" -msgstr "" +#: 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/ProposalAdminForm.php:328 -msgid "Tell a little about why the survey is shown." -msgstr "" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:72 +msgid "Phone" +msgstr "Telefonnummer" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:364 -msgid "Emails" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:108 +msgid "Phone help" msgstr "" -#: 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." +#: 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:373 -msgid "Editor email address" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:432 +msgid "Please enter a survey description." msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:379 modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 +#: 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 +#: 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:381 modules/custom/hoeringsportal_citizen_proposal/src/Plugin/EmailBuilder/CitizenEmailBuilder.php:18 -msgid "Proposal published (citizen)" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:146 +msgid "Proposal help" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:389 -msgid "Subject" -msgstr "Emne" - -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:395 -msgid "Content" -msgstr "Content" - -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:412 -msgid "Citizen proposal settings sucessfully saved." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:133 +msgid "Proposal intro" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:423 -msgid "Please enter a path on the form /node/«id»." +#: 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/src/Form/ProposalAdminForm.php:432 -msgid "Please enter a survey description." +#: 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/ProposalFormAdd.php:32 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:29 -msgid "You have to authenticate to add a proposal" +#: 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/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:199 +msgid "Redirect URL after a proposal has been submitted" +msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:72 -msgid "Phone" -msgstr "Telefonnummer" +#: 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:83 modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormSupport.php:94 -msgid "Email" -msgstr "Email" +#: 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/ProposalFormAdd.php:92 -msgid "Display email" -msgstr "Ja, vis min e-mail på mit borgerforslag" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:152 +msgid "Remarks help" +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:282 +msgid "Save" +msgstr "" -#: 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:318 +msgid "Select a survey to show as part of the form. Manage surveys." +msgstr "" -#: 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/src/Form/ProposalAdminForm.php:316 +msgid "Select survey webform" +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: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/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:267 +msgid "Sidebar" +msgstr "Sidebar" -#: 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" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:272 +msgid "Sidebar text" msgstr "" -"Jeg har læst betingelserne og giver mit samtykke Læs mere " -"her" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:182 -msgid "Update proposal" -msgstr "Opdater borgerforslag" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:93 +msgid "Sign out" +msgstr "Log ud" -#: 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/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/src/Form/ProposalFormAdd.php:223;236;240 -msgid "Too many characters used." +#: 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/ProposalFormApprove.php:73 -msgid "(Not shown on proposal)" -msgstr "Ikke synligt for andre" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:389 +msgid "Subject" +msgstr "Emne" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:75 -msgid "E-mail" -msgstr "E-mail" +#: 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/ProposalFormApprove.php:87 -msgid "Phone number" -msgstr "Telefonnummer" +#: 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/src/Form/ProposalFormApprove.php:140 -msgid "Approve proposal" -msgstr "Godkend borgerforslag" +#: modules/custom/hoeringsportal_citizen_proposal/hoeringsportal_citizen_proposal.routing.yml:0 +msgid "Support citizen proposal" +msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:145 -msgid "Edit proposal" -msgstr "Ret borgerforslag" +#: 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/ProposalFormApprove.php:153 -msgid "Cancel proposal" -msgstr "Fortryd borgerforslag" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:219 +msgid "Support form" +msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:170 -msgid "Thank you for your submission." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:224 +msgid "Support intro" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormApprove.php:188 -msgid "Your submission has been cancelled." -msgstr "Dit borgerforslag er blevet slettet" +#: 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/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/templates/form--proposal-support-form.html.twig:19 +msgid "Support the proposal" +msgstr "Støt borgerforslaget" -#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormBase.php:70 -msgid "Authenticate with MitID" +#: 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/ProposalFormBase.php:89 -msgid "You're currently authenticated as @name" -msgstr "Du er logget ind som @name" - -#: 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:29 -msgid "You have to authenticate to support a proposal" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:325 +msgid "Survey description" 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." +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:311 +msgid "Survey webform" 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/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/ProposalAdminForm.php:328 +msgid "Tell a little about why the survey is shown." +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/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/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/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/Helper/CitizenAccessChecker.php:59 -msgid "Citizen access @granted: @values" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalAdminForm.php:140 +msgid "Title help" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:104 -msgid "Error setting draft proposal: @message" +#: modules/custom/hoeringsportal_citizen_proposal/src/Form/ProposalFormAdd.php:223;236;240 +msgid "Too many characters used." msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal/src/Helper/Helper.php:237 -msgid "Error saving support: @message" +#: 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/Helper/Helper.php:362 -msgid "Error finding overdue proposals: @message" +#: 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/Helper/Helper.php:399 -msgid "Error finishing proposal with id:@nid: @message" +#: 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/Plugin/Block/CitizenProposalSupportCounter.php:11 -msgid "Citizen proposal support counter" +#: 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/templates/citizen-proposal-support-counter.html.twig:13 -msgid "Number of supporters" -msgstr "Antal støtter" +#: 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/templates/form--proposal-support-form.html.twig:19 -msgid "Support the proposal" -msgstr "Støt borgerforslaget" +#: 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 index d48321146..fd6593bf0 100644 --- 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 @@ -19,54 +19,63 @@ msgstr "" "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/hoeringsportal_citizen_proposal_archiving.info.yml:0 -msgid "Hoeringsportal citizen proposal archiving" +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:108 +msgid "@message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 -msgid "Archives citizen proposals in GetOrganized." +#: 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 "ITK" +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/src/Archiver/GetOrganizedArchiver.php:54 -msgid "Done 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/src/Archiver/GetOrganizedArchiver.php:108 -msgid "@message" +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:13 +msgid "Citizen proposal" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:51 -msgid "Archived at" +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:151 +msgid "Citizen proposal @label archived" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/FormHelper.php:68 -msgid "Archive URL" -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/src/Helper/Helper.php:139 -msgid "Node @label changed after requested archival time (@some_time > @another_time). Skipping." +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:37 +msgid "Details" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:107 -msgid "Job for archiving citizen proposal @label added to the queue @queue." +#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Archiver/GetOrganizedArchiver.php:54 +msgid "Done archiving node @label" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Helper/Helper.php:151 -msgid "Citizen proposal @label archived" -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." @@ -76,59 +85,50 @@ msgstr "" msgid "Error processing job: @message" msgstr "" -#: modules/custom/hoeringsportal_citizen_proposal_archiving/src/Plugin/AdvancedQueue/JobType/ArchiveCitizenProposalJob.php:12 -msgid "Archive citizen proposal" +#: 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/templates/citizen_proposal.html.twig:13 -msgid "Citizen proposal" +#: modules/custom/hoeringsportal_citizen_proposal_archiving/hoeringsportal_citizen_proposal_archiving.info.yml:0 +msgid "ITK" 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:23 -msgid "Author" -msgstr "Author" +#: 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/templates/citizen_proposal.html.twig:30 -msgid "Email" -msgstr "Email" +#: 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:37 -msgid "Details" +#: 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:46 -msgid "Vote start" -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:49 -msgid "Vote end" -msgstr "" +#: 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:56 -msgid "Printed at" +#: modules/custom/hoeringsportal_citizen_proposal_archiving/templates/citizen_proposal.html.twig:49 +msgid "Vote end" 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: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 index a69b36ba8..70ad50502 100644 --- 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 @@ -20,236 +20,237 @@ msgstr "" "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/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." +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:202 +msgid "Citizen proposal teaser default image" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 -msgid "Hoeringsportal admin" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:164 +msgid "Default images" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 -msgid "Provides config settings and admin interface for hoeringsportalen" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:131 +msgid "External references" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 -msgid "Hoeringsportal" +#: 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/hoeringsportal_config_settings.links.menu.yml:0;0 -msgid "User's manual" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:55 +msgid "Footer bottom menu" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 -msgid "General settings" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:68 +msgid "Footer text first column" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 -msgid "Hearing settings" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:92 +msgid "Footer text forth column" msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 -msgid "General" -msgstr "General" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:76 +msgid "Footer text seccond column" +msgstr "" -#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.routing.yml:0 -msgid "Hearing" -msgstr "Høring" +#: 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/src/Controller/PageController.php:54 -msgid "No user's manual url defined!" +#: 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/src/Form/HearingSettingsForm.php:43 -msgid "The number of hours before the deadline of a hearing the warning should appear." +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.links.task.yml:0 +msgid "Hearing settings" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/HearingSettingsForm.php:48 modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:300 -msgid "Save changes" +#: 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:47 -msgid "Footer" -msgstr "Footer" - -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:55 -msgid "Footer bottom menu" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:122 +msgid "Hearings overview page" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:62 -msgid "Footer bottom links" +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:68 -msgid "Footer text first column" +#: modules/custom/hoeringsportal_config_settings/hoeringsportal_config_settings.info.yml:0 +msgid "Hoeringsportal admin" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:76 -msgid "Footer text seccond column" +#: 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:84 -msgid "Footer text third column" +#: 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:92 -msgid "Footer text forth column" +#: 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:100 -msgid "Overview pages" +#: 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:104 -msgid "These references are used by the system when creating links automatically. Only change these if you create a new overview page." +#: 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:116 -msgid "The page used for an overview of initiatives" -msgstr "" - -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:122 -msgid "Hearings overview page" -msgstr "" - -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:126 -msgid "The page used for an overview of hearings" +#: 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:131 -msgid "External references" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:293 +msgid "Login message" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:135 -msgid "Links to external pages." +#: 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:144 -msgid "Used when linking to the 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:152 -msgid "Used when linking to a map of all projects." +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:285 +msgid "Messages" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:157 -msgid "Map of all hearings" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:279 +msgid "Newsletter iframe height" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:160 -msgid "Used when linking to a map of all hearings." +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:273 +msgid "Newsletter iframe source" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:164 -msgid "Default images" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:264 +msgid "Newsletter node page" 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." +#: 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:176 -msgid "Hearing teaser default image" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:100 +msgid "Overview pages" 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" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:240 +msgid "Pages" msgstr "" -#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:189 -msgid "Public meeting teaser default image" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:215 +msgid "Project teaser default image" 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" +#: 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:202 -msgid "Citizen proposal teaser default image" +#: modules/custom/hoeringsportal_config_settings/src/Form/ItkGeneralSettingsForm.php:189 +msgid "Public meeting teaser default image" 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" +#: 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/ItkGeneralSettingsForm.php:215 -msgid "Project teaser default image" +#: 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:222 -msgid "Image used on project teaser if hearing does not have an image attached" +#: 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:235 -msgid "Image used on static page teaser if hearing does not have an image attached" +#: 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:240 -msgid "Pages" +#: 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/ItkGeneralSettingsForm.php:249 -msgid "Front page" +#: 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:257 -msgid "User's manual url" +#: 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:264 -msgid "Newsletter node page" +#: 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:268 -msgid "The node to attach the newsletter signup form to." +#: 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:273 -msgid "Newsletter iframe source" +#: 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:279 -msgid "Newsletter iframe height" +#: 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:281 -msgid "The height of the iframe i.e 450px" +#: 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/src/Form/ItkGeneralSettingsForm.php:285 -msgid "Messages" +#: 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:293 -msgid "Login message" +#: 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 index efaec594e..f9dd2a09a 100644 --- 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 @@ -14,24 +14,24 @@ msgstr "" "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 "Hoeringsportal content access" +msgid "Control access to certain content" msgstr "" #: modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml:0 -msgid "Control access to certain content" +msgid "Hoeringsportal" msgstr "" #: modules/custom/hoeringsportal_content_access/hoeringsportal_content_access.info.yml:0 -msgid "Hoeringsportal" +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 index 87dd4c3d9..7f12b82f2 100644 --- 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 @@ -19,14 +19,31 @@ msgstr "" "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/hoeringsportal_content_blocks.info.yml:0 -msgid "Hoeringsportal content blocks" -msgstr "" +#: 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" @@ -36,39 +53,22 @@ msgstr "" 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/HearingTypeMoreInfo.php:8 -msgid "Node more info" -msgstr "Mere information" - #: 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 "" - -#: 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-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-meeting-warning.html.twig:14 -msgid "Note! This public meeting has been held." -msgstr "Denne begivenhed er afholdt" - -#: 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" - diff --git a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po index 472c3f33d..6f4d6543e 100644 --- a/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po +++ b/web/modules/custom/hoeringsportal_data/translations/hoeringsportal_data.da.po @@ -25,133 +25,144 @@ msgstr "" "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/hoeringsportal_data.info.yml:0 -msgid "Høringsportal data" -msgstr "" - -#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 -msgid "Custom data stuff." -msgstr "" - -#: 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" +#: 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/hoeringsportal_data.routing.yml:0;0;0 -msgid "Hearings" -msgstr "Hearings" - -#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 -msgid "Hearing tickets" -msgstr "Høringssvar" - -#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 -msgid "Public meetings" -msgstr "" - -#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 -msgid "Maps" +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:142 +msgid "Available types" msgstr "" -#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 -msgid "Maps configuration" +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:167 +msgid "Available types: @types" msgstr "" -#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 -msgid "GeoJSON hearings (v2)" +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +msgid "Custom data stuff." 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" +#: 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/Drush/Commands/DrushCommands.php:106 -msgid "No hearings found" +#: 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/FieldFormatter/LocalplanDefaultFormatter.php:8 modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/LocalplanDefaultWidget.php:9 -msgid "Localplan default" +#: 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/src/Plugin/Field/FieldFormatter/MapDefaultFormatter.php:8 modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:11 -msgid "Map default" +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "GeoJSON hearings (v2)" 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/hoeringsportal_data.routing.yml:0 +msgid "Hearing tickets" +msgstr "Høringssvar" -#: 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/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 -msgid "Local plan" +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:9 +msgid "Hoeringsportal" 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" +#: modules/custom/hoeringsportal_data/hoeringsportal_data.info.yml:0 +msgid "Høringsportal data" 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" +#: 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: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/src/Plugin/Field/FieldType/MapItem.php:9 -msgid "Map display" +#: 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/FieldWidget/MapDefaultWidget.php:73 -msgid "Use @url and copy the generated GeoJSON code into this fields." +#: 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/Field/FieldWidget/MapDefaultWidget.php:85 -msgid "localplanids" +#: 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/FieldWidget/MapDefaultWidget.php:87 -msgid "@url" +#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldType/MapItem.php:9 +msgid "Map display" msgstr "" -#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:113 -msgid "Enter address or coordinates (e.g. \"56.1535557,10.2120222\")" +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Maps" msgstr "" -#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:142 -msgid "Available types" +#: modules/custom/hoeringsportal_data/hoeringsportal_data.routing.yml:0 +msgid "Maps configuration" msgstr "" -#: modules/custom/hoeringsportal_data/src/Plugin/Field/FieldWidget/MapDefaultWidget.php:167 -msgid "Available types: @types" +#: 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/Validation/Constraint/MapConfiguration.php:7 -msgctxt "Validation" -msgid "Map configuration" -msgstr "Map configuration" +#: 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 index 9da1de5db..0bd348731 100644 --- a/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po +++ b/web/modules/custom/hoeringsportal_deskpro/translations/hoeringsportal_deskpro.da.po @@ -32,65 +32,59 @@ msgstr "" "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/hoeringsportal_deskpro.module:21 -msgid "About" -msgstr "Om" - -#: 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.install:353 -msgid "Batch finished" +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:308;338 +msgid "@message" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 -msgid "Høringsportal Deskpro" +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:230 +msgid "@message: @body" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 -msgid "Hoeringsportal" -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/hoeringsportal_deskpro.links.task.yml:0 -msgid "Deskpro settings" -msgstr "" +#: 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.permissions.yml:0 -msgid "Access Deskpro settings" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "API" msgstr "" #: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Synchronize hearing" +msgid "API docs" 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/hoeringsportal_deskpro.module:21 +msgid "About" +msgstr "Om" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Departments autocomplete" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.permissions.yml:0 +msgid "Access Deskpro settings" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Agents autocomplete" -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/hoeringsportal_deskpro.routing.yml:0 -msgid "API" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:78 +msgid "Add hearing ticket form" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "API docs" -msgstr "" +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:95 +msgid "Address" +msgstr "Adresse" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Departments" +#: 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 @@ -98,217 +92,204 @@ msgid "Agents" msgstr "" #: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Hearings" -msgstr "Hearings" - -#: 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 "Tickets" +msgid "Agents autocomplete" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Ticket" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:222 +msgid "Available departments" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Ticket messages" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:114 +msgid "Available tokens: @tokens" msgstr "" -#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 -msgid "Ticket attachments" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.install:353 +msgid "Batch finished" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:78 -msgid "Add hearing ticket form" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:280 +msgid "Cache ttl" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:84 -msgid "Intro text" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:283 +msgid "Cache ttl in seconds." msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:93 -msgid "Consent text" -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:114 -msgid "Available tokens: @tokens" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:93 +msgid "Consent text" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:123 -msgid "Representation list" -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:136 -msgid "Representation title (@title)" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:265 +msgid "Default Deskpro ticket language" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:142 -msgid "Is available" +#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:703 +msgid "Deleted hearing replies from hearing @label (@id): @result" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:147 -msgid "Require organization" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Departments" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:166 -msgid "Deskpro url" +#: 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:181 -msgid "Deskpro ticket custom fields" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:272 +msgid "Deskpro data token" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:222 -msgid "Available departments" +#: 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/src/Form/DeskproSettingsForm.php:225 -msgid "The departments that can be attached to hearings." +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.links.task.yml:0 +msgid "Deskpro settings" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:225 -msgid "Please enter a valid Deskpro url and api code key and save the form." +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:181 +msgid "Deskpro ticket custom fields" 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" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:166 +msgid "Deskpro url" 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/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/DeskproSettingsForm.php:265 -msgid "Default Deskpro ticket language" -msgstr "" +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:83 +msgid "Email address" +msgstr "E-mailadresse" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:272 -msgid "Deskpro data token" +#: 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/DeskproSettingsForm.php:275 -msgid "Token used for accessing the data api." +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:337 +msgid "Error submitting hearing ticket" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:280 -msgid "Cache ttl" -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/Form/DeskproSettingsForm.php:283 -msgid "Cache ttl in seconds." +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketBlock.php:7 +msgid "Hearing ticket" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:288 -msgid "Synchronization delay" -msgstr "" +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 +msgid "Hearing ticket add" +msgstr "Hearing ticket add" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:291 -msgid "Synchronization delay in seconds." +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAuthorBlock.php:7 +msgid "Hearing ticket author" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:296 -msgid "Save" +#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketTitleBlock.php:5 +msgid "Hearing ticket title" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:309 -msgid "Please enter a valid url." -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/src/Form/DeskproSettingsForm.php:318 -msgid "This field is already used by @name." -msgstr "" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Hearings" +msgstr "Hearings" -#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:349 -msgid "Your settings have been saved." +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Hoeringsportal" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:77 -msgid "Your full name" -msgstr "For- og efternavn" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.info.yml:0 +msgid "Høringsportal Deskpro" +msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:83 -msgid "Email address" -msgstr "E-mailadresse" +#: 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:89 -msgid "Confirm email address" -msgstr "Bekræft e-mailadresse" +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:152 +msgid "I represent" +msgstr "Jeg udtaler mig som" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:95 -msgid "Address" -msgstr "Adresse" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:84 +msgid "Intro text" +msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:96 -msgid "Your address will not be shown on the website." +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:142 +msgid "Is available" msgstr "" -"Din adresse vil ikke blive vist på hjemmesiden - se evt. betingelser " -"nederst på siden" -#: 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:231 +msgid "Languages" +msgstr "Languages" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:122 -msgid "Street and number" -msgstr "Vejnavn og nummer" +#: 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/src/Form/HearingTicketAddForm.php:152 -msgid "I represent" -msgstr "Jeg udtaler mig som" +#: 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 +#: 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/HearingTicketAddForm.php:174 -msgid "Subject" -msgstr "Emne" - -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:180 -msgid "Message" -msgstr "Høringssvar" - -#: 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: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:211 -msgid "Send" +#: 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/HearingTicketAddForm.php:231 -msgid "Your name cannot contain numbers." -msgstr "Dit navn må ikke indeholde tal." - -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:236 -msgid "Confirmation email does not match email." +#: 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 @@ -319,127 +300,135 @@ msgstr "" msgid "Please enter your street and number." msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:325 -msgid "Your hearing ticket has being submitted and will appear here in a few minutes." +#: 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 "" -"Dit høringssvar er indsendt og bliver vist her på siden inden for " -"kort tid." -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:337 -msgid "Error submitting hearing ticket" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:136 +msgid "Representation title (@title)" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:308;338 -msgid "@message" +#: 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/Plugin/AdvancedQueue/JobType/SynchronizeTicket.php:12 -msgid "Update or create ticket" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:296 +msgid "Save" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Plugin/Block/HearingTicketAddBlock.php:7 -msgid "Hearing ticket add" -msgstr "Hearing ticket add" +#: 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/Plugin/Block/HearingTicketAuthorBlock.php:7 -msgid "Hearing ticket author" +#: 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/src/Plugin/Block/HearingTicketBlock.php:7 -msgid "Hearing ticket" +#: 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/Plugin/Block/HearingTicketTitleBlock.php:5 -msgid "Hearing ticket title" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:291 +msgid "Synchronization delay in seconds." msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Plugin/Validation/Constraint/AgentEmailContraint.php:7 -msgctxt "Validation" -msgid "Agent email" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Synchronize hearing" msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:703 -msgid "Deleted hearing replies from hearing @label (@id): @result" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:225 +msgid "The departments that can be attached to hearings." msgstr "" -#: modules/custom/hoeringsportal_deskpro/src/Service/HearingHelper.php:710 -msgid "Error deleting hearing replies on hearing @label (@id): @message" +#: 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/Service/HearingHelper.php:230 -msgid "@message: @body" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:318 +msgid "This field is already used by @name." msgstr "" -#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:14 -msgid "Name" -msgstr "Navn" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket" +msgstr "" -#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:16 -msgid "Sent d." -msgstr "Indsendt" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Ticket attachments" +msgstr "" -#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-ticket-author.html.twig:21 -msgid "Represents" -msgstr "Udtaler sig som" +#: 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/templates/block/hoeringsportal-hearing-ticket-title.html.twig:15 -msgid "Hearing reply" -msgstr "Høringssvar" +#: modules/custom/hoeringsportal_deskpro/hoeringsportal_deskpro.routing.yml:0 +msgid "Tickets" +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:275 +msgid "Token used for accessing the data api." +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/Plugin/AdvancedQueue/JobType/SynchronizeTicket.php:12 +msgid "Update or create ticket" +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/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/templates/block/hoeringsportal-hearing-tickets.html.twig:18 -msgid "Show hearing tickets" -msgstr "Vis indkomne svar" +#: modules/custom/hoeringsportal_deskpro/src/Form/HearingTicketAddForm.php:77 +msgid "Your full name" +msgstr "For- og efternavn" -#: 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/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/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\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

    " +#: 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/templates/block/hoeringsportal-hearing-tickets.html.twig:90 -msgid "@ticket_ref by @person_name on behalf of @organization (@organization_type)" +#: modules/custom/hoeringsportal_deskpro/src/Form/DeskproSettingsForm.php:349 +msgid "Your settings have been saved." msgstr "" -"@ticket_ref af @person_name på vegne af @organization " -"(@organization_type)" - -#: modules/custom/hoeringsportal_deskpro/templates/block/hoeringsportal-hearing-tickets.html.twig:97 -msgid "@ticket_ref by @person_name" -msgstr "@ticket_ref af @person_name" - diff --git a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po index 6ba762cc3..7a1a8a2f8 100644 --- a/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po +++ b/web/modules/custom/hoeringsportal_forms/translations/hoeringsportal_forms.da.po @@ -15,68 +15,68 @@ msgstr "" "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/hoeringsportal_forms.module:196 -msgid "SAML login" -msgstr "ADFS-login" +#: 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/hoeringsportal_forms.module:207 -msgid "Login providers" +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:155 +msgid "Autocomplete" msgstr "" -#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 -msgid "Hoeringsportal forms" +#: 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/hoeringsportal_forms.info.yml:0 -msgid "Hoeringsportal" +#: 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:142 -msgid "Bundle" +#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:154 +msgid "Dropdown" msgstr "" -#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:144 -msgid "Select which bundle to show nodes for in the regular options." +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal" msgstr "" -#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:152 -msgid "Selection type" +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.info.yml:0 +msgid "Hoeringsportal forms" msgstr "" -#: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:154 -msgid "Dropdown" +#: 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/src/Plugin/views/filter/NodeIndexNid.php:155 -msgid "Autocomplete" +#: modules/custom/hoeringsportal_forms/hoeringsportal_forms.module:207 +msgid "Login providers" msgstr "" -#: 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/hoeringsportal_forms.module:196 +msgid "SAML login" +msgstr "ADFS-login" #: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:182;245 -msgid "Select nodes from bundle @bundle" +msgid "Select content" msgstr "" #: modules/custom/hoeringsportal_forms/src/Plugin/views/filter/NodeIndexNid.php:182;245 -msgid "Select content" +msgid "Select nodes from bundle @bundle" 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\"." +#: 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:352 -msgid "Display error message" +#: 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 index dda092952..bc52d7a06 100644 --- a/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po +++ b/web/modules/custom/hoeringsportal_hearing/translations/hoeringsportal_hearing.da.po @@ -17,6 +17,7 @@ msgstr "" "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" @@ -26,79 +27,78 @@ msgstr "" msgid "About" msgstr "Om" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:25 -msgid "Hearings" -msgstr "Hearings" +#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:27 +msgid "Add hearing reply" +msgstr "Tilføj høringssvar" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:55 -msgid "Hearing deadline: @deadline" +#: 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.info.yml:0 -msgid "Hoeringsportal hearing" +#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.module:55 +msgid "Hearing deadline: @deadline" msgstr "" -#: modules/custom/hoeringsportal_hearing/hoeringsportal_hearing.info.yml:0 -msgid "Stuff related to hearing content type" -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/modules/hoeringsportal_hearing_fixtures/hoeringsportal_hearing_fixtures.info.yml:0 -msgid "Hoeringsportal hearing fixtures" +#: 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 "Provides hearing fixtures for the site." +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:26 -msgid "GIS data" -msgstr "" - #: modules/custom/hoeringsportal_hearing/src/TokenHelper.php:32 msgid "Insert GIS minimap by UUID" msgstr "" -#: 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:82 msgid "Invalid GIS map UUID: @map_uuid" msgstr "Ugyldigt GIS-kort-uuid: @map_uuid" -#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:27 -msgid "Add hearing reply" -msgstr "Tilføj høringssvar" - -#: modules/custom/hoeringsportal_hearing/src/Helper/FormHelper.php:80 -msgid "The start date must not be in the past" +#: 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/src/Helper/FormHelper.php:84 -msgid "The reply deadline must not be in the past" +#: 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:87 -msgid "The reply deadline must not be before the start date" +#: 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:94 -msgid "The delete date must not be before the reply deadline" +#: 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 index 51e89db70..4c2533fb2 100644 --- 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 @@ -14,36 +14,36 @@ msgstr "" "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/hoeringsportal_openid_connect.info.yml:0 -msgid "Hoeringsportal OpenID Connect" +#: 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 "OpenID Connect stuff" +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:416 -msgid "Try again" +#: 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/src/Controller/OpenIDConnectController.php:329 -msgid "Invalid state" +#: 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:398 -msgid "Error" +#: 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 index 96b2d99ed..17781cbd9 100644 --- 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 @@ -14,48 +14,48 @@ msgstr "" "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/hoeringsportal_project_timeline.info.yml:0 -msgid "Hoeringsportal project timeline" -msgstr "" +#: modules/custom/hoeringsportal_project_timeline/src/Plugin/Block/ProjectTimeline.php:79 +msgid "Expected end date" +msgstr "Forventet slutdato" -#: 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: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/src/Plugin/Block/ProjectTimeline.php:54 -msgid "Start" -msgstr "Start" +#: 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:70 -msgid "Expected finish" -msgstr "Forventet afsluttet" - -#: 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:13 +msgid "Project timeline" +msgstr "" -#: 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 "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:13 -msgid "Project timeline" -msgstr "" - +#: 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 index 9cb057ced..1cb8d6896 100644 --- 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 @@ -16,43 +16,60 @@ msgstr "" "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/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:32 +msgid "Address" +msgstr "Adresse" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:212;231 -msgid "Please enter a value!" -msgstr "" +#: 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:255 -msgid "The registration deadline must not be in the past." +#: 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.module:265;294 -msgid "The meeting time must not be in the past." +#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.info.yml:0 +msgid "Hoeringsportal public meeting" msgstr "" -#: modules/custom/hoeringsportal_public_meeting/hoeringsportal_public_meeting.module:268;297 -msgid "The registration deadline must not be after the meeting starts." +#: 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:278 -msgid "Please enter an address" -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 "" @@ -61,59 +78,42 @@ msgstr "" msgid "Please enter number of spots" 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:370 -msgid "Hearing deadline has passed" -msgstr "Høringsfristen er overskredet" +#: 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/hoeringsportal_public_meeting.info.yml:0 -msgid "Hoeringsportal public meeting" +#: 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.info.yml:0 -msgid "Hoeringsportal" -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/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 -msgid "Public meeting summary" +#: 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/src/Plugin/Block/PublicMeetingSummaryBlock.php:10 -msgid "Public meeting" -msgstr "Begivenhed" +#: 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/templates/hoeringsportal-public-meeting-summary.html.twig:14;20 -msgid "Date" -msgstr "Dato" +#: 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 "" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:28 -msgid "Place" -msgstr "Lokation" - -#: 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:37 -msgid "Last signup date" -msgstr "Tilmeldingsfrist" - -#: modules/custom/hoeringsportal_public_meeting/templates/hoeringsportal-public-meeting-summary.html.twig:41 -msgid "Sign up for public meeting" -msgstr "Tilmeld dig her" - diff --git a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po index 347aefdf1..14514ac9c 100644 --- a/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po +++ b/web/modules/custom/hoeringsportal_quicklinks/translations/hoeringsportal_quicklinks.da.po @@ -14,24 +14,24 @@ msgstr "" "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 quicklinks" +msgid "Hoeringsportal" msgstr "" #: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 -msgid "Provides quicklinks block" +msgid "Hoeringsportal quicklinks" msgstr "" #: modules/custom/hoeringsportal_quicklinks/hoeringsportal_quicklinks.info.yml:0 -msgid "Hoeringsportal" +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 index 4d6de053c..817a893b0 100644 --- 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 @@ -12,6 +12,7 @@ msgstr "" "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" @@ -22,10 +23,9 @@ msgid "Hoeringsportal delta sync fixtures" msgstr "" #: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 -msgid "Provides test fixtures for delta sync." +msgid "ITK" msgstr "" #: modules/custom/hoeringsportal_test_delta_sync_fixtures/hoeringsportal_test_delta_sync_fixtures.info.yml:0 -msgid "ITK" +msgid "Provides test fixtures for delta sync." msgstr "" - diff --git a/web/modules/custom/itk_admin/translations/itk_admin.da.po b/web/modules/custom/itk_admin/translations/itk_admin.da.po index 598b7c8c7..055ee9d85 100644 --- a/web/modules/custom/itk_admin/translations/itk_admin.da.po +++ b/web/modules/custom/itk_admin/translations/itk_admin.da.po @@ -18,11 +18,28 @@ msgstr "" "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/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 "" + #: modules/custom/itk_admin/itk_admin.info.yml:0 msgid "ITK admin" msgstr "" @@ -31,8 +48,9 @@ msgstr "" msgid "Provides admin interface for certain settings" msgstr "" -#: modules/custom/itk_admin/itk_admin.info.yml:0 -msgid "ITK" +#: 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 @@ -43,23 +61,6 @@ msgstr "Site specifikke indstillinger" msgid "Sitespecific 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.permissions.yml:0 -msgid "Access itk admin settings." -msgstr "" - -#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:30 -msgid "@site_name 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." - -#: modules/custom/itk_admin/src/Form/AdminSettingsForm.php:49 -msgid "Configure" -msgstr "" - 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 index 4363fffa8..af30421b8 100644 --- 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 @@ -15,18 +15,19 @@ msgstr "" "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/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:7 +msgid "Edit this page" +msgstr "Redigér denne side" -#: modules/custom/itk_admin_links/itk_admin_links.info.yml:0 -msgid "Show an admin icon and a row of links." -msgstr "" +#: 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" @@ -36,15 +37,14 @@ msgstr "" msgid "ITK Admin links" msgstr "ITK Admin links" -#: 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/templates/itk-admin-links-block.html.twig:7 -msgid "Edit this page" -msgstr "Redigér denne side" +#: 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" +#: 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/themes/custom/hoeringsportal/translations/hoeringsportal.da.po b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po index daec4ae5d..d8f48e282 100644 --- a/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po +++ b/web/themes/custom/hoeringsportal/translations/hoeringsportal.da.po @@ -54,462 +54,483 @@ msgstr "" "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" -#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 -msgid "xs" -msgstr "" +#: 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" -#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 -msgid "sm" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "A theme for Høringsportal" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 -msgid "md" +#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:7 +msgid "Aarhus Municipality" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 -msgid "lg" +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:13 +msgid "Account activities" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 -msgid "xl" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:43 +msgid "Add contribution" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Høringsportal" -msgstr "" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig:46 +msgid "Add hearing ticket" +msgstr "Tilføj høringssvar" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "A theme for Høringsportal" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:64 +msgid "Address" +msgstr "Adresse" + +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:18 +msgid "Article" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Hoeringsportal" +#: 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 "" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Header" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:51;66 +msgid "Change user information" msgstr "" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Hero" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:21 +msgid "Citizen proposal" msgstr "" #: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 msgid "Content" msgstr "Content" -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Sidebar" -msgstr "Sidebar" - -#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 -msgid "Footer" -msgstr "Footer" - -#: 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/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" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:10 -msgid "Facebook" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:34 +msgid "Contribute" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:18 -msgid "X (Twitter)" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:100 +msgid "Copied to clipboard" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:26 -msgid "Whatsapp" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:99 +msgid "Copy to clipboard" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:34 -msgid "Facebook messenger" +#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:52 +msgid "Create user" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:42 -msgid "Pinterest" -msgstr "" +#: 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" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:50 -msgid "Linkedin" -msgstr "" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:52;101 +msgid "Date" +msgstr "Dato" #: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:58 msgid "Digg" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:66 -msgid "Tumblr" -msgstr "" +#: 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" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:74 -msgid "Reddit" +#: 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/better-social-sharing-buttons.html.twig:90 themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:59 -msgid "Email" -msgstr "Email" - -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:99 -msgid "Copy to clipboard" -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:100 -msgid "Copied to clipboard" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:10 +msgid "Facebook" msgstr "" -#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:115 -msgid "Print" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:34 +msgid "Facebook messenger" 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/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" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Footer" +msgstr "Footer" -#: themes/custom/hoeringsportal/templates/newsletter-bottom-link.html.twig:7 -msgid "Aarhus Municipality" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:31 +msgid "Go to next page" msgstr "" -#: themes/custom/hoeringsportal/templates/block/block--system-branding-block.html.twig:18;19;20;24 -msgid "Home" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:18 +msgid "Go to previous page" msgstr "" -#: themes/custom/hoeringsportal/templates/block/block--system-menu-block--secondary-navigation.html.twig:49 -msgid "Log out" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Header" msgstr "" -#: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:54 -msgid "Phone" -msgstr "Telefonnummer" - #: themes/custom/hoeringsportal/templates/components/base-card.html.twig:9 msgid "Hearing" msgstr "Høring" -#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:12 -msgid "Project" -msgstr "Project" - -#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:15 -msgid "Public meeting" -msgstr "Begivenhed" - -#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:18 -msgid "Article" -msgstr "" - -#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:21 -msgid "Citizen proposal" -msgstr "" +#: themes/custom/hoeringsportal/templates/field/field--default--node-title.html.twig:42 +msgid "Hearing reply for" +msgstr "Høringssvar for" -#: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 -msgid "Progress" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hero" msgstr "" -#: themes/custom/hoeringsportal/templates/content/node--citizen-proposal--teaser.html.twig:11 -msgid "End date" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Hoeringsportal" msgstr "" -#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:33 -msgid "replies" +#: themes/custom/hoeringsportal/templates/block/block--system-branding-block.html.twig:18;19;20;24 +msgid "Home" msgstr "" -#: 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" +#: themes/custom/hoeringsportal/hoeringsportal.info.yml:0 +msgid "Høringsportal" msgstr "" -#: 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" +#: 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 "" -#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:72 -msgid "Initiative" -msgstr "Initiativ" - #: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:80 msgid "Information page" msgstr "Information" -#: 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/templates/ds/ds-2col-stacked--node-citizen-proposal.html.twig:59;68 -msgid "Support the proposal" -msgstr "Støt borgerforslaget" +#: themes/custom/hoeringsportal/templates/content/node--list-display.html.twig:72 +msgid "Initiative" +msgstr "Initiativ" -#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig:40 -msgid "Project info" -msgstr "Initiativ info" +#: themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig:44;51 +msgid "Last date for signup" +msgstr "Tilmeldingsfrist" -#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:37 -msgid "User validated" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:50 +msgid "Linkedin" 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" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:60;100 +msgid "Location" msgstr "" -#: 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." +#: themes/custom/hoeringsportal/templates/block/block--system-menu-block--secondary-navigation.html.twig:49 +msgid "Log out" 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/field/field--field-media-document.html.twig:42 +msgid "Materials" +msgstr "Materialer" -#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:45 themes/custom/hoeringsportal/templates/field/field--comment.html.twig:62 -msgid "Validate" +#: 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" + +#: 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/ds/ds-2col-stacked--user.html.twig:51;66 -msgid "Change user information" +#: 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 "" -#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:56 -msgid "Your information" +#: 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 "" -#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:59 -msgid "User validation" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:49;50;55 +msgid "Next" 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" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:32 +msgid "Next page" msgstr "" #: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:63 msgid "Not yet validated" msgstr "" -#: 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 "" +#: 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/field/field--comment.html.twig:34 -msgid "Contribute" -msgstr "" +#: 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--comment.html.twig:43 -msgid "Add contribution" -msgstr "" +#: 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/field/field--comment.html.twig:52 -msgid "If you wan't to participate in the discussion you must create a user" +#: 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 "" -#: themes/custom/hoeringsportal/templates/field/field--comment.html.twig:52 -msgid "Create user" -msgstr "" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:46 +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:26 +msgid "Page" +msgstr "Side" -#: themes/custom/hoeringsportal/templates/field/field--default--node-title.html.twig:42 -msgid "Hearing reply for" -msgstr "Høringssvar for" - -#: 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/views/views-mini-pager.html.twig:14 +msgid "Pagination" +msgstr "" -#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:59 -msgid "Start" -msgstr "Start" +#: themes/custom/hoeringsportal/templates/block/block-content--aside-contact-info.html.twig:54 +msgid "Phone" +msgstr "Telefonnummer" -#: 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:42 +msgid "Pinterest" +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" +#: themes/custom/hoeringsportal/templates/navigation/pager.html.twig:37;38;43 +msgid "Previous" msgstr "" -#: 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" +#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:19 +msgid "Previous page" +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/navigation/menu-local-tasks.html.twig:16 +msgid "Primary tabs" +msgstr "Primary tabs" -#: 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/better-social-sharing-buttons.html.twig:115 +msgid "Print" +msgstr "" -#: 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" +#: themes/custom/hoeringsportal/templates/components/citizen-proposal-support-counter.html.twig:32 +msgid "Progress" +msgstr "" -#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-quicklinks.html.twig:46 -msgid "Add hearing ticket" -msgstr "Tilføj høringssvar" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:12 +msgid "Project" +msgstr "Project" -#: themes/custom/hoeringsportal/templates/field/field--field-media-document.html.twig:42 -msgid "Materials" -msgstr "Materialer" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--node-project.html.twig:40 +msgid "Project info" +msgstr "Initiativ info" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:52;101 -msgid "Date" -msgstr "Dato" +#: themes/custom/hoeringsportal/templates/components/base-card.html.twig:15 +msgid "Public meeting" +msgstr "Begivenhed" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:56;102 -msgid "Time" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:74 +msgid "Reddit" msgstr "" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:60;100 -msgid "Location" -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/field/field--field-pretix-dates.html.twig:64 -msgid "Address" -msgstr "Adresse" +#: themes/custom/hoeringsportal/templates/layout/page--search.html.twig:52 +msgid "Search" +msgstr "Search" -#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:68;103 -msgid "Spots" -msgstr "Pladser" +#: 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/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/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/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/navigation/menu-local-tasks.html.twig:21 +msgid "Secondary tabs" +msgstr "Secondary tabs" -#: themes/custom/hoeringsportal/templates/field/field--field-registration-deadline.html.twig:44;51 -msgid "Last date for signup" -msgstr "Tilmeldingsfrist" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:4 +msgid "Share the proposal" +msgstr "Del forslaget" -#: 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/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/form/form--search-block-form.html.twig:23 -msgid "Open search" -msgstr "Åben søgning" +#: 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/form/hoeringsportal-user-form.html.twig:13 -msgid "Account activities" -msgstr "" +#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:57 +msgid "Show all meetings" +msgstr "Vis alle begivenheder" -#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:23 -msgid "Validate account" -msgstr "" +#: 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/layout/page--search.html.twig:52 -msgid "Search" -msgstr "Search" +#: themes/custom/hoeringsportal/templates/field/field--field-pretix-dates.html.twig:68;103 +msgid "Spots" +msgstr "Pladser" -#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:16 -msgid "Primary tabs" -msgstr "Primary tabs" +#: themes/custom/hoeringsportal/templates/field/field--dynamic-block-field--node-project-timeline.html.twig:59 +msgid "Start" +msgstr "Start" -#: themes/custom/hoeringsportal/templates/navigation/menu-local-tasks.html.twig:21 -msgid "Secondary tabs" -msgstr "Secondary tabs" +#: 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/navigation/pager.html.twig:37;38;43 -msgid "Previous" +#: 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/navigation/pager.html.twig:46 themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:26 -msgid "Page" -msgstr "Side" +#: 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/navigation/pager.html.twig:49;50;55 -msgid "Next" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:66 +msgid "Tumblr" msgstr "" -#: 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" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:37 +msgid "User validated" +msgstr "" -#: themes/custom/hoeringsportal/templates/paragraph/paragraph--content-list.html.twig:54;58 -msgid "Show on map" -msgstr "Vis på kort" +#: themes/custom/hoeringsportal/templates/ds/ds-2col-stacked--user.html.twig:59 +msgid "User validation" +msgstr "" -#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:14 -msgid "Pagination" +#: 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/views/views-mini-pager.html.twig:18 -msgid "Go to previous page" +#: themes/custom/hoeringsportal/templates/form/hoeringsportal-user-form.html.twig:23 +msgid "Validate account" msgstr "" -#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:19 -msgid "Previous page" +#: 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/views/views-mini-pager.html.twig:20 -msgid "‹‹" +#: 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/views/views-mini-pager.html.twig:31 -msgid "Go to next page" +#: themes/custom/hoeringsportal/templates/better-social-sharing-buttons.html.twig:26 +msgid "Whatsapp" msgstr "" -#: themes/custom/hoeringsportal/templates/views/views-mini-pager.html.twig:32 -msgid "Next page" +#: 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/views/views-mini-pager.html.twig:33 -msgid "››" +#: 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/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/ds/ds-2col-stacked--user.html.twig:56 +msgid "Your information" +msgstr "" -#: 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/dataset/item-list--search-results.html.twig:38 +msgid "Your search yielded no result" +msgstr "Din søgning gav ingen resultater." -#: themes/custom/hoeringsportal/templates/views/views-view--all-hearings.html.twig:57 -msgid "Show all hearings" -msgstr "Vis alle høringer" +#: themes/custom/hoeringsportal/hoeringsportal.breakpoints.yml:0 +msgid "lg" +msgstr "" -#: 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/hoeringsportal.breakpoints.yml:0 +msgid "md" +msgstr "" -#: themes/custom/hoeringsportal/templates/views/views-view--all-meetings.html.twig:57 -msgid "Show all meetings" -msgstr "Vis alle begivenheder" +#: themes/custom/hoeringsportal/templates/content/node--hearing--teaser.html.twig:33 +msgid "replies" +msgstr "" -#: 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/hoeringsportal.breakpoints.yml:0 +msgid "sm" +msgstr "" -#: 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/hoeringsportal.breakpoints.yml:0 +msgid "xl" +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/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 ""